updated colors ed350263
Steve · 2023-12-15 08:20 2 file(s) · +10 −10
public/social-card.png +0 −0

Binary file — no preview.

src/styles/global.css +10 −10
3 3
	:root {
4 4
		color-scheme: light;
5 5
		--theme-bg: #121212;
6 -
		--theme-link: #31748f;
7 -
		--theme-text: #d0dfee;
8 -
		--theme-accent: #5f81a5;
9 -
		--theme-accent-2: #d0dfee;
10 -
		--theme-quote: #5f81a5;
6 +
		--theme-link: #E78A52;
7 +
		--theme-text: #C1C1C1;
8 +
		--theme-accent: #FBCB96;
9 +
		--theme-accent-2: #C1C1C1;
10 +
		--theme-quote: #FBCB96;
11 11
		--theme-menu-bg: rgb(250 250 250 / 0.85);
12 12
	}
13 13
14 14
	:root.dark {
15 15
		color-scheme: dark;
16 16
		--theme-bg: #121212;
17 -
		--theme-link: #31748f;
18 -
		--theme-text: #d0dfee;
19 -
		--theme-accent: #5f81a5;
20 -
		--theme-accent-2: #d0dfee;
21 -
		--theme-quote: #5f81a5;
17 +
		--theme-link: #E78A52;
18 +
		--theme-text: #C1C1C1;
19 +
		--theme-accent: #FBCB96;
20 +
		--theme-accent-2: #C1C1C1;
21 +
		--theme-quote: #FBCB96;
22 22
		--theme-menu-bg: rgb(40, 40, 40 / 0.85);
23 23
	}
24 24