53 lines
924 B
SCSS
53 lines
924 B
SCSS
$blue-dianne: #204853;
|
|
$parchment: #fefefe;
|
|
$sirocco: #758385;
|
|
$delta: #b0afaa;
|
|
$cutty-sark: #566c72;
|
|
$silver-rust: #ccc5bc;
|
|
$fiord: #3c5b63;
|
|
$pewter: #959b99;
|
|
$pearl-bush: #ffffff;
|
|
|
|
// Set your brand colors
|
|
$primary: $blue-dianne;
|
|
$secondary: $fiord;
|
|
$accent: $parchment;
|
|
$findata: $sirocco;
|
|
$danger: #f14668;
|
|
$dark: $cutty-sark;
|
|
$light: $pearl-bush;
|
|
$twitter: $pewter;
|
|
$warning: $cutty-sark;
|
|
$info: $sirocco;
|
|
$success: $fiord;
|
|
|
|
// Path to Bulma's sass folder
|
|
@use "bulma/sass" with (
|
|
$family-primary: 'Arial, sans-serif',
|
|
$primary: $primary,
|
|
$info: $info,
|
|
$success: $success,
|
|
$warning: $warning,
|
|
$danger: $danger,
|
|
$body-color: $sitecolor,
|
|
$text: $sitecolor,
|
|
$link: $blue-dianne,
|
|
$link-hover: $fiord
|
|
);
|
|
|
|
a {
|
|
color: inherit !important;
|
|
}
|
|
|
|
a:hover {
|
|
color: $primary !important;
|
|
}
|
|
|
|
strong, label {
|
|
color: $sitecolor !important;
|
|
}
|
|
|
|
.hyperlink:hover {
|
|
cursor: pointer;
|
|
color: $primary !important;
|
|
} |