stack/examples/docs-examples/src/app/global.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);
} */