Change base colors

Also fixes the navbar Create button issue

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2019-10-10 13:36:11 +02:00
parent 01b2dce74d
commit 98dcbbe5b0
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 11 additions and 1 deletions

View File

@ -5,11 +5,21 @@ $primary-invert: findColorInvert($primary);
$secondary: #FAB12D;
$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,
(
"primary": ($primary, $primary-invert),
"secondary": ($secondary, $secondary-invert)
"secondary": ($secondary, $secondary-invert),
"success": ($success, $success-invert),
"info": ($info, $info-invert),
"danger": ($danger, $danger-invert),
)
);