From a94a281a3164a116dcdcb86bf7af1d860b9cce26 Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Sat, 15 Nov 2025 21:04:06 +0400 Subject: [PATCH] Fix 2D ruler visibility --- minimal_theme.tres | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal_theme.tres b/minimal_theme.tres index db2ff67..40ddf1d 100644 --- a/minimal_theme.tres +++ b/minimal_theme.tres @@ -301,7 +301,7 @@ func _init() -> void: set_color('box_selection_fill_color', 'Editor', color_mono * Color(1, 1, 1, 0.12)) set_color('box_selection_stroke_color', 'Editor', color_mono * Color(1, 1, 1, 0.4)) # Ruler in 2D view: - set_color('dark_color_2', 'Editor', color_mono_inv * Color(1, 1, 1, 0.3)) + set_color('dark_color_2', 'Editor', base_color.lerp(color_mono_inv, 0.3) * Color(1, 1, 1, 0.8)) # Shortcut tree cell background: set_color('dark_color_3', 'Editor', color_surface_lower)