Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/colorchestra/smol.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcolorchestra <morph@posteo.de>2021-05-09 14:38:31 +0300
committercolorchestra <morph@posteo.de>2021-05-09 14:38:31 +0300
commit75e1eb42497f4bcced3090fbbd73944f04e7bc4e (patch)
tree907746e0f024a8bbc4ea35b9c8ada5b5ed413f2d
parent958d9aee89bb73a295c9cc6d2467d82925cd5e50 (diff)
improve dark mode colors
-rw-r--r--static/css/style.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css
index d239bd5..2eb4492 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -1,5 +1,5 @@
html {overflow-y: scroll}
-body{max-width:800px;margin:40px auto;padding:0 10px;font:14px/1.5 monospace;color:#444}h1,h2,h3{line-height:1.2}@media (prefers-color-scheme: dark){body{color:white;background:#444}a:link{color:#5bf}a:visited{color:#ccf}}
+body{max-width:800px;margin:40px auto;padding:0 10px;font:14px/1.5 monospace;color:#444}h1,h2,h3{line-height:1.2}@media (prefers-color-scheme: dark){body{color:white;background:#000000}a:link{color:#5bf}a:visited{color:#e94560}}
p > code{color: #FFFFFF; background:#000000; padding:2px}
pre{color: #FFFFFF; background:#000000; padding:24px; overflow-x: auto}
article{padding:24px 0}