summaryrefslogtreecommitdiff
path: root/public/themes/tan.css
blob: 6a06c49fb91d99cb96c0b167cee8d53ae46edaed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* light tan */
:root {
	--color-head: hsl(35, 15%, 85%);
	--color-body: hsl(35, 15%, 95%);
	--color-text: hsl(35, 15%, 100%);

	--color-post-head: hsl(35, 15%, 85%);
	--color-post-body: hsl(35, 15%, 98%);

	--color-table-head: hsl(35, 15%, 85%);
	--color-table-foot: hsl(35, 15%, 90%);
	--color-table-body: hsl(35, 15%, 98%);
	--color-table-stripe: hsl(35, 20%, 95%);

	--color-accent: hsl(340, 60%, 40%);
}

/* dark tan */
@media (prefers-color-scheme: dark) {
:root {
	--color-head: hsl(35, 15%, 75%);
	--color-body: hsl(35, 15%, 85%);
	--color-text: hsl(35, 15%, 95%);

	--color-post-head: hsl(35, 15%, 75%);
	--color-post-body: hsl(35, 15%, 90%);

	--color-table-head: hsl(35, 15%, 75%);
	--color-table-foot: hsl(35, 15%, 80%);
	--color-table-body: hsl(35, 15%, 90%);
	--color-table-stripe: hsl(35, 15%, 87%);

	--color-accent: hsl(340, 60%, 35%);
}}