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 69ae9b2bef9e8c2cb07e08ee71265639e12b8fff
parent db70f78879108b15c32b81c34da7de4ada3ea7ab
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Mon, 20 Sep 2021 13:03:33 +0200

Brighter colours for highlights in dark mode

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

diff --git a/assets/style.css b/assets/style.css @@ -3,7 +3,9 @@ --fg: #f8f8f2; --bg1: #1d1e26; --bg2: #000000CC; - --hl: #fffc81; + --hl1: #fffc81; + --hl2: #6f6fed; + --hl3: #6b4d83; } /* Bright Mode */ @@ -12,7 +14,9 @@ --fg: #1d1e26; --bg1: #f8f8f2; --bg2: #00000033; - --hl: #ff80bf; + --hl1: #ff80bf; + --hl2: #0000ee; + --hl3: #551a8b; } } @@ -39,6 +43,14 @@ a:target { background-color: var(--bg2); } +a { + color: var(--hl2); +} + +a:visited { + color: var(--hl3); +} + a.d, a.h, a.i, @@ -47,13 +59,13 @@ a.line { } #blob a { - color: var(--hl); + color: var(--hl1); border-right: 3px solid #aaa; padding: 0 5px 0 0; } #blob a:hover { - color: var(--hl); + color: var(--hl1); text-decoration: none; } @@ -90,12 +102,12 @@ td.num { } .desc { - color: var(--hl); + color: var(--hl1); } hr { border: 0; - border-top: 3px solid var(--hl); + border-top: 3px solid var(--hl1); height: 3px; } @@ -108,19 +120,19 @@ pre { } pre a.h { - color: var(--hl); + color: var(--hl1); } .A, span.i, pre a.i { - color: var(--hl); + color: var(--hl1); } .D, span.d, pre a.d { - color: var(--hl); + color: var(--hl1); } pre a.h:hover,