add secondary color option in theme-colors too

This commit is contained in:
Rahil 2020-06-19 21:39:24 +05:30 committed by GitHub
parent 0e7d8495b0
commit bd4b221775
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,15 +22,24 @@ $bmd-label-color-inner-focus: $gray !default; // e.g. radio label or text-muted
// Bootstrap Material Design default colors (these can be override by user)
$theme-colors: () !default;
$theme-colors: map-merge((
primary: $teal,
success: $green,
info: $light-blue,
warning: $deep-orange,
danger: $red,
light: $grey-100,
dark: $grey-800
"primary": $teal,
"secondary": $deep-purple-300,
"success": $green,
"info": $light-blue,
"warning": $deep-orange,
"danger": $red,
"light": $grey-100,
"dark": $grey-800
), $theme-colors);
$theme-colors: map-merge(
(
),
$theme-colors
);
// Customized BS variables
@import "variables/bootstrap/components";
@import "variables/bootstrap/custom-forms";