@tailwind base;
@layer base {
	:root {
		color-scheme: light;
		--theme-bg: #eff1f5;
		--theme-link: #8839ef;
		--theme-text: #4c4f69;
		--theme-accent: #04a5e5;
		--theme-accent-2: #4c4f69;
		--theme-quote: #04a5e5;
		--theme-menu-bg: rgb(250 250 250 / 0.85);
	}

	:root.dark {
		color-scheme: dark;
		--theme-bg: #181825;
		--theme-link: #cba6f7;
		--theme-text: #cdd6f4;
		--theme-accent: #89b4fa;
		--theme-accent-2: #cdd6f4;
		--theme-quote: #89b4fa;
		--theme-menu-bg: rgb(46, 52, 64 / 0.85);
	}

	html {
		@apply h-full scroll-smooth border-t-2 border-textColor;
	}

	html body {
		@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;
	}
}
@tailwind components;
@tailwind utilities;
