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) // Bootstrap Material Design default colors (these can be override by user)
$theme-colors: () !default; $theme-colors: () !default;
$theme-colors: map-merge(( $theme-colors: map-merge((
primary: $teal, "primary": $teal,
success: $green, "secondary": $deep-purple-300,
info: $light-blue, "success": $green,
warning: $deep-orange, "info": $light-blue,
danger: $red, "warning": $deep-orange,
light: $grey-100, "danger": $red,
dark: $grey-800 "light": $grey-100,
"dark": $grey-800
), $theme-colors); ), $theme-colors);
$theme-colors: map-merge(
(
),
$theme-colors
);
// Customized BS variables // Customized BS variables
@import "variables/bootstrap/components"; @import "variables/bootstrap/components";
@import "variables/bootstrap/custom-forms"; @import "variables/bootstrap/custom-forms";