modifications/simpleamazon/0001-Switch-to-Doom-One-Col...

80 lines
1.6 KiB
Diff

From a2e6c88f4f98323de75bf2dde219b3761dca5b50 Mon Sep 17 00:00:00 2001
From: The Cobra <cobra@vern.cc>
Date: Tue, 25 Oct 2022 03:36:00 +0000
Subject: [PATCH] Switch to Doom One Colourscheme
---
static/style.css | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/static/style.css b/static/style.css
index 72b9718..ca97109 100644
--- a/static/style.css
+++ b/static/style.css
@@ -2,8 +2,8 @@
/*header('Content-type: test/css');*/
body {
- background-color: #bce2e5;
- color: #555;
+ background-color: #282c34;
+ color: #bbc2cf;
max-width: 1200px;
margin: 10px auto;
padding-left: 5px;
@@ -32,7 +32,7 @@ select {
}
a:visited {
- color: #6f42c1;
+ color: #ff6c6b;
text-decoration: none;
}
@@ -41,7 +41,7 @@ a:hover {
}
a {
- color: #3395ff;
+ color: #51afef;
text-decoration: none;
}
@@ -76,27 +76,26 @@ select:focus {
center {
- background-color: #fff;
- box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
+ background-color: #282c34;
padding-bottom: 5px;
}
@media screen and (prefers-color-scheme: dark) {
body {
- background-color: #212529;
- color: #ced4da;
+ background-color: #282c34;
+ color: #bbc2cf;
}
center {
- background-color: #131618;
+ background-color: #282c34;
}
button,
input,
select {
- background-color: #131618;
- border-color: #495057;
- color: #f8f9fa;
+ background-color: #282c34;
+ border-color: #5e6168;
+ color: #51afef;
}
}
--
2.30.2