mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-07-26 07:59:47 +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)
|
// 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";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user