Skip to content

Commit

Permalink
Another theme color fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedilger committed Sep 23, 2023
1 parent daa1da2 commit 755c8bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/theme/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ impl ThemeDef for DefaultTheme {
weak_bg_fill: Color32::from_gray(55),
bg_fill: Color32::from_gray(55),
bg_stroke: Stroke::new(0.0, Self::accent_color(dark_mode)),
fg_stroke: Stroke::new(2.0, Color32::from_black_alpha(64)),
fg_stroke: Stroke::new(2.0, Color32::from_gray(220)),
rounding: Rounding::same(2.0),
expansion: 2.0,
},
Expand Down Expand Up @@ -220,7 +220,7 @@ impl ThemeDef for DefaultTheme {
weak_bg_fill: Color32::from_gray(165),
bg_fill: Color32::from_black_alpha(50),
bg_stroke: Stroke::new(0.0, Self::accent_color(dark_mode)),
fg_stroke: Stroke::new(2.0, Color32::from_white_alpha(200)),
fg_stroke: Stroke::new(2.0, Color32::from_gray(30)),
rounding: Rounding::same(2.0),
expansion: 2.0,
},
Expand Down

0 comments on commit 755c8bb

Please sign in to comment.