diff options
-rw-r--r-- | basic.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/basic.css b/basic.css new file mode 100644 index 0000000..087cea4 --- /dev/null +++ b/basic.css @@ -0,0 +1,23 @@ +body { + background-color: #fff8e7; /* cosmic latte */ + color: black; + max-width: 75ch; + padding: 2ch; + margin: auto; + line-height: 1.5; +} + +@media(prefers-color-scheme: dark) { + body { + background-color: #1d2021; + color: #fff8e7; + line-height: 1.6; + word-spacing: 0.2em; + } + a { + color: #cedeff; + } + a:visited { + color: #d4bff8; + } +} |