From 129c2d7361ae55c2550da96367cbd1425298543d Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Sat, 16 Aug 2025 20:53:19 +0400 Subject: [PATCH] Use transparent mono color in separators for better contrast against different backgrounds --- minimal_theme.tres | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minimal_theme.tres b/minimal_theme.tres index b5e3772..b19ecc0 100644 --- a/minimal_theme.tres +++ b/minimal_theme.tres @@ -654,7 +654,7 @@ func _init() -> void: set_stylebox('panel', 'PopupMenu', sb) var line_sb : StyleBoxLine = StyleBoxLine.new() - line_sb.color = _get_base_color(-1.4, 0.6) + line_sb.color = mono_color * Color(0, 0, 0, 0.2) line_sb.grow_begin = base_margin * -1.5 * scale line_sb.grow_end = base_margin * -1.5 * scale line_sb.thickness = int(ceilf(scale * 2)) @@ -874,7 +874,7 @@ func _init() -> void: # Separators line_sb = StyleBoxLine.new() - line_sb.color = _get_base_color(-1.2, 0.6) + line_sb.color = mono_color * Color(0, 0, 0, 0.35) line_sb.grow_begin = base_margin * -1 * scale line_sb.grow_end = base_margin * -1 * scale line_sb.thickness = int(ceilf(scale * 2))