39 lines
840 B
CSS
39 lines
840 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #F5F4F0;
|
|
--foreground: #1C1917;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-feie-white: #FFFFFF;
|
|
--color-feie-cream: #F5F4F0;
|
|
--color-feie-dark: #1C1917;
|
|
--color-feie-gold: #C5A059;
|
|
--font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
--font-serif: "Playfair Display", "Noto Serif SC", serif;
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: var(--font-sans);
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.antialiased {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.selection\:bg-feie-gold *::selection {
|
|
background-color: var(--color-feie-gold);
|
|
color: white;
|
|
}
|
|
|