19 lines
351 B
SCSS
19 lines
351 B
SCSS
// Typography
|
|
$font-family-sans-serif: "Nunito", sans-serif;
|
|
$font-size-base: 0.9rem;
|
|
$line-height-base: 1.6;
|
|
|
|
// Theme colors
|
|
$background-header: #0b1014;
|
|
$background-main: #162028;
|
|
$text-color: #ecf8ff;
|
|
$accent-color: #a1fab3;
|
|
$active-color: #a0dcff;
|
|
|
|
// Breakpoints
|
|
$sm: 576px;
|
|
$md: 768px;
|
|
$lg: 992px;
|
|
$xl: 1200px;
|
|
$xxl: 1400px;
|