ghostty/website/app/globals.css
Mitchell Hashimoto 7d0789edfc prettier
2023-10-05 10:52:42 -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);
}