Merge pull request #106850 from Calinou/editor-theme-reduce-font-placeholder-opacity
Decrease font placeholder opacity in the editor theme
This commit is contained in:
commit
d6be90983f
1 changed files with 1 additions and 1 deletions
|
|
@ -472,7 +472,7 @@ void EditorThemeManager::_create_shared_styles(const Ref<EditorTheme> &p_theme,
|
|||
p_config.font_hover_pressed_color = p_config.font_hover_color.lerp(p_config.accent_color, 0.74);
|
||||
p_config.font_disabled_color = Color(p_config.mono_color.r, p_config.mono_color.g, p_config.mono_color.b, 0.35);
|
||||
p_config.font_readonly_color = Color(p_config.mono_color.r, p_config.mono_color.g, p_config.mono_color.b, 0.65);
|
||||
p_config.font_placeholder_color = Color(p_config.mono_color.r, p_config.mono_color.g, p_config.mono_color.b, 0.6);
|
||||
p_config.font_placeholder_color = Color(p_config.mono_color.r, p_config.mono_color.g, p_config.mono_color.b, 0.5);
|
||||
p_config.font_outline_color = Color(0, 0, 0, 0);
|
||||
|
||||
p_theme->set_color(SceneStringName(font_color), EditorStringName(Editor), p_config.font_color);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue