mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-15 14:17:54 +03:00
b0b4c19a70
- refactored inverse colors and names - colors may not be exact, but it's a start
16 lines
440 B
SCSS
16 lines
440 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: $brand-success !default;
|
|
|
|
$state-info-text: $bmd-inverse !default;
|
|
$state-info-bg: $brand-info !default;
|
|
|
|
$state-warning-text: $bmd-inverse !default;
|
|
$state-warning-bg: $brand-warning !default;
|
|
|
|
$state-danger-text: $bmd-inverse !default;
|
|
$state-danger-bg: $brand-danger !default;
|
|
|