15 lines
287 B
CSS
15 lines
287 B
CSS
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap");
|
|
@tailwind base;
|
|
|
|
@layer base {
|
|
html {
|
|
@apply text-neutral-800;
|
|
}
|
|
html.dark {
|
|
@apply text-neutral-50;
|
|
@apply bg-neutral-800;
|
|
}
|
|
}
|
|
|
|
@tailwind components;
|
|
@tailwind utilities; |