Website/public/assets/scss/utils/_typography.scss
2025-04-08 14:37:17 +07:00

49 lines
778 B
SCSS

// Font URL
$font-url: 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap';
// Font Family
$theme-fonts: (
body: (
font-family: "'Inter', sans-serif",
),
heading: (
font-family: "'Outfit', sans-serif",
),
icon: (
font-family: '"Font Awesome 5 Free"',
)
);
// Font Size
$font-size: (
body: (
font-size: 16px,
),
);
// Line Height
$theme-lh: (
body: (
line-height: 1.5,
),
heading: (
line-height: 1.2,
),
);
// Font Weight
$font-weight: (
fw: (
extra-bold: 800,
bold: 700,
semi-bold: 600,
medium: 500,
regular: 400,
light: 300,
),
);