feat(theme): create unified theme system with semantic tokens and migrate core layout

This commit is contained in:
zenchantlive 2026-02-26 15:49:44 -08:00
parent b31e8ddade
commit fcc1482967
10 changed files with 655 additions and 81 deletions

View file

@ -1,3 +1,5 @@
@import '../styles/themes/index.css';
@tailwind base;
@tailwind components;
@tailwind utilities;

View file

@ -15,7 +15,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<html lang="en" data-theme="aurora">
<body className={notoSans.variable}>{children}</body>
</html>
);