34 lines
776 B
SCSS
34 lines
776 B
SCSS
|
|
|
|
// coolors.co pallet
|
|
$coolors-dark: rgba(29, 30, 24, 1);
|
|
$coolors-blue: rgba(67, 127, 151, 1);
|
|
$coolors-green: rgba(121, 167, 54, 1);
|
|
$coolors-red: #ab4c34;
|
|
$coolors-yellow: rgba(240, 162, 2, 1);
|
|
|
|
//$family-sans-serif: "Verdana", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default
|
|
$family-serif: Georgia, "Times New Roman", Times, serif;
|
|
|
|
// Bluma default overrides
|
|
//$green: #79A736;
|
|
//$red: #d4424e;
|
|
//$blue: #9c36a7;
|
|
|
|
$green: $coolors-green;
|
|
$blue: $coolors-blue;
|
|
$red: $coolors-red;
|
|
$yellow: $coolors-yellow;
|
|
$dark: $coolors-dark;
|
|
|
|
$primary: $green;
|
|
$family-primary: $family-serif;
|
|
|
|
$modal-content-width: 750px;
|
|
|
|
|
|
// Make all Bulma variables and functions available
|
|
@import "~bulma/sass/utilities/initial-variables";
|
|
@import "~bulma/sass/utilities/functions";
|
|
|