16 lines
226 B
CSS
16 lines
226 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #030712;
|
|
--foreground: #f9fafb;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
font-family:
|
|
system-ui,
|
|
-apple-system,
|
|
sans-serif;
|
|
}
|