From ac748d379d1bb344acfdd085934754daf35fd18c Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Sat, 21 Jun 2025 16:44:42 +0400 Subject: [PATCH] Increase contrast of text inputs --- minimal_theme.tres | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minimal_theme.tres b/minimal_theme.tres index 2563fb7..60cb8f2 100644 --- a/minimal_theme.tres +++ b/minimal_theme.tres @@ -538,7 +538,7 @@ func _init() -> void: set_color('font_placeholder_color', 'LineEdit', mono_color_icon_and_font * Color(1, 1, 1, 0.4)) sb = base_sb.duplicate() - sb.bg_color = _get_base_color(-1.2 if dark_theme else -2.0) + sb.bg_color = _get_base_color(-1.3 if dark_theme else -2.2) if draw_extra_borders: _set_border(sb, extra_border_color_1, floorf(scale)) _set_margin(sb, base_margin * 2, base_margin * 0.75, base_margin * 2, base_margin * 0.75) @@ -546,7 +546,7 @@ func _init() -> void: set_stylebox('focus', 'TextEdit', sb) sb = sb.duplicate() - sb.bg_color = _get_base_color(-0.8 if dark_theme else -1.6) + sb.bg_color = _get_base_color(-0.9 if dark_theme else -1.8) set_stylebox('normal', 'LineEdit', sb) set_stylebox('normal', 'TextEdit', sb)