commit 5043f00eb3d224011ac68b406f973ca20764517c
parent ec7de41cc3385cb9a263a26e998b2a614ce1c753
Author: kernelkind <kernelkind@gmail.com>
Date: Wed, 15 Jan 2025 16:09:11 -0500
update colors
Signed-off-by: kernelkind <kernelkind@gmail.com>
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git 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
@@ -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