mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-23 01:57:06 +03:00
06e9fcac7d
* button colors loop * removed brand colors * removed removed brand colors file * restore bmd default colors * fix * fix missing brands overrides * replaced "map-get($theme-colors, /name/)" with function "theme-color"
15 lines
463 B
SCSS
15 lines
463 B
SCSS
// Form states and alerts
|
|
//
|
|
// Define colors for form feedback states and, by default, alerts.
|
|
$state-success-text: $bmd-inverse !default;
|
|
$state-success-bg: theme-color(success) !default;
|
|
|
|
$state-info-text: $bmd-inverse !default;
|
|
$state-info-bg: theme-color(info) !default;
|
|
|
|
$state-warning-text: $bmd-inverse !default;
|
|
$state-warning-bg: theme-color(warning) !default;
|
|
|
|
$state-danger-text: $bmd-inverse !default;
|
|
$state-danger-bg: theme-color(danger) !default;
|