File: /var/www/zaklada/html/lib/scss/core/_variables.scss
$primary-font: "Poppins";
// GRID RELATED
// Grid breakpoints
// Define the minimum dimensions at which your layout will change,
// adapting to different screen sizes, for use in media queries.
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1280px,
xxl: 1560px,
) !default;
@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
@include _assert-starts-at-zero($grid-breakpoints);
// Grid containers
// Define the maximum width of `.container` for different screen sizes.
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1240px,
xxl: 1600px,
) !default;
@include _assert-ascending($container-max-widths, "$container-max-widths");
// Grid columns
// Set the number of columns and specify the width of the gutters.
$grid-columns: 12 !default;
$grid-gutter-width: 30px !default;
// colors
$color-white: #fff;
$color-black: #000;
$color-text-dark: #040404;
$color-gray-light: #8e8e8e;
$color-gray: #555555;
$color-blue-main: #2b4a92;
$color-blue-secondary: #001F39;
$color-blue-dark: #00172b;
$color-blue-light: #7ebcea;
$color-gold-dark: #aa874f;
$color-gold-light: #cea769;
$color-bg-gray: #eaeaea;
$color-icon: #6B6B6B;
$color-error: #ee352A;