Skip to content

Commit

Permalink
skeleton: Fix the bug where the theme color of the skeleton does not …
Browse files Browse the repository at this point in the history
…display in light mode (#407)
  • Loading branch information
ihavecoke authored Nov 11, 2024
1 parent 5149b8a commit f96c217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ui/src/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl ThemeColor {
secondary_foreground: hsl(240.0, 59.0, 10.),
secondary_hover: hsl(240.0, 5.9, 98.),
selection: hsl(211.0, 97.0, 85.0),
skeleton: hsla(223.0, 5.9, 10.0, 0.1),
skeleton: hsl(223.0, 5.9, 10.0).opacity(0.1),
slider_bar: hsl(223.0, 5.9, 10.0),
slider_thumb: hsl(0.0, 0.0, 100.0),
tab: gpui::transparent_black(),
Expand Down

0 comments on commit f96c217

Please sign in to comment.