Skip to content

Commit

Permalink
* - Some needed changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Sep 5, 2023
1 parent 20395d6 commit 43a7e05
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions Helium/gtk-4.0/_tauos.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 43a7e05

Please sign in to comment.