diff --git a/crates/notedeck_chrome/src/theme.rs b/crates/notedeck_chrome/src/theme.rs index 1ec3130..87bb501 100644 --- a/crates/notedeck_chrome/src/theme.rs +++ b/crates/notedeck_chrome/src/theme.rs @@ -81,7 +81,7 @@ pub fn light_color_theme() -> ColorTheme { // INACTIVE WIDGET inactive_bg_stroke_color: EVEN_DARKER_GRAY, - inactive_bg_fill: LIGHT_GRAY, + inactive_bg_fill: LIGHTER_GRAY, inactive_weak_bg_fill: EVEN_DARKER_GRAY, } } diff --git a/crates/notedeck_columns/src/ui/column/header.rs b/crates/notedeck_columns/src/ui/column/header.rs index 3e89bb0..a99e5f1 100644 --- a/crates/notedeck_columns/src/ui/column/header.rs +++ b/crates/notedeck_columns/src/ui/column/header.rs @@ -304,7 +304,7 @@ impl<'a> NavTitle<'a> { ui.dnd_drag_source(item_id, col, |ui| { item_frame .stroke(egui::Stroke::new(2.0, colors::PINK)) - .fill(ui.visuals().panel_fill) + .fill(ui.visuals().widgets.noninteractive.bg_stroke.color) .show(ui, |ui| self.move_tooltip_col_presentation(ui, col)); }) .response