privacyguides.org/_sass/variables.scss

53 lines
1.2 KiB
SCSS
Raw Normal View History

2020-12-04 08:35:10 +00:00
/* Variables */
2021-01-16 05:13:01 +00:00
$navbar-light-color: rgba($black, .7);
$dropdown-link-color: $navbar-light-color;
$navbar-light-active-color: $dark;
$dropdown-link-hover-color: $navbar-light-active-color;
2020-12-04 08:35:10 +00:00
2021-05-03 19:17:00 +00:00
/* Extra Colors */
2021-05-04 02:13:50 +00:00
$theme-colors: (
"primary": $primary,
"secondary": $secondary,
"success": $success,
"info": $info,
"warning": $warning,
"danger": $danger,
"light": $light,
2021-09-11 22:54:27 +00:00
"dark": $dark
);
$colors: (
2021-05-04 02:13:50 +00:00
"gray": $gray-600,
"blue": $blue,
"indigo": $indigo,
"purple": $purple,
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"teal": $teal,
"cyan": $cyan,
"tor": $tor
2021-05-03 19:17:00 +00:00
);
2020-12-04 08:35:10 +00:00
/* Cards */
$card-shadow: 0 3px 10px 0 rgba(150, 150, 150, .2);
$card-success-border: rgba(40, 167, 69, .5);
$card-primary-border: rgba(0, 123, 255, .5);
$card-warning-border: rgba(255, 193, 7, .5);
/* Blockquote */
$blockquote-border: #eee;
/* Share button */
$share-btn: #fff;
$share-btn-shadow: 0 2px 0 0 rgba(0, 0, 0, .2);
$share-btn-hover: #eee;
$share-btn-active: #e2e2e2;
2021-01-16 05:13:01 +00:00
/* SVG Colors */
$svg-primary: $primary !default;
$svg-dark: $body-color;
$svg-light: $light !default;