diff --git a/index.html b/index.html index ef34ee4..6e70e6c 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,7 @@ :root { color-scheme: light dark; --bg-color: #eee; + --error-color: red; } @media (prefers-color-scheme: dark) { :root { @@ -17,10 +18,14 @@ } html, body { font-family: monospace; + background-color: var(--bg-color); } #text { width: 100%; } + #error { + color: var(--error-color) + } button { display: block; margin: 0.5em 0 0.5em; @@ -35,5 +40,6 @@