diff options
author | Luke Smith <luke@lukesmith.xyz> | 2021-03-17 12:22:56 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2021-03-17 12:22:56 -0400 |
commit | f1c56c8259265e3519ce51e8c48e1b7bcf713df8 (patch) | |
tree | 208e4b3af6f52e71c61e3ab590da22e85c82200e | |
parent | ff4b698911034885397f2acad48d4a3ce025a25e (diff) | |
download | based.cooking-f1c56c8259265e3519ce51e8c48e1b7bcf713df8.tar based.cooking-f1c56c8259265e3519ce51e8c48e1b7bcf713df8.tar.gz based.cooking-f1c56c8259265e3519ce51e8c48e1b7bcf713df8.tar.lz based.cooking-f1c56c8259265e3519ce51e8c48e1b7bcf713df8.tar.xz based.cooking-f1c56c8259265e3519ce51e8c48e1b7bcf713df8.zip |
eye-burning light style only appears for schizos
who for some reason specifically request it
-rw-r--r-- | data/style.css | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/data/style.css b/data/style.css index 6590ae606..ca4e70b11 100644 --- a/data/style.css +++ b/data/style.css @@ -1,4 +1,6 @@ body { + background: #151515 ; + color: white ; max-width: 800px ; margin: auto ; padding: 0 16px ; @@ -6,10 +8,22 @@ body { font-family: sans-serif ; } +a { + color: lightblue ; +} + +a:visited { + color: gray ; +} + h1 { text-align: center ; } +h2 { + color: tomato ; +} + footer { text-align: center ; } @@ -33,19 +47,22 @@ img[alt="XMR Logo"] { display: inline ; } -@media (prefers-color-scheme: dark) { +@media (prefers-color-scheme: light) { body { - background: #151515 ; - color: white ; + background: white ; + color: black ; } a { - color: lightblue ; + color: blue ; } a:visited { - color: gray ; + color: purple ; } h2 { - color: tomato ; + color: inherit ; + } + code { + color: forestgreen ; } } |