update colors

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-01-15 16:09:11 -05:00
parent ec7de41cc3
commit 5043f00eb3
2 changed files with 2 additions and 2 deletions

View File

@@ -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,
}
}

View File

@@ -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