friends-best/assets/css/tailwind.css
Louis Hollingworth 2e98cb39f4
Add tailwindcss, add first page
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2022-11-13 20:53:51 +00:00

15 lines
237 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
background-color: wheat;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
:root {
background-color: #1E293B;
color: antiquewhite;
}
}