From 8030e8cf4751bb6f930aeacbce3f95e824c8bea9 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 5 Feb 2024 10:45:41 -0500 Subject: [PATCH] Improve the contrast of the default `search_match_background` colors (#7382) This PR improves the contrast of the default `search_match_background` colors. Release Notes: - Improved the contrast of the default `search.match_background` colors. --- crates/theme/src/default_colors.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/theme/src/default_colors.rs b/crates/theme/src/default_colors.rs index 755ece62f98a28238b4d1da97d755e5effa716f2..4e369e917d8f07f69d66526513b71be49f6b3449 100644 --- a/crates/theme/src/default_colors.rs +++ b/crates/theme/src/default_colors.rs @@ -54,7 +54,7 @@ impl ThemeColors { tab_bar_background: neutral().light().step_2(), tab_inactive_background: neutral().light().step_2(), tab_active_background: neutral().light().step_1(), - search_match_background: neutral().light().step_2(), + search_match_background: neutral().light().step_5(), panel_background: neutral().light().step_2(), panel_focused_border: blue().light().step_5(), pane_focused_border: blue().light().step_5(), @@ -148,7 +148,7 @@ impl ThemeColors { tab_bar_background: neutral().dark().step_2(), tab_inactive_background: neutral().dark().step_2(), tab_active_background: neutral().dark().step_1(), - search_match_background: neutral().dark().step_2(), + search_match_background: neutral().dark().step_5(), panel_background: neutral().dark().step_2(), panel_focused_border: blue().dark().step_5(), pane_focused_border: blue().dark().step_5(),