13 lines
214 B
CSS
13 lines
214 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;
|
|
}
|