Refine project panel, list item

This commit is contained in:
Nate Butler 2023-10-11 19:15:27 -04:00
parent 5477b87774
commit 12573ed2e7
6 changed files with 15 additions and 45 deletions

View file

@ -60,7 +60,7 @@ pub struct ThemeColor {
pub border_focused: Hsla,
/// The background color of an elevated surface, like a modal, tooltip or toast.
pub elevated_surface: Hsla,
pub panel_surface: Hsla,
pub surface: Hsla,
}
impl ThemeColor {
@ -72,7 +72,7 @@ impl ThemeColor {
border_variant: theme.lowest.variant.default.border,
border_focused: theme.lowest.accent.default.border,
elevated_surface: theme.middle.base.default.background,
panel_surface: theme.middle.base.default.background,
surface: theme.middle.base.default.background,
}
}
}