From 8d35a302b44ad08d73bfe9284d36c975d87eb9b3 Mon Sep 17 00:00:00 2001 From: passivestar <60579014+passivestar@users.noreply.github.com> Date: Thu, 25 Jan 2024 14:08:02 +0400 Subject: [PATCH] Fix the problem with the input fields --- README.md | 4 ++++ editor_theme.tres | 2 +- editor_theme_high_ppi.tres | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index af396e4..98d2c1f 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,7 @@ To match the look of the theme in the screenshot, you can use the following sett - Icon Saturation: `1.8` Everything else by default + +## Known limitations + +- If you're using a different base color rather than one listed above, input fields may look out of place. This is the limitation of Godot's theming, there is no way to style `LineEdit`s with support for different base colors. Unfortunately there's nothing that I can do about it \ No newline at end of file diff --git a/editor_theme.tres b/editor_theme.tres index dde5508..8ec35c7 100644 --- a/editor_theme.tres +++ b/editor_theme.tres @@ -143,7 +143,7 @@ content_margin_left = 5.0 content_margin_top = 4.0 content_margin_right = 5.0 content_margin_bottom = 4.0 -bg_color = Color(0, 0, 0, 0.352941) +bg_color = Color(0.101961, 0.101961, 0.101961, 1) border_color = Color(0.101569, 0.101569, 0.101569, 1) corner_radius_top_left = 4 corner_radius_top_right = 4 diff --git a/editor_theme_high_ppi.tres b/editor_theme_high_ppi.tres index e0ea383..f73a6e5 100644 --- a/editor_theme_high_ppi.tres +++ b/editor_theme_high_ppi.tres @@ -143,7 +143,7 @@ content_margin_left = 10.0 content_margin_top = 8.0 content_margin_right = 10.0 content_margin_bottom = 8.0 -bg_color = Color(0, 0, 0, 0.352941) +bg_color = Color(0.101961, 0.101961, 0.101961, 1) border_color = Color(0.101569, 0.101569, 0.101569, 1) corner_radius_top_left = 4 corner_radius_top_right = 4