Expose additional colors

This commit is contained in:
Jonah Aragon 2021-05-03 14:17:00 -05:00
parent 73c670bdc3
commit f593b889e1
No known key found for this signature in database
GPG key ID: 6A957C9A9A9429F7
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);