@tailwind base;
@layer base {
	:root {
		color-scheme: light;
		--theme-bg: #f9f5d7;
		--theme-link: #6c782e;
		--theme-text: #4f3829;
		--theme-accent: #a96b2c;
		--theme-accent-2: #4f3829;
		--theme-quote: #a96b2c;
		--theme-menu-bg: rgb(250 250 250 / 0.85);
	}

	:root.dark {
		color-scheme: dark;
		--theme-bg: #141617;
		--theme-link: #ea6962;
		--theme-text: #ddc7a1;
		--theme-accent: #d8a658;
		--theme-accent-2: #ddc7a1;
		--theme-quote: #d8a658;
		--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;
