22 lines
422 B
CSS
22 lines
422 B
CSS
@import "@fontsource-variable/geist";
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--radius: 0.625rem;
|
|
--background: #f6f8f7;
|
|
--foreground: #122117;
|
|
--primary: #0a7a5a;
|
|
--primary-foreground: #ffffff;
|
|
--border: #d7e2db;
|
|
font-family: "Geist Variable", "Noto Sans SC", sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
}
|