27 lines
494 B
CSS
27 lines
494 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #f9f6f0;
|
|
--foreground: #1c1917;
|
|
--card: #ffffff;
|
|
--card-border: #e7e5e4;
|
|
--muted: #57534e;
|
|
--accent: #b45309;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
}
|
|
|
|
body {
|
|
background: #f9f6f0;
|
|
color: #1c1917;
|
|
font-family: var(--font-geist-sans), system-ui, sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
} |