From d395d79c87648879aedeb3df1f74355faeb44b0c Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Sun, 12 Jan 2025 17:37:08 +0400 Subject: [PATCH] Fix contrast in settings popups --- minimal_theme.tres | 3 +++ 1 file changed, 3 insertions(+) diff --git a/minimal_theme.tres b/minimal_theme.tres index 9dbea08..29710ea 100644 --- a/minimal_theme.tres +++ b/minimal_theme.tres @@ -584,6 +584,9 @@ func _init() -> void: sb.set_content_margin_all(int(popup_margin * scale)) set_stylebox('panel', 'PopupDialog', sb) set_stylebox('panel', 'AcceptDialog', sb) + + sb = sb.duplicate() + sb.bg_color = _get_base_color(-1) set_stylebox('panel', 'EditorSettingsDialog', sb) set_stylebox('panel', 'ProjectSettingsEditor', sb) set_stylebox('panel', 'EditorAbout', sb)