mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-07-25 15:39:59 +03:00
add secondary color option in theme-colors too
This commit is contained in:
parent
0e7d8495b0
commit
bd4b221775
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue
Block a user