ghostty/website/app/globals.css
Mitchell Hashimoto 64969fbd5a website: noop homepage
2023-10-05 10:40:00 -07:00

21 lines
347 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 255, 255, 255;
--background-rgb: #0E1324;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-rgb: #0E1324;
}
}
body {
color: rgb(var(--foreground-rgb));
background-color: var(--background-rgb);
}