diff --git a/static/style.css b/static/style.css index aab7820..68719f4 100644 --- a/static/style.css +++ b/static/style.css @@ -6,6 +6,11 @@ --accent: var(--green); --faint_foreground: var(--grey0); --code_background: var(--bg_dim); + --highlight_background: var(--bg3); +} + +::selection, ::-moz-selection { + background: var(--highlight_background); } a { @@ -17,6 +22,7 @@ a { a:hover { color: var(--background) !important; background-color: var(--accent) !important; + text-decoration-line: none; } .code-toolbar { @@ -27,6 +33,10 @@ code { background: var(--code_background); } +.post-meta { + color: var(--faint_foreground); +} + .footnotes { color: var(--faint_foreground); }