diff options
Diffstat (limited to 'vnext/src/index.css')
-rw-r--r-- | vnext/src/index.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vnext/src/index.css b/vnext/src/index.css index 2f5d0b5e..2fb4c087 100644 --- a/vnext/src/index.css +++ b/vnext/src/index.css @@ -1,6 +1,7 @@ @custom-media --viewport-desktop (width >=62.5rem); :root { --main-width: 1000px; + color-scheme: light dark; } * { @@ -356,3 +357,13 @@ hr { border-right: 2px solid #ff339a; } } + +@media (prefers-color-scheme: dark) { + body { + background: #363636; + color: #fff; + } + a { + color: #ff9966; + } +} |