skeleton: Fix the bug where the theme color of the skeleton does not display in light mode (#407)

This commit is contained in:
ihavecoke 2024-11-11 11:48:03 +08:00 committed by GitHub
parent 5149b8a714
commit f96c21782d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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(),