From 2c5a3c0693e5635509947aaaf8d2b88bfca0767e Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Mon, 16 Feb 2026 14:12:11 +0000 Subject: [PATCH] Tone down color for invisible characters in One themes (#46247) Related: https://github.com/zed-industries/zed/issues/5592 Coming from vscode, the first thing I noticed (after the amazing speed that zed started) was the boldness of the whitespace characters. This mutes the whitespace "invisible" character color in the one theme so that they are less aggressive. This more closely (but not perfectly) aligns with the one theme for vscode. In order to avoid adding a new color to the theme, I reused the `editor.line_number` value in both cases which worked well. # Dark ## original: before_dark ## editor.line_number `#4e5a5f` after_dark ## border.variant (alternative) `#363c46ff` dark_border_variant # Light ## original before_light ## editor.line_number `#b4b4bb` after_light # Release Notes: - Improved: Muted the invisible character color in the one themes. Co-authored-by: Danilo Leal --- assets/themes/one/one.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/themes/one/one.json b/assets/themes/one/one.json index 93704dc182827861e155bf13e7d106727f03df0c..05af3f5cfeec7d4a24c4fe6d684fb21d04e2d81c 100644 --- a/assets/themes/one/one.json +++ b/assets/themes/one/one.json @@ -63,7 +63,7 @@ "editor.line_number": "#4e5a5f", "editor.active_line_number": "#d0d4da", "editor.hover_line_number": "#acb0b4", - "editor.invisible": "#878a98ff", + "editor.invisible": "#4e5a5f", "editor.wrap_guide": "#c8ccd40d", "editor.active_wrap_guide": "#c8ccd41a", "editor.document_highlight.read_background": "#74ade81a", @@ -467,7 +467,7 @@ "editor.line_number": "#b4b4bb", "editor.active_line_number": "#44454b", "editor.hover_line_number": "#61616b", - "editor.invisible": "#a3a3a4ff", + "editor.invisible": "#b4b4bb", "editor.wrap_guide": "#383a410d", "editor.active_wrap_guide": "#383a411a", "editor.document_highlight.read_background": "#5c78e225",