17 lines
427 B
CSS
17 lines
427 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
|
@import "tailwindcss" source(".");
|
|
|
|
@theme {
|
|
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
--font-roboto: "Roboto", sans-serif
|
|
}
|
|
|
|
html,
|
|
body {
|
|
@apply bg-white dark:bg-gray-950;
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
color-scheme: dark;
|
|
}
|
|
}
|