1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-23 03:41:03 +00:00

Expose additional colors

This commit is contained in:
2021-05-03 14:17:00 -05:00
parent 73c670bdc3
commit f593b889e1
4 changed files with 22 additions and 4 deletions

View File

@@ -42,6 +42,24 @@ $dropdown-link-color: $navbar-light-color;
$navbar-light-active-color: $dark;
$dropdown-link-hover-color: $navbar-light-active-color;
/* Extra Colors */
$theme-colors: ();
$theme-colors: map-merge(
(
"gray": $gray-600,
"blue": $blue,
"indigo": $indigo,
"purple": $purple,
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"teal": $teal,
"cyan": $cyan
),
$theme-colors
);
/* Cards */
$card-shadow: 0 3px 10px 0 rgba(150, 150, 150, .2);
$card-success-border: rgba(40, 167, 69, .5);