mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 12:17:59 +03:00
16 lines
476 B
SCSS
16 lines
476 B
SCSS
// Form states and alerts
|
|
//
|
|
// Define colors for form feedback states and, by default, alerts.
|
|
$state-success-text: $mdb-text-color-light !default;
|
|
$state-success-bg: $brand-success !default;
|
|
|
|
$state-info-text: $mdb-text-color-light !default;
|
|
$state-info-bg: $brand-info !default;
|
|
|
|
$state-warning-text: $mdb-text-color-light !default;
|
|
$state-warning-bg: $brand-warning !default;
|
|
|
|
$state-danger-text: $mdb-text-color-light !default;
|
|
$state-danger-bg: $brand-danger !default;
|
|
|