Change base colors
Also fixes the navbar Create button issue Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
01b2dce74d
commit
98dcbbe5b0
|
@ -5,11 +5,21 @@ $primary-invert: findColorInvert($primary);
|
||||||
$secondary: #FAB12D;
|
$secondary: #FAB12D;
|
||||||
$secondary-invert: findColorInvert($secondary);
|
$secondary-invert: findColorInvert($secondary);
|
||||||
|
|
||||||
|
$success: #78cc8a;
|
||||||
|
$success-invert: findColorInvert($success);
|
||||||
|
$info: #36bcd4;
|
||||||
|
$info-invert: findColorInvert($info);
|
||||||
|
$danger: #ff7061;
|
||||||
|
$danger-invert: findColorInvert($danger);
|
||||||
|
|
||||||
$colors: map-merge(
|
$colors: map-merge(
|
||||||
$colors,
|
$colors,
|
||||||
(
|
(
|
||||||
"primary": ($primary, $primary-invert),
|
"primary": ($primary, $primary-invert),
|
||||||
"secondary": ($secondary, $secondary-invert)
|
"secondary": ($secondary, $secondary-invert),
|
||||||
|
"success": ($success, $success-invert),
|
||||||
|
"info": ($info, $info-invert),
|
||||||
|
"danger": ($danger, $danger-invert),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue