Skip to content

Commit

Permalink
these weren'
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce authored Jan 27, 2023
1 parent c5d52f4 commit 4eb00e7
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions lib/Models/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -174,21 +174,21 @@ public class He.Application : Gtk.Application {
@define-color popover_fg_color mix($card_foreground_hex, $accent_color_hex, 0.03);
@define-color card_fg_color mix($card_foreground_hex, $accent_color_hex, 0.03);
@define-color destructive_bg_color mix(#db2860, $accent_color_hex, 0.03);
@define-color destructive_fg_color mix(#db2860, $accent_color_hex, 0.03);
@define-color destructive_color mix(#db2860, $accent_color_foreground_hex, 0.03);
@define-color destructive_bg_color mix(#db2860, $accent_color_hex, 0.5);
@define-color destructive_fg_color mix(#db2860, $accent_color_hex, 0.5);
@define-color destructive_color mix(#db2860, $accent_color_foreground_hex, 0.5);
@define-color suggested_bg_color mix(#268ef9, $accent_color_hex, 0.03);
@define-color suggested_fg_color mix(#268ef9, $accent_color_hex, 0.03);
@define-color suggested_color mix(#268ef9, $accent_color_foreground_hex, 0.03);
@define-color suggested_bg_color mix(#268ef9, $accent_color_hex, 0.5);
@define-color suggested_fg_color mix(#268ef9, $accent_color_hex, 0.5);
@define-color suggested_color mix(#268ef9, $accent_color_foreground_hex, 0.5);
@define-color error_bg_color mix(#db2860, $accent_color_hex, 0.03);
@define-color error_fg_color mix(#db2860, $accent_color_hex, 0.03);
@define-color error_color mix(#db2860, $accent_color_foreground_hex, 0.03);
@define-color error_bg_color mix(#db2860, $accent_color_hex, 0.5);
@define-color error_fg_color mix(#db2860, $accent_color_hex, 0.5);
@define-color error_color mix(#db2860, $accent_color_foreground_hex, 0.5);
@define-color success_bg_color mix(#49d05e, $accent_color_hex, 0.03);
@define-color success_fg_color mix(#49d05e, $accent_color_hex, 0.03);
@define-color success_color mix(#49d05e, $accent_color_foreground_hex, 0.03);
@define-color success_bg_color mix(#49d05e, $accent_color_hex, 0.5);
@define-color success_fg_color mix(#49d05e, $accent_color_hex, 0.5);
@define-color success_color mix(#49d05e, $accent_color_foreground_hex, 0.5);
@define-color borders alpha(mix($card_foreground_hex, $accent_color_hex, 0.05), 0.2);
";
Expand Down

0 comments on commit 4eb00e7

Please sign in to comment.