src/styles/global.css 763 B raw
1
@tailwind base;
2
@layer base {
3
	:root {
4
		color-scheme: light;
5
		--theme-bg: #eff1f5;
6
		--theme-link: #df8e1d;
7
		--theme-text: #4c4f69;
8
		--theme-accent: #7287fd;
9
		--theme-accent-2: #7287fd;
10
		--theme-quote: #7287fd;
11
		--theme-menu-bg: rgb(250 250 250 / 0.85);
12
	}
13
14
	:root.dark {
15
		color-scheme: dark;
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
		--theme-menu-bg: rgb(46, 52, 64 / 0.85);
23
	}
24
25
	html {
26
		@apply h-full scroll-smooth border-t-2 border-textColor;
27
	}
28
29
	html body {
30
		@apply mx-auto flex h-full max-w-3xl flex-col bg-bgColor px-8 pt-16 font-mono text-sm font-normal text-textColor antialiased;
31
	}
32
}
33
@tailwind components;
34
@tailwind utilities;