From 9821c1011758911f9cbe6edf9a927d4c05eca123 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 12 Jul 2020 20:49:30 -0400 Subject: Add explicit mark colors --- default.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/default.css b/default.css index 5902ae5..658ff22 100644 --- a/default.css +++ b/default.css @@ -4,6 +4,7 @@ --light: #eee; --dark: #777; --accent: #c29; + --mark: #fe3; } @media (prefers-color-scheme: dark) { @@ -11,6 +12,7 @@ --background: #111; --foreground: #bbb; --light: #222; + --mark: #430; } } @@ -28,6 +30,10 @@ a, a:visited { a:hover { text-decoration: underline; } +mark { + background-color: var(--mark); + color: inherit; +} body { max-width: 130ch; -- cgit 1.4.1