diff options
Diffstat (limited to 'public/themes/steel.css')
-rw-r--r-- | public/themes/steel.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/public/themes/steel.css b/public/themes/steel.css new file mode 100644 index 0000000..d491583 --- /dev/null +++ b/public/themes/steel.css @@ -0,0 +1,35 @@ +/* light tan */ +:root { + --color-head: hsl(220, 15%, 85%); + --color-body: hsl(220, 15%, 95%); + --color-text: hsl(220, 15%, 100%); + + --color-post-head: hsl(220, 15%, 85%); + --color-post-body: hsl(220, 15%, 98%); + + --color-table-head: hsl(220, 15%, 85%); + --color-table-foot: hsl(220, 15%, 90%); + --color-table-body: hsl(220, 15%, 98%); + --color-table-stripe: hsl(220, 20%, 95%); + + --color-accent: hsl(340, 60%, 40%); +} + +/* dark tan */ +@media (prefers-color-scheme: dark) { +:root { + --color-head: hsl(220, 15%, 75%); + --color-body: hsl(220, 15%, 85%); + --color-text: hsl(220, 15%, 95%); + + --color-post-head: hsl(220, 15%, 75%); + --color-post-body: hsl(220, 15%, 90%); + + --color-table-head: hsl(220, 15%, 75%); + --color-table-foot: hsl(220, 15%, 80%); + --color-table-body: hsl(220, 15%, 90%); + --color-table-stripe: hsl(220, 15%, 87%); + + --color-accent: hsl(340, 60%, 35%); +}} + |