From 43a7e057b9ca084ea70b28c75f7b94925c217e82 Mon Sep 17 00:00:00 2001 From: lainsce Date: Tue, 5 Sep 2023 15:33:04 -0300 Subject: [PATCH] * - Some needed changes --- Helium/gtk-4.0/_tauos.scss | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/Helium/gtk-4.0/_tauos.scss b/Helium/gtk-4.0/_tauos.scss index 50bb873..9e425a6 100644 --- a/Helium/gtk-4.0/_tauos.scss +++ b/Helium/gtk-4.0/_tauos.scss @@ -890,18 +890,23 @@ $colors: ( } &.info { - background: if($variant == "light", #edf6fe, #0453a4); - color: if($variant == "light", #0453a4, #8ac2fb); + background: $accent_container_bg_color; + color: $accent_container_fg_color; } &.warning { - background: if($variant == "light", #fff6ef, #a24806); - color: if($variant == "light", #a24806, #fbbb8d); + background: $suggested_container_bg_color; + color: $suggested_container_fg_color; + } + + &.success { + background: $success_container_bg_color; + color: $success_container_fg_color; } &.error { - background: if($variant == "light", #f8d8e2, #90183d); - color: if($variant == "light", #90183d, #ea80a0); + background: $error_container_bg_color; + color: $error_container_fg_color; } }