Spaces:
Sleeping
Sleeping
File size: 331 Bytes
c02c6ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--cream: #FAF7F0;
--ink: #1C1B1A;
--muted: #6B6560;
--border: #E8E4DC;
}
body {
font-family: 'Nunito', sans-serif;
background-color: var(--cream);
color: var(--ink);
-webkit-font-smoothing: antialiased;
}
}
|