summaryrefslogtreecommitdiff
path: root/public/themes/pink.css
blob: 9f5765063a5dbcbd4184599e2903b41c1f2de898 (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(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%);
}}