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 db70f78879108b15c32b81c34da7de4ada3ea7ab
parent ec87b1a1183de98be5b91c9b3cf68bb130a1c64d
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sun, 19 Sep 2021 22:12:07 +0200

CSS TWeaks for bright version

Diffstat:
Massets/style.css | 26+++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/assets/style.css b/assets/style.css @@ -1,25 +1,25 @@ /* Dark Mode: Default */ :root { - --fg1: #f8f8f2; + --fg: #f8f8f2; --bg1: #1d1e26; --bg2: #000000CC; - --hl1: #ff80bf; - --hl2: #fffc81; + --hl: #fffc81; } /* Bright Mode */ @media (prefers-color-scheme: light) { :root { - --fg1: #1d1e26; + --fg: #1d1e26; --bg1: #f8f8f2; - --bg2: #000000CC; + --bg2: #00000033; + --hl: #ff80bf; } } body { font-family: monospace; font-size: 1.25em; - color: var(--fg1); + color: var(--fg); background-color: var(--bg1); } img { @@ -47,13 +47,13 @@ a.line { } #blob a { - color: var(--hl1); + color: var(--hl); border-right: 3px solid #aaa; padding: 0 5px 0 0; } #blob a:hover { - color: var(--hl1); + color: var(--hl); text-decoration: none; } @@ -90,12 +90,12 @@ td.num { } .desc { - color: var(--hl2); + color: var(--hl); } hr { border: 0; - border-top: 3px solid var(--hl1); + border-top: 3px solid var(--hl); height: 3px; } @@ -108,19 +108,19 @@ pre { } pre a.h { - color: var(--hl1); + color: var(--hl); } .A, span.i, pre a.i { - color: var(--hl2); + color: var(--hl); } .D, span.d, pre a.d { - color: var(--hl2); + color: var(--hl); } pre a.h:hover,