tilvids.github.io/_sass/_variables.scss
TILvids d5a7c4d1f3
Update _variables.scss
Added blue colors
2021-07-12 15:30:07 -04:00

29 lines
441 B
SCSS

//
// VARIABLES
//
// Colors
$blue: #4183C4;
$lightBlue: #0066FF;
$darkBlue: #0099FF;
// Grays
$black: #000;
$darkerGray: #222;
$darkGray: #333;
$gray: #666;
$lightGray: #eee;
$white: #fff;
// Font stacks
$helvetica: Helvetica, Arial, sans-serif;
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
$georgia: Georgia, serif;
// Mobile breakpoints
@mixin mobile {
@media screen and (max-width: 640px) {
@content;
}
}