mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
71 lines
1.7 KiB
CSS
71 lines
1.7 KiB
CSS
@import "@documenso/ui/styles/theme.css";
|
|
|
|
/* Inter Variable Fonts */
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/inter-variablefont_opsz,wght.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Inter Italic Variable Fonts */
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("/fonts/inter-italic-variablefont_opsz,wght.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Caveat Variable Font */
|
|
@font-face {
|
|
font-family: "Caveat";
|
|
src: url("/fonts/caveat-variablefont_wght.ttf") format("truetype-variations");
|
|
font-weight: 400 600;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Noto Sans";
|
|
src: url("/fonts/noto-sans.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Korean noto sans */
|
|
@font-face {
|
|
font-family: "Noto Sans Korean";
|
|
src: url("/fonts/noto-sans-korean.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Japanese noto sans */
|
|
@font-face {
|
|
font-family: "Noto Sans Japanese";
|
|
src: url("/fonts/noto-sans-japanese.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Chinese noto sans */
|
|
@font-face {
|
|
font-family: "Noto Sans Chinese";
|
|
src: url("/fonts/noto-sans-chinese.ttf") format("truetype-variations");
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--font-sans: "Inter";
|
|
--font-signature: "Caveat";
|
|
--font-noto: "Noto Sans", "Noto Sans Korean", "Noto Sans Japanese", "Noto Sans Chinese";
|
|
}
|
|
}
|