@tailwind base;
@layer base {
	:root {
		color-scheme: light;
		--theme-bg: #fffaf3;
		--theme-link: #286983;
		--theme-text: #575279;
		--theme-accent: #286983;
		--theme-accent-2: #575279;
		--theme-quote: #286983;
		--theme-menu-bg: rgb(250 250 250 / 0.85);
	}

	:root.dark {
		color-scheme: dark;
		--theme-bg: #191724;
		--theme-link: #31748f;
		--theme-text: #e0def4;
		--theme-accent: #c4a7e7;
		--theme-accent-2: #e0def4;
		--theme-quote: #c4a7e7;
		--theme-menu-bg: rgb(40, 40, 40 / 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;
