mdb-ui-kit/scss/variables/bootstrap/_state.scss
Piotr 06e9fcac7d fix: Customizable colors (#1273)
* 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"
2018-01-23 12:29:26 +01:00

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;