I find when I disable the Editable option in a LineEdit control, it shades it so dark I can't read the text, but no theme setting seems to affect it, there is no disabled font color setting. I also tried

this.AddColorOverride("font_color", new Color(255, 255, 255, 1f));

but it still turns the white font almost black when Editable = false.

:(

7 days later

In Godot 3.1, the disabled color is hardcoded — it's set to use the enabled color at 50% opacity. However, it will be configurable in 3.2 (see this merged pull request).

3 years later