diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-17 20:13:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-10-21 19:41:47 +0200 |
commit | 77b20af11c6492616ece6cc7100b9d1f10722c3b (patch) | |
tree | e112a8e892f7df60240d145bdc93396cfb686793 /public/themes/pink.css | |
parent | e036cc9eee1a28d9bef6d2615c22d1d9d1b86829 (diff) | |
download | server-77b20af11c6492616ece6cc7100b9d1f10722c3b.tar.gz |
Add color themes.
Diffstat (limited to 'public/themes/pink.css')
-rw-r--r-- | public/themes/pink.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/public/themes/pink.css b/public/themes/pink.css new file mode 100644 index 0000000..9f57650 --- /dev/null +++ b/public/themes/pink.css @@ -0,0 +1,35 @@ +/* light tan */ +:root { + --color-head: hsl(5, 35%, 85%); + --color-body: hsl(5, 35%, 95%); + --color-text: hsl(5, 35%, 100%); + + --color-post-head: hsl(5, 35%, 85%); + --color-post-body: hsl(5, 35%, 98%); + + --color-table-head: hsl(5, 35%, 85%); + --color-table-foot: hsl(5, 35%, 90%); + --color-table-body: hsl(5, 35%, 98%); + --color-table-stripe: hsl(5, 20%, 95%); + + --color-accent: hsl(340, 60%, 40%); +} + +/* dark tan */ +@media (prefers-color-scheme: dark) { +:root { + --color-head: hsl(5, 35%, 75%); + --color-body: hsl(5, 35%, 85%); + --color-text: hsl(5, 35%, 95%); + + --color-post-head: hsl(5, 35%, 75%); + --color-post-body: hsl(5, 35%, 90%); + + --color-table-head: hsl(5, 35%, 75%); + --color-table-foot: hsl(5, 35%, 80%); + --color-table-body: hsl(5, 35%, 90%); + --color-table-stripe: hsl(5, 35%, 87%); + + --color-accent: hsl(340, 60%, 35%); +}} + |