hubl/src/styles/variables.scss

25 lines
412 B
SCSS

// colors
$color-white: #fff;
$color-black: #36383b;
$color-grey: #898f95;
$color-grey-light2: #d8d8d8;
$color-grey-light: #f0f3f6;
$color-yellow: #ffb700;
$color-yellow-light: #ffd759;
$color-purple-dark: #41394c;
%shadow {
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}
%frame {
@extend %shadow;
background-color: $color-white;
}
$breakpoints: (
phone: 480px,
tablet: 768px,
desktop: 1024px,
);