13 lines
203 B
CSS
13 lines
203 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #fafafa;
|
|
--foreground: #111111;
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: "Geist", "Segoe UI", sans-serif;
|
|
}
|