feat(theme): create unified theme system with semantic tokens and migrate core layout
This commit is contained in:
parent
b31e8ddade
commit
fcc1482967
10 changed files with 655 additions and 81 deletions
|
|
@ -1,3 +1,5 @@
|
|||
@import '../styles/themes/index.css';
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue