mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
20 lines
294 B
CSS
20 lines
294 B
CSS
/* @tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
:root {
|
|
--background: white;
|
|
--foreground: black;
|
|
}
|
|
|
|
html:has(head > [data-stack-theme="dark"]) {
|
|
--background: black;
|
|
--foreground: white;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
} */
|