28 lines
644 B
CSS
28 lines
644 B
CSS
/* stylelint-disable-next-line import-notation */
|
|
@import "tailwindcss";
|
|
|
|
@font-face {
|
|
font-family: Inter;
|
|
font-style: normal;
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
src: url("/assets/fonts/inter_variable.woff2") format("woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Inter;
|
|
font-style: italic;
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
src: url("/assets/fonts/inter_variable_italic.woff2") format("woff2");
|
|
}
|
|
|
|
/* stylelint-disable-next-line */
|
|
@theme {
|
|
--font-sans: "Inter", "sans";
|
|
--color-amber-300-muted: #b89a2e;
|
|
--color-amber-700-muted: #80390b;
|
|
--color-gray-800-muted: #141d2d;
|
|
--color-gray-900-muted: #0b111f;
|
|
}
|