Change summary
crates/workspace2/src/pane.rs | 6 +++---
crates/workspace2/src/status_bar.rs | 2 +-
crates/workspace2/src/workspace2.rs | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
Detailed changes
@@ -1359,12 +1359,12 @@ impl Pane {
let (tab_bg, tab_hover_bg, tab_active_bg) = match ix == self.active_item_index {
false => (
- cx.theme().colors().tab_inactive,
+ cx.theme().colors().tab_inactive_background,
cx.theme().colors().ghost_element_hover,
cx.theme().colors().ghost_element_active,
),
true => (
- cx.theme().colors().tab_active,
+ cx.theme().colors().tab_active_background,
cx.theme().colors().element_hover,
cx.theme().colors().element_active,
),
@@ -1428,7 +1428,7 @@ impl Pane {
.id("tab_bar")
.w_full()
.flex()
- .bg(cx.theme().colors().tab_bar)
+ .bg(cx.theme().colors().tab_bar_background)
// Left Side
.child(
div()
@@ -44,7 +44,7 @@ impl Render for StatusBar {
.items_center()
.justify_between()
.w_full()
- .bg(cx.theme().colors().status_bar)
+ .bg(cx.theme().colors().status_bar_background)
.child(self.render_left_tools(cx))
.child(self.render_right_tools(cx))
}
@@ -2694,7 +2694,7 @@ impl Workspace {
fn render_titlebar(&self, cx: &mut ViewContext<Self>) -> impl Component<Self> {
div()
- .bg(cx.theme().colors().title_bar)
+ .bg(cx.theme().colors().title_bar_background)
.when(
!matches!(cx.window_bounds(), WindowBounds::Fullscreen),
|s| s.pl_20(),