21 lines
363 B
CSS
21 lines
363 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--color-background: #f9fafb;
|
|
/* --color-background: #f3f4f6; */
|
|
}
|
|
|
|
/* @media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--foreground-rgb: 255, 255, 255;
|
|
--background-start-rgb: 0, 0, 0;
|
|
--background-end-rgb: 0, 0, 0;
|
|
}
|
|
} */
|
|
|
|
body {
|
|
background-color: var(--color-background);
|
|
}
|