From b22ba42063e4571c1cf07d2707388863598f229e Mon Sep 17 00:00:00 2001 From: Taico Aerts Date: Tue, 25 Jul 2023 12:08:50 +0200 Subject: [PATCH] Add danger, warning, success and info colors --- src/common/_config.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/common/_config.scss b/src/common/_config.scss index 4c2813d..9c10e85 100644 --- a/src/common/_config.scss +++ b/src/common/_config.scss @@ -73,6 +73,13 @@ $secondary-colors: ( "yellow": #FDD835, "green": #2ECC71 ) !default; + +$danger-color: map-get($secondary-colors, "red"); +$warning-color: map-get($secondary-colors, "yellow"); +$success-color: map-get($secondary-colors, "green"); +$info-color: map-get($secondary-colors, "teal"); + + $tertiary-color: #78909C !default; $link-color: #2980B9 !default;