Add dark theme It's kind of scuffed - I'm not sure about the link colors at present. Need to do more research and check the contrast.
1 files changed, 15 insertions(+), 0 deletions(-) M sass/style.scss
M sass/style.scss => sass/style.scss +15 -0
@@ 12,6 12,21 @@ font-style: italic; } +@media (prefers-color-scheme: dark) { + :root { + background-color: black; + color: white; + } + + a { + color: skyblue; + + &:visited { + color: slateblue; + } + } +} + :root { font: 13px "JetBrains Mono", monospace; }