pub / stagit-scripts

Building src.jayvii.de with stagit
git clone https://src.jayvii.de/pub/stagit-scripts.git
Home | Log | Files | Exports | Refs | README | RSS

commit b75de5b3f68fc45b33eeafd621375f3a51d3a1b3
parent 5fadc2e01e52f8183fc4f379473334316e740239
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat, 27 Apr 2024 14:36:35 +0200

Tweak css theme

Diffstat:
Massets/style.css | 21+++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/assets/style.css b/assets/style.css @@ -1,22 +1,19 @@ /* Dark Mode: Default */ :root { - --fg: #f8f8f2; - --bg1: #1d1e26; - --bg2: #000000CC; - --hl1: #fffc81; - --hl2: #6f6fed; - --hl3: #6b4d83; + --fg: #dadadb; + --bg1: #1d1e20; + --bg2: #2e2e33; + --hl1: #6c71c4; + --hl2: #4fb4d7; + --hl3: #eb3c54; } /* Bright Mode */ @media (prefers-color-scheme: light) { :root { - --fg: #1d1e26; - --bg1: #f8f8f2; - --bg2: #00000033; - --hl1: #ff80bf; - --hl2: #0000ee; - --hl3: #551a8b; + --fg: #1e1e1e; + --bg1: #ffffff; + --bg2: #1e1e1e; } }