diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-09-04 17:57:19 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-09-04 17:57:19 -0500 |
commit | 03f31bb882b238d229d7be07ce5650f9cbe70b6a (patch) | |
tree | b9586600b318bcf723392660c01345a55e47cd17 | |
parent | bec26ec34a8f7f46f371e348378004699869b12e (diff) | |
download | cleberg.net-03f31bb882b238d229d7be07ce5650f9cbe70b6a.tar.gz cleberg.net-03f31bb882b238d229d7be07ce5650f9cbe70b6a.tar.bz2 cleberg.net-03f31bb882b238d229d7be07ce5650f9cbe70b6a.zip |
update color scheme
-rw-r--r-- | theme/static/styles.css | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css index 0758a1f..1cb4fc6 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -3,12 +3,12 @@ html{line-height:1.15;-webkit-text-size-adjust:100%}main{display:block}h1{font-s /* CUSTOM CSS */ :root { - --bg: #fff; - --bg-bright: #eee; - --fg: #111; - --link: #00f; - --code: #f00; - --border: #ccc; + --bg: #EDEDE7; + --bg-bright: #E8D3BE; + --fg: #201E1D; + --link: #810208; + --code: #810208; + --border: #E8D3BE; } @media (prefers-reduced-motion: no-preference) { @@ -30,7 +30,7 @@ body { @media only screen and (min-width: 768px) { body { - font-size: 1.1rem; + font-size: 1.2rem; } } @@ -307,12 +307,12 @@ span.tag::before { @media (prefers-color-scheme: dark) { :root { - --bg: #121212; - --bg-bright: #1e1e1e; - --fg: #e0e0e0; - --link: #8ab4f8; - --code: #f28b82; - --border: #333; + --bg: #201E1D; + --bg-bright: #2F2F2D; + --fg: #EDEDE7; + --link: #D9C2A6; + --code: #D9C2A6; + --border: #2F2F2D; } } |