|
@@ -146,12 +146,13 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
// Font Colors
|
|
|
|
|
|
Color control_font_color = Color(0.88, 0.88, 0.88);
|
|
|
- Color control_font_color_lower = Color(0.63, 0.63, 0.63);
|
|
|
- Color control_font_color_low = Color(0.69, 0.69, 0.69);
|
|
|
- Color control_font_color_hover = Color(0.94, 0.94, 0.94);
|
|
|
- Color control_font_color_disabled = Color(0.9, 0.9, 0.9, 0.2);
|
|
|
- Color control_font_color_pressed = Color(1, 1, 1);
|
|
|
- Color font_color_selection = Color(0.49, 0.49, 0.49);
|
|
|
+ Color control_font_lower_color = Color(0.63, 0.63, 0.63);
|
|
|
+ Color control_font_low_color = Color(0.69, 0.69, 0.69);
|
|
|
+ Color control_font_hover_color = Color(0.94, 0.94, 0.94);
|
|
|
+ Color control_font_disabled_color = Color(0.9, 0.9, 0.9, 0.2);
|
|
|
+ Color control_font_pressed_color = Color(1, 1, 1);
|
|
|
+
|
|
|
+ Color control_selection_color = Color(0.49, 0.49, 0.49);
|
|
|
|
|
|
// Panel
|
|
|
|
|
@@ -184,10 +185,10 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_constant("outline_size", "Button", 0 * scale);
|
|
|
|
|
|
theme->set_color("font_color", "Button", control_font_color);
|
|
|
- theme->set_color("font_color_pressed", "Button", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_hover", "Button", control_font_color_hover);
|
|
|
- theme->set_color("font_color_disabled", "Button", control_font_color_disabled);
|
|
|
- theme->set_color("font_outline_modulate", "Button", Color(1, 1, 1));
|
|
|
+ theme->set_color("font_pressed_color", "Button", control_font_pressed_color);
|
|
|
+ theme->set_color("font_hover_color", "Button", control_font_hover_color);
|
|
|
+ theme->set_color("font_disabled_color", "Button", control_font_disabled_color);
|
|
|
+ theme->set_color("font_outline_color", "Button", Color(1, 1, 1));
|
|
|
|
|
|
theme->set_constant("hseparation", "Button", 2 * scale);
|
|
|
|
|
@@ -199,8 +200,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "LinkButton", -1);
|
|
|
|
|
|
theme->set_color("font_color", "LinkButton", control_font_color);
|
|
|
- theme->set_color("font_color_pressed", "LinkButton", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_hover", "LinkButton", control_font_color_hover);
|
|
|
+ theme->set_color("font_pressed_color", "LinkButton", control_font_pressed_color);
|
|
|
+ theme->set_color("font_hover_color", "LinkButton", control_font_hover_color);
|
|
|
|
|
|
theme->set_constant("underline_spacing", "LinkButton", 2 * scale);
|
|
|
|
|
@@ -216,9 +217,9 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "ColorPickerButton", -1);
|
|
|
|
|
|
theme->set_color("font_color", "ColorPickerButton", Color(1, 1, 1, 1));
|
|
|
- theme->set_color("font_color_pressed", "ColorPickerButton", Color(0.8, 0.8, 0.8, 1));
|
|
|
- theme->set_color("font_color_hover", "ColorPickerButton", Color(1, 1, 1, 1));
|
|
|
- theme->set_color("font_color_disabled", "ColorPickerButton", Color(0.9, 0.9, 0.9, 0.3));
|
|
|
+ theme->set_color("font_pressed_color", "ColorPickerButton", Color(0.8, 0.8, 0.8, 1));
|
|
|
+ theme->set_color("font_hover_color", "ColorPickerButton", Color(1, 1, 1, 1));
|
|
|
+ theme->set_color("font_disabled_color", "ColorPickerButton", Color(0.9, 0.9, 0.9, 0.3));
|
|
|
|
|
|
theme->set_constant("hseparation", "ColorPickerButton", 2 * scale);
|
|
|
|
|
@@ -253,9 +254,9 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "OptionButton", -1);
|
|
|
|
|
|
theme->set_color("font_color", "OptionButton", control_font_color);
|
|
|
- theme->set_color("font_color_pressed", "OptionButton", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_hover", "OptionButton", control_font_color_hover);
|
|
|
- theme->set_color("font_color_disabled", "OptionButton", control_font_color_disabled);
|
|
|
+ theme->set_color("font_pressed_color", "OptionButton", control_font_pressed_color);
|
|
|
+ theme->set_color("font_hover_color", "OptionButton", control_font_hover_color);
|
|
|
+ theme->set_color("font_disabled_color", "OptionButton", control_font_disabled_color);
|
|
|
|
|
|
theme->set_constant("hseparation", "OptionButton", 2 * scale);
|
|
|
theme->set_constant("arrow_margin", "OptionButton", 2 * scale);
|
|
@@ -272,9 +273,9 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "MenuButton", -1);
|
|
|
|
|
|
theme->set_color("font_color", "MenuButton", control_font_color);
|
|
|
- theme->set_color("font_color_pressed", "MenuButton", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_hover", "MenuButton", control_font_color_hover);
|
|
|
- theme->set_color("font_color_disabled", "MenuButton", Color(1, 1, 1, 0.3));
|
|
|
+ theme->set_color("font_pressed_color", "MenuButton", control_font_pressed_color);
|
|
|
+ theme->set_color("font_hover_color", "MenuButton", control_font_hover_color);
|
|
|
+ theme->set_color("font_disabled_color", "MenuButton", Color(1, 1, 1, 0.3));
|
|
|
|
|
|
theme->set_constant("hseparation", "MenuButton", 3 * scale);
|
|
|
|
|
@@ -307,10 +308,10 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "CheckBox", -1);
|
|
|
|
|
|
theme->set_color("font_color", "CheckBox", control_font_color);
|
|
|
- theme->set_color("font_color_pressed", "CheckBox", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_hover", "CheckBox", control_font_color_hover);
|
|
|
- theme->set_color("font_color_hover_pressed", "CheckBox", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_disabled", "CheckBox", control_font_color_disabled);
|
|
|
+ theme->set_color("font_pressed_color", "CheckBox", control_font_pressed_color);
|
|
|
+ theme->set_color("font_hover_color", "CheckBox", control_font_hover_color);
|
|
|
+ theme->set_color("font_hover_color_pressed", "CheckBox", control_font_pressed_color);
|
|
|
+ theme->set_color("font_disabled_color", "CheckBox", control_font_disabled_color);
|
|
|
|
|
|
theme->set_constant("hseparation", "CheckBox", 4 * scale);
|
|
|
theme->set_constant("check_vadjust", "CheckBox", 0 * scale);
|
|
@@ -344,10 +345,10 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "CheckButton", -1);
|
|
|
|
|
|
theme->set_color("font_color", "CheckButton", control_font_color);
|
|
|
- theme->set_color("font_color_pressed", "CheckButton", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_hover", "CheckButton", control_font_color_hover);
|
|
|
- theme->set_color("font_color_hover_pressed", "CheckButton", control_font_color_pressed);
|
|
|
- theme->set_color("font_color_disabled", "CheckButton", control_font_color_disabled);
|
|
|
+ theme->set_color("font_pressed_color", "CheckButton", control_font_pressed_color);
|
|
|
+ theme->set_color("font_hover_color", "CheckButton", control_font_hover_color);
|
|
|
+ theme->set_color("font_hover_color_pressed", "CheckButton", control_font_pressed_color);
|
|
|
+ theme->set_color("font_disabled_color", "CheckButton", control_font_disabled_color);
|
|
|
|
|
|
theme->set_constant("hseparation", "CheckButton", 4 * scale);
|
|
|
theme->set_constant("check_vadjust", "CheckButton", 0 * scale);
|
|
@@ -359,8 +360,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "Label", -1);
|
|
|
|
|
|
theme->set_color("font_color", "Label", Color(1, 1, 1));
|
|
|
- theme->set_color("font_color_shadow", "Label", Color(0, 0, 0, 0));
|
|
|
- theme->set_color("font_outline_modulate", "Label", Color(1, 1, 1));
|
|
|
+ theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
|
|
|
+ theme->set_color("font_outline_color", "Label", Color(1, 1, 1));
|
|
|
|
|
|
theme->set_constant("shadow_offset_x", "Label", 1 * scale);
|
|
|
theme->set_constant("shadow_offset_y", "Label", 1 * scale);
|
|
@@ -378,12 +379,12 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "LineEdit", -1);
|
|
|
|
|
|
theme->set_color("font_color", "LineEdit", control_font_color);
|
|
|
- theme->set_color("font_color_selected", "LineEdit", Color(0, 0, 0));
|
|
|
- theme->set_color("font_color_uneditable", "LineEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
|
|
|
- theme->set_color("cursor_color", "LineEdit", control_font_color_hover);
|
|
|
- theme->set_color("selection_color", "LineEdit", font_color_selection);
|
|
|
+ theme->set_color("font_selected_color", "LineEdit", Color(0, 0, 0));
|
|
|
+ theme->set_color("font_uneditable_color", "LineEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
|
|
|
+ theme->set_color("cursor_color", "LineEdit", control_font_hover_color);
|
|
|
+ theme->set_color("selection_color", "LineEdit", control_selection_color);
|
|
|
theme->set_color("clear_button_color", "LineEdit", control_font_color);
|
|
|
- theme->set_color("clear_button_color_pressed", "LineEdit", control_font_color_pressed);
|
|
|
+ theme->set_color("clear_button_color_pressed", "LineEdit", control_font_pressed_color);
|
|
|
|
|
|
theme->set_constant("minimum_spaces", "LineEdit", 12 * scale);
|
|
|
|
|
@@ -397,8 +398,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font("font", "ProgressBar", Ref<Font>());
|
|
|
theme->set_font_size("font_size", "ProgressBar", -1);
|
|
|
|
|
|
- theme->set_color("font_color", "ProgressBar", control_font_color_hover);
|
|
|
- theme->set_color("font_color_shadow", "ProgressBar", Color(0, 0, 0));
|
|
|
+ theme->set_color("font_color", "ProgressBar", control_font_hover_color);
|
|
|
+ theme->set_color("font_shadow_color", "ProgressBar", Color(0, 0, 0));
|
|
|
|
|
|
// TextEdit
|
|
|
|
|
@@ -417,12 +418,12 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_color("completion_background_color", "TextEdit", Color(0.17, 0.16, 0.2));
|
|
|
theme->set_color("completion_selected_color", "TextEdit", Color(0.26, 0.26, 0.27));
|
|
|
theme->set_color("completion_existing_color", "TextEdit", Color(0.87, 0.87, 0.87, 0.13));
|
|
|
- theme->set_color("completion_scroll_color", "TextEdit", control_font_color_pressed);
|
|
|
+ theme->set_color("completion_scroll_color", "TextEdit", control_font_pressed_color);
|
|
|
theme->set_color("completion_font_color", "TextEdit", Color(0.67, 0.67, 0.67));
|
|
|
theme->set_color("font_color", "TextEdit", control_font_color);
|
|
|
- theme->set_color("font_color_selected", "TextEdit", Color(0, 0, 0));
|
|
|
- theme->set_color("font_color_readonly", "TextEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
|
|
|
- theme->set_color("selection_color", "TextEdit", font_color_selection);
|
|
|
+ theme->set_color("font_selected_color", "TextEdit", Color(0, 0, 0));
|
|
|
+ theme->set_color("font_readonly_color", "TextEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
|
|
|
+ theme->set_color("selection_color", "TextEdit", control_selection_color);
|
|
|
theme->set_color("mark_color", "TextEdit", Color(1.0, 0.4, 0.4, 0.4));
|
|
|
theme->set_color("code_folding_color", "TextEdit", Color(0.8, 0.8, 0.8, 0.8));
|
|
|
theme->set_color("current_line_color", "TextEdit", Color(0.25, 0.25, 0.26, 0.8));
|
|
@@ -457,12 +458,12 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_color("completion_background_color", "CodeEdit", Color(0.17, 0.16, 0.2));
|
|
|
theme->set_color("completion_selected_color", "CodeEdit", Color(0.26, 0.26, 0.27));
|
|
|
theme->set_color("completion_existing_color", "CodeEdit", Color(0.87, 0.87, 0.87, 0.13));
|
|
|
- theme->set_color("completion_scroll_color", "CodeEdit", control_font_color_pressed);
|
|
|
+ theme->set_color("completion_scroll_color", "CodeEdit", control_font_pressed_color);
|
|
|
theme->set_color("completion_font_color", "CodeEdit", Color(0.67, 0.67, 0.67));
|
|
|
theme->set_color("font_color", "CodeEdit", control_font_color);
|
|
|
- theme->set_color("font_color_selected", "CodeEdit", Color(0, 0, 0));
|
|
|
- theme->set_color("font_color_readonly", "CodeEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
|
|
|
- theme->set_color("selection_color", "CodeEdit", font_color_selection);
|
|
|
+ theme->set_color("font_selected_color", "CodeEdit", Color(0, 0, 0));
|
|
|
+ theme->set_color("font_readonly_color", "CodeEdit", Color(control_font_color.r, control_font_color.g, control_font_color.b, 0.5f));
|
|
|
+ theme->set_color("selection_color", "CodeEdit", control_selection_color);
|
|
|
theme->set_color("mark_color", "CodeEdit", Color(1.0, 0.4, 0.4, 0.4));
|
|
|
theme->set_color("bookmark_color", "CodeEdit", Color(0.5, 0.64, 1, 0.8));
|
|
|
theme->set_color("breakpoint_color", "CodeEdit", Color(0.9, 0.29, 0.3));
|
|
@@ -598,10 +599,10 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "PopupMenu", -1);
|
|
|
|
|
|
theme->set_color("font_color", "PopupMenu", control_font_color);
|
|
|
- theme->set_color("font_color_accel", "PopupMenu", Color(0.7, 0.7, 0.7, 0.8));
|
|
|
- theme->set_color("font_color_disabled", "PopupMenu", Color(0.4, 0.4, 0.4, 0.8));
|
|
|
- theme->set_color("font_color_hover", "PopupMenu", control_font_color);
|
|
|
- theme->set_color("font_color_separator", "PopupMenu", control_font_color);
|
|
|
+ theme->set_color("font_accelerator_color", "PopupMenu", Color(0.7, 0.7, 0.7, 0.8));
|
|
|
+ theme->set_color("font_disabled_color", "PopupMenu", Color(0.4, 0.4, 0.4, 0.8));
|
|
|
+ theme->set_color("font_hover_color", "PopupMenu", control_font_color);
|
|
|
+ theme->set_color("font_separator_color", "PopupMenu", control_font_color);
|
|
|
|
|
|
theme->set_constant("hseparation", "PopupMenu", 4 * scale);
|
|
|
theme->set_constant("vseparation", "PopupMenu", 4 * scale);
|
|
@@ -671,12 +672,12 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "Tree", -1);
|
|
|
|
|
|
theme->set_color("title_button_color", "Tree", control_font_color);
|
|
|
- theme->set_color("font_color", "Tree", control_font_color_low);
|
|
|
- theme->set_color("font_color_selected", "Tree", control_font_color_pressed);
|
|
|
+ theme->set_color("font_color", "Tree", control_font_low_color);
|
|
|
+ theme->set_color("font_selected_color", "Tree", control_font_pressed_color);
|
|
|
theme->set_color("guide_color", "Tree", Color(0, 0, 0, 0.1));
|
|
|
theme->set_color("drop_position_color", "Tree", Color(1, 0.3, 0.2));
|
|
|
theme->set_color("relationship_line_color", "Tree", Color(0.27, 0.27, 0.27));
|
|
|
- theme->set_color("custom_button_font_highlight", "Tree", control_font_color_hover);
|
|
|
+ theme->set_color("custom_button_font_highlight", "Tree", control_font_hover_color);
|
|
|
|
|
|
theme->set_constant("hseparation", "Tree", 4 * scale);
|
|
|
theme->set_constant("vseparation", "Tree", 4 * scale);
|
|
@@ -701,8 +702,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font("font", "ItemList", Ref<Font>());
|
|
|
theme->set_font_size("font_size", "ItemList", -1);
|
|
|
|
|
|
- theme->set_color("font_color", "ItemList", control_font_color_lower);
|
|
|
- theme->set_color("font_color_selected", "ItemList", control_font_color_pressed);
|
|
|
+ theme->set_color("font_color", "ItemList", control_font_lower_color);
|
|
|
+ theme->set_color("font_selected_color", "ItemList", control_font_pressed_color);
|
|
|
theme->set_color("guide_color", "ItemList", Color(0, 0, 0, 0.1));
|
|
|
theme->set_stylebox("selected", "ItemList", item_selected_oof);
|
|
|
theme->set_stylebox("selected_focus", "ItemList", item_selected);
|
|
@@ -716,8 +717,8 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
tc_sb->set_expand_margin_size(SIDE_TOP, 2 * scale);
|
|
|
tc_sb->set_default_margin(SIDE_TOP, 8 * scale);
|
|
|
|
|
|
- theme->set_stylebox("tab_fg", "TabContainer", sb_expand(make_stylebox(tab_current_png, 4, 4, 4, 1, 16, 4, 16, 4), 2, 2, 2, 2));
|
|
|
- theme->set_stylebox("tab_bg", "TabContainer", sb_expand(make_stylebox(tab_behind_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
|
|
|
+ theme->set_stylebox("tab_selected", "TabContainer", sb_expand(make_stylebox(tab_current_png, 4, 4, 4, 1, 16, 4, 16, 4), 2, 2, 2, 2));
|
|
|
+ theme->set_stylebox("tab_unselected", "TabContainer", sb_expand(make_stylebox(tab_behind_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
|
|
|
theme->set_stylebox("tab_disabled", "TabContainer", sb_expand(make_stylebox(tab_disabled_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
|
|
|
theme->set_stylebox("panel", "TabContainer", tc_sb);
|
|
|
|
|
@@ -731,17 +732,17 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font("font", "TabContainer", Ref<Font>());
|
|
|
theme->set_font_size("font_size", "TabContainer", -1);
|
|
|
|
|
|
- theme->set_color("font_color_fg", "TabContainer", control_font_color_hover);
|
|
|
- theme->set_color("font_color_bg", "TabContainer", control_font_color_low);
|
|
|
- theme->set_color("font_color_disabled", "TabContainer", control_font_color_disabled);
|
|
|
+ theme->set_color("font_selected_color", "TabContainer", control_font_hover_color);
|
|
|
+ theme->set_color("font_unselected_color", "TabContainer", control_font_low_color);
|
|
|
+ theme->set_color("font_disabled_color", "TabContainer", control_font_disabled_color);
|
|
|
|
|
|
theme->set_constant("side_margin", "TabContainer", 8 * scale);
|
|
|
theme->set_constant("icon_separation", "TabContainer", 4 * scale);
|
|
|
|
|
|
// Tabs
|
|
|
|
|
|
- theme->set_stylebox("tab_fg", "Tabs", sb_expand(make_stylebox(tab_current_png, 4, 3, 4, 1, 16, 3, 16, 2), 2, 2, 2, 2));
|
|
|
- theme->set_stylebox("tab_bg", "Tabs", sb_expand(make_stylebox(tab_behind_png, 5, 4, 5, 1, 16, 5, 16, 2), 3, 3, 3, 3));
|
|
|
+ theme->set_stylebox("tab_selected", "Tabs", sb_expand(make_stylebox(tab_current_png, 4, 3, 4, 1, 16, 3, 16, 2), 2, 2, 2, 2));
|
|
|
+ theme->set_stylebox("tab_unselected", "Tabs", sb_expand(make_stylebox(tab_behind_png, 5, 4, 5, 1, 16, 5, 16, 2), 3, 3, 3, 3));
|
|
|
theme->set_stylebox("tab_disabled", "Tabs", sb_expand(make_stylebox(tab_disabled_png, 5, 5, 5, 1, 16, 6, 16, 4), 3, 0, 3, 3));
|
|
|
theme->set_stylebox("panel", "Tabs", tc_sb);
|
|
|
theme->set_stylebox("button_pressed", "Tabs", make_stylebox(button_pressed_png, 4, 4, 4, 4));
|
|
@@ -756,9 +757,9 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font("font", "Tabs", Ref<Font>());
|
|
|
theme->set_font_size("font_size", "Tabs", -1);
|
|
|
|
|
|
- theme->set_color("font_color_fg", "Tabs", control_font_color_hover);
|
|
|
- theme->set_color("font_color_bg", "Tabs", control_font_color_low);
|
|
|
- theme->set_color("font_color_disabled", "Tabs", control_font_color_disabled);
|
|
|
+ theme->set_color("font_selected_color", "Tabs", control_font_hover_color);
|
|
|
+ theme->set_color("font_unselected_color", "Tabs", control_font_low_color);
|
|
|
+ theme->set_color("font_disabled_color", "Tabs", control_font_disabled_color);
|
|
|
|
|
|
theme->set_constant("hseparation", "Tabs", 4 * scale);
|
|
|
|
|
@@ -817,7 +818,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("font_size", "TooltipLabel", -1);
|
|
|
|
|
|
theme->set_color("font_color", "TooltipLabel", Color(0, 0, 0));
|
|
|
- theme->set_color("font_color_shadow", "TooltipLabel", Color(0, 0, 0, 0.1));
|
|
|
+ theme->set_color("font_shadow_color", "TooltipLabel", Color(0, 0, 0, 0.1));
|
|
|
|
|
|
theme->set_constant("shadow_offset_x", "TooltipLabel", 1);
|
|
|
theme->set_constant("shadow_offset_y", "TooltipLabel", 1);
|
|
@@ -840,10 +841,10 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const
|
|
|
theme->set_font_size("mono_font_size", "RichTextLabel", -1);
|
|
|
|
|
|
theme->set_color("default_color", "RichTextLabel", Color(1, 1, 1));
|
|
|
- theme->set_color("font_color_selected", "RichTextLabel", font_color_selection);
|
|
|
+ theme->set_color("font_selected_color", "RichTextLabel", Color(0, 0, 0));
|
|
|
theme->set_color("selection_color", "RichTextLabel", Color(0.1, 0.1, 1, 0.8));
|
|
|
|
|
|
- theme->set_color("font_color_shadow", "RichTextLabel", Color(0, 0, 0, 0));
|
|
|
+ theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
|
|
|
|
|
|
theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * scale);
|
|
|
theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * scale);
|