37 lines
728 B
CSS
37 lines
728 B
CSS
@import 'tailwindcss';
|
|
|
|
:root {
|
|
--background: #eeebeb;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans);
|
|
--font-mono: var(--font-geist-mono);
|
|
--color-orange: #ff613a;
|
|
--font-display: 'Inter', 'sans-serif';
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Inter;
|
|
font-style: normal;
|
|
font-weight: 200 700;
|
|
font-display: swap;
|
|
src: url('/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('ttf');
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--background: #eeebeb;
|
|
--foreground: #171717;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: Inter, sans-serif;
|
|
}
|