testing out Catppuccin theme 32e3a391
Steve · 2023-04-23 10:42 1 file(s) · +12 −12
src/styles/global.css +12 −12
2 2
@layer base {
3 3
	:root {
4 4
		color-scheme: light;
5 -
		--theme-bg: #e5e9f0;
6 -
		--theme-link: #81a1c1;
7 -
		--theme-text: #2e3440;
8 -
		--theme-accent: #88C0D0;
9 -
		--theme-accent-2: #5e81ac;
10 -
		--theme-quote: #5e81ac;
5 +
		--theme-bg: #eff1f5;
6 +
		--theme-link: #e64553;
7 +
		--theme-text: #4c4f69;
8 +
		--theme-accent: #40a02b;
9 +
		--theme-accent-2: #179299;
10 +
		--theme-quote: #40a02b;
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 -
		--theme-bg: #2e3440;
17 -
		--theme-link: #bf616a;
18 -
		--theme-text: #edeff3;
19 -
		--theme-accent: #a3be8c;
20 -
		--theme-accent-2: #8fbcbb;
21 -
		--theme-quote: #a3be8c;
16 +
		--theme-bg: #1e1e2e;
17 +
		--theme-link: #f38ba8;
18 +
		--theme-text: #cdd6f4;
19 +
		--theme-accent: #a6e3a1;
20 +
		--theme-accent-2: #74c7ec;
21 +
		--theme-quote: #a6e3a1;
22 22
		--theme-menu-bg: rgb(46, 52, 64 / 0.85);
23 23
	}
24 24