theme_classic.cpp 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499
  1. /**************************************************************************/
  2. /* theme_classic.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "theme_classic.h"
  31. #include "editor/editor_string_names.h"
  32. #include "editor/settings/editor_settings.h"
  33. #include "editor/themes/editor_scale.h"
  34. #include "editor/themes/editor_theme_manager.h"
  35. #include "scene/gui/graph_edit.h"
  36. #include "scene/resources/compressed_texture.h"
  37. #include "scene/resources/dpi_texture.h"
  38. #include "scene/resources/image_texture.h"
  39. #include "scene/resources/style_box_flat.h"
  40. #include "scene/resources/style_box_line.h"
  41. #include "scene/resources/style_box_texture.h"
  42. void ThemeClassic::populate_shared_styles(const Ref<EditorTheme> &p_theme, EditorThemeManager::ThemeConfiguration &p_config) {
  43. // Colors.
  44. {
  45. // Base colors.
  46. p_theme->set_color("base_color", EditorStringName(Editor), p_config.base_color);
  47. p_theme->set_color("accent_color", EditorStringName(Editor), p_config.accent_color);
  48. // White (dark theme) or black (light theme), will be used to generate the rest of the colors
  49. p_config.mono_color = p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0);
  50. p_config.mono_color_font = p_config.dark_icon_and_font ? Color(1, 1, 1) : Color(0, 0, 0);
  51. // Ensure base colors are in the 0..1 luminance range to avoid 8-bit integer overflow or text rendering issues.
  52. // Some places in the editor use 8-bit integer colors.
  53. p_config.dark_color_1 = p_config.base_color.lerp(Color(0, 0, 0, 1), p_config.contrast).clamp();
  54. p_config.dark_color_2 = p_config.base_color.lerp(Color(0, 0, 0, 1), p_config.contrast * 1.5).clamp();
  55. p_config.dark_color_3 = p_config.base_color.lerp(Color(0, 0, 0, 1), p_config.contrast * 2).clamp();
  56. p_config.contrast_color_1 = p_config.base_color.lerp(p_config.mono_color, MAX(p_config.contrast, p_config.default_contrast));
  57. p_config.contrast_color_2 = p_config.base_color.lerp(p_config.mono_color, MAX(p_config.contrast * 1.5, p_config.default_contrast * 1.5));
  58. p_config.highlight_color = Color(p_config.accent_color.r, p_config.accent_color.g, p_config.accent_color.b, 0.275);
  59. p_config.highlight_disabled_color = p_config.highlight_color.lerp(p_config.dark_icon_and_font ? Color(0, 0, 0) : Color(1, 1, 1), 0.5);
  60. p_config.success_color = Color(0.45, 0.95, 0.5);
  61. p_config.warning_color = Color(1, 0.87, 0.4);
  62. p_config.error_color = Color(1, 0.47, 0.42);
  63. // Keep dark theme colors accessible for use in the frame time gradient in the 3D editor.
  64. // This frame time gradient is used to colorize text for a dark background, so it should keep using bright colors
  65. // even when using a light theme.
  66. p_theme->set_color("success_color_dark_background", EditorStringName(Editor), p_config.success_color);
  67. p_theme->set_color("warning_color_dark_background", EditorStringName(Editor), p_config.warning_color);
  68. p_theme->set_color("error_color_dark_background", EditorStringName(Editor), p_config.error_color);
  69. if (!p_config.dark_icon_and_font) {
  70. // Darken some colors to be readable on a light background.
  71. p_config.success_color = p_config.success_color.lerp(p_config.mono_color_font, 0.35);
  72. p_config.warning_color = Color(0.82, 0.56, 0.1);
  73. p_config.error_color = Color(0.8, 0.22, 0.22);
  74. }
  75. p_theme->set_color("mono_color", EditorStringName(Editor), p_config.mono_color);
  76. p_theme->set_color("dark_color_1", EditorStringName(Editor), p_config.dark_color_1);
  77. p_theme->set_color("dark_color_2", EditorStringName(Editor), p_config.dark_color_2);
  78. p_theme->set_color("dark_color_3", EditorStringName(Editor), p_config.dark_color_3);
  79. p_theme->set_color("contrast_color_1", EditorStringName(Editor), p_config.contrast_color_1);
  80. p_theme->set_color("contrast_color_2", EditorStringName(Editor), p_config.contrast_color_2);
  81. p_theme->set_color("highlight_color", EditorStringName(Editor), p_config.highlight_color);
  82. p_theme->set_color("highlight_disabled_color", EditorStringName(Editor), p_config.highlight_disabled_color);
  83. p_theme->set_color("success_color", EditorStringName(Editor), p_config.success_color);
  84. p_theme->set_color("warning_color", EditorStringName(Editor), p_config.warning_color);
  85. p_theme->set_color("error_color", EditorStringName(Editor), p_config.error_color);
  86. p_theme->set_color("ruler_color", EditorStringName(Editor), p_config.dark_color_2);
  87. #ifndef DISABLE_DEPRECATED // Used before 4.3.
  88. p_theme->set_color("disabled_highlight_color", EditorStringName(Editor), p_config.highlight_disabled_color);
  89. #endif
  90. // Only used when the Draw Extra Borders editor setting is enabled.
  91. p_config.extra_border_color_1 = Color(0.5, 0.5, 0.5);
  92. p_config.extra_border_color_2 = p_config.dark_theme ? Color(0.3, 0.3, 0.3) : Color(0.7, 0.7, 0.7);
  93. p_theme->set_color("extra_border_color_1", EditorStringName(Editor), p_config.extra_border_color_1);
  94. p_theme->set_color("extra_border_color_2", EditorStringName(Editor), p_config.extra_border_color_2);
  95. // Font colors.
  96. p_config.font_color = p_config.mono_color_font.lerp(p_config.base_color, 0.25);
  97. p_config.font_focus_color = p_config.mono_color_font.lerp(p_config.base_color, 0.125);
  98. p_config.font_hover_color = p_config.mono_color_font.lerp(p_config.base_color, 0.125);
  99. p_config.font_pressed_color = p_config.accent_color;
  100. p_config.font_hover_pressed_color = p_config.font_hover_color.lerp(p_config.accent_color, 0.74);
  101. p_config.font_disabled_color = Color(p_config.mono_color_font.r, p_config.mono_color_font.g, p_config.mono_color_font.b, 0.35);
  102. p_config.font_readonly_color = Color(p_config.mono_color_font.r, p_config.mono_color_font.g, p_config.mono_color_font.b, 0.65);
  103. p_config.font_placeholder_color = Color(p_config.mono_color_font.r, p_config.mono_color_font.g, p_config.mono_color_font.b, 0.5);
  104. p_config.font_outline_color = Color(0, 0, 0, 0);
  105. // Colors designed for dark backgrounds, even when using a light theme.
  106. // This is used for 3D editor overlay texts.
  107. if (p_config.dark_theme) {
  108. p_config.font_dark_background_color = p_config.font_color;
  109. p_config.font_dark_background_focus_color = p_config.font_focus_color;
  110. p_config.font_dark_background_hover_color = p_config.font_hover_color;
  111. p_config.font_dark_background_pressed_color = p_config.font_pressed_color;
  112. p_config.font_dark_background_hover_pressed_color = p_config.font_hover_pressed_color;
  113. } else {
  114. p_config.font_dark_background_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.75);
  115. p_config.font_dark_background_focus_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.25);
  116. p_config.font_dark_background_hover_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.25);
  117. p_config.font_dark_background_pressed_color = p_config.font_dark_background_color.lerp(p_config.accent_color, 0.74);
  118. p_config.font_dark_background_hover_pressed_color = p_config.font_dark_background_color.lerp(p_config.accent_color, 0.5);
  119. }
  120. p_theme->set_color(SceneStringName(font_color), EditorStringName(Editor), p_config.font_color);
  121. p_theme->set_color("font_focus_color", EditorStringName(Editor), p_config.font_focus_color);
  122. p_theme->set_color("font_hover_color", EditorStringName(Editor), p_config.font_hover_color);
  123. p_theme->set_color("font_pressed_color", EditorStringName(Editor), p_config.font_pressed_color);
  124. p_theme->set_color("font_hover_pressed_color", EditorStringName(Editor), p_config.font_hover_pressed_color);
  125. p_theme->set_color("font_disabled_color", EditorStringName(Editor), p_config.font_disabled_color);
  126. p_theme->set_color("font_readonly_color", EditorStringName(Editor), p_config.font_readonly_color);
  127. p_theme->set_color("font_placeholder_color", EditorStringName(Editor), p_config.font_placeholder_color);
  128. p_theme->set_color("font_outline_color", EditorStringName(Editor), p_config.font_outline_color);
  129. p_theme->set_color("font_dark_background_color", EditorStringName(Editor), p_config.font_dark_background_color);
  130. p_theme->set_color("font_dark_background_focus_color", EditorStringName(Editor), p_config.font_dark_background_focus_color);
  131. p_theme->set_color("font_dark_background_hover_color", EditorStringName(Editor), p_config.font_dark_background_hover_color);
  132. p_theme->set_color("font_dark_background_pressed_color", EditorStringName(Editor), p_config.font_dark_background_pressed_color);
  133. p_theme->set_color("font_dark_background_hover_pressed_color", EditorStringName(Editor), p_config.font_dark_background_hover_pressed_color);
  134. #ifndef DISABLE_DEPRECATED // Used before 4.3.
  135. p_theme->set_color("readonly_font_color", EditorStringName(Editor), p_config.font_readonly_color);
  136. p_theme->set_color("disabled_font_color", EditorStringName(Editor), p_config.font_disabled_color);
  137. p_theme->set_color("readonly_color", EditorStringName(Editor), p_config.font_readonly_color);
  138. p_theme->set_color("highlighted_font_color", EditorStringName(Editor), p_config.font_hover_color); // Closest equivalent.
  139. #endif
  140. // Icon colors.
  141. p_config.icon_normal_color = Color(1, 1, 1);
  142. p_config.icon_focus_color = p_config.icon_normal_color * (p_config.dark_icon_and_font ? 1.15 : 1.45);
  143. p_config.icon_focus_color.a = 1.0;
  144. p_config.icon_hover_color = p_config.icon_focus_color;
  145. // Make the pressed icon color overbright because icons are not completely white on a dark theme.
  146. // On a light theme, icons are dark, so we need to modulate them with an even brighter color.
  147. p_config.icon_pressed_color = p_config.accent_color * (p_config.dark_icon_and_font ? 1.15 : 3.5);
  148. p_config.icon_pressed_color.a = 1.0;
  149. p_config.icon_disabled_color = Color(p_config.icon_normal_color, 0.4);
  150. p_theme->set_color("icon_normal_color", EditorStringName(Editor), p_config.icon_normal_color);
  151. p_theme->set_color("icon_focus_color", EditorStringName(Editor), p_config.icon_focus_color);
  152. p_theme->set_color("icon_hover_color", EditorStringName(Editor), p_config.icon_hover_color);
  153. p_theme->set_color("icon_pressed_color", EditorStringName(Editor), p_config.icon_pressed_color);
  154. p_theme->set_color("icon_disabled_color", EditorStringName(Editor), p_config.icon_disabled_color);
  155. // Additional GUI colors.
  156. p_config.shadow_color = Color(0, 0, 0, p_config.dark_theme ? 0.3 : 0.1);
  157. p_config.selection_color = p_config.accent_color * Color(1, 1, 1, 0.4);
  158. p_config.disabled_border_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.7);
  159. p_config.disabled_bg_color = p_config.mono_color.inverted().lerp(p_config.base_color, 0.9);
  160. p_config.separator_color = Color(p_config.mono_color.r, p_config.mono_color.g, p_config.mono_color.b, 0.1);
  161. p_theme->set_color("selection_color", EditorStringName(Editor), p_config.selection_color);
  162. p_theme->set_color("disabled_border_color", EditorStringName(Editor), p_config.disabled_border_color);
  163. p_theme->set_color("disabled_bg_color", EditorStringName(Editor), p_config.disabled_bg_color);
  164. p_theme->set_color("separator_color", EditorStringName(Editor), p_config.separator_color);
  165. // Additional editor colors.
  166. p_theme->set_color("box_selection_fill_color", EditorStringName(Editor), p_config.accent_color * Color(1, 1, 1, 0.3));
  167. p_theme->set_color("box_selection_stroke_color", EditorStringName(Editor), p_config.accent_color * Color(1, 1, 1, 0.8));
  168. p_theme->set_color("axis_x_color", EditorStringName(Editor), Color(0.96, 0.20, 0.32));
  169. p_theme->set_color("axis_y_color", EditorStringName(Editor), Color(0.53, 0.84, 0.01));
  170. p_theme->set_color("axis_z_color", EditorStringName(Editor), Color(0.16, 0.55, 0.96));
  171. p_theme->set_color("axis_w_color", EditorStringName(Editor), Color(0.55, 0.55, 0.55));
  172. const float prop_color_saturation = p_config.accent_color.get_s() * 0.75;
  173. const float prop_color_value = p_config.accent_color.get_v();
  174. p_theme->set_color("property_color_x", EditorStringName(Editor), Color::from_hsv(0.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  175. p_theme->set_color("property_color_y", EditorStringName(Editor), Color::from_hsv(1.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  176. p_theme->set_color("property_color_z", EditorStringName(Editor), Color::from_hsv(2.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  177. p_theme->set_color("property_color_w", EditorStringName(Editor), Color::from_hsv(1.5 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  178. // Special colors for rendering methods.
  179. p_theme->set_color("forward_plus_color", EditorStringName(Editor), Color::hex(0x5d8c3fff));
  180. p_theme->set_color("mobile_color", EditorStringName(Editor), Color::hex(0xa5557dff));
  181. p_theme->set_color("gl_compatibility_color", EditorStringName(Editor), Color::hex(0x5586a4ff));
  182. }
  183. // Constants.
  184. {
  185. // Can't save single float in theme, so using Color.
  186. p_theme->set_color("icon_saturation", EditorStringName(Editor), Color(p_config.icon_saturation, p_config.icon_saturation, p_config.icon_saturation));
  187. // Controls may rely on the scale for their internal drawing logic.
  188. p_theme->set_default_base_scale(EDSCALE);
  189. p_theme->set_constant("scale", EditorStringName(Editor), EDSCALE);
  190. p_theme->set_constant("thumb_size", EditorStringName(Editor), p_config.thumb_size);
  191. p_theme->set_constant("class_icon_size", EditorStringName(Editor), p_config.class_icon_size);
  192. p_theme->set_constant("gizmo_handle_scale", EditorStringName(Editor), p_config.gizmo_handle_scale);
  193. p_theme->set_constant("base_margin", EditorStringName(Editor), p_config.base_margin);
  194. p_theme->set_constant("increased_margin", EditorStringName(Editor), p_config.increased_margin);
  195. p_theme->set_constant("window_border_margin", EditorStringName(Editor), p_config.window_border_margin);
  196. p_theme->set_constant("top_bar_separation", EditorStringName(Editor), p_config.top_bar_separation);
  197. p_theme->set_constant("dark_theme", EditorStringName(Editor), p_config.dark_theme);
  198. }
  199. // Styleboxes.
  200. {
  201. // This is the basic stylebox, used as a base for most other styleboxes (through `duplicate()`).
  202. p_config.base_style = EditorThemeManager::make_flat_stylebox(p_config.base_color, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.corner_radius);
  203. p_config.base_style->set_border_width_all(p_config.border_width);
  204. p_config.base_style->set_border_color(p_config.base_color);
  205. p_config.base_empty_style = EditorThemeManager::make_empty_stylebox(p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
  206. // Button styles.
  207. {
  208. p_config.widget_margin = Vector2(p_config.increased_margin + 2, p_config.increased_margin + 1) * EDSCALE;
  209. p_config.button_style = p_config.base_style->duplicate();
  210. p_config.button_style->set_content_margin_individual(p_config.widget_margin.x, p_config.widget_margin.y, p_config.widget_margin.x, p_config.widget_margin.y);
  211. p_config.button_style->set_bg_color(p_config.dark_color_1);
  212. if (p_config.draw_extra_borders) {
  213. p_config.button_style->set_border_width_all(Math::round(EDSCALE));
  214. p_config.button_style->set_border_color(p_config.extra_border_color_1);
  215. } else {
  216. p_config.button_style->set_border_color(p_config.dark_color_2);
  217. }
  218. p_config.button_style_disabled = p_config.button_style->duplicate();
  219. p_config.button_style_disabled->set_bg_color(p_config.disabled_bg_color);
  220. if (p_config.draw_extra_borders) {
  221. p_config.button_style_disabled->set_border_color(p_config.extra_border_color_2);
  222. } else {
  223. p_config.button_style_disabled->set_border_color(p_config.disabled_border_color);
  224. }
  225. p_config.button_style_focus = p_config.button_style->duplicate();
  226. p_config.button_style_focus->set_draw_center(false);
  227. p_config.button_style_focus->set_border_width_all(Math::round(2 * MAX(1, EDSCALE)));
  228. p_config.button_style_focus->set_border_color(p_config.accent_color);
  229. p_config.button_style_pressed = p_config.button_style->duplicate();
  230. p_config.button_style_pressed->set_bg_color(p_config.dark_color_1.darkened(0.125));
  231. p_config.button_style_hover = p_config.button_style->duplicate();
  232. p_config.button_style_hover->set_bg_color(p_config.mono_color * Color(1, 1, 1, 0.11));
  233. if (p_config.draw_extra_borders) {
  234. p_config.button_style_hover->set_border_color(p_config.extra_border_color_1);
  235. } else {
  236. p_config.button_style_hover->set_border_color(p_config.mono_color * Color(1, 1, 1, 0.05));
  237. }
  238. }
  239. // Windows and popups.
  240. {
  241. p_config.popup_style = p_config.base_style->duplicate();
  242. p_config.popup_style->set_content_margin_all(p_config.popup_margin);
  243. p_config.popup_style->set_border_color(p_config.contrast_color_1);
  244. p_config.popup_style->set_shadow_color(p_config.shadow_color);
  245. p_config.popup_style->set_shadow_size(4 * EDSCALE);
  246. // Popups are separate windows by default in the editor. Windows currently don't support per-pixel transparency
  247. // in 4.0, and even if it was, it may not always work in practice (e.g. running with compositing disabled).
  248. p_config.popup_style->set_corner_radius_all(0);
  249. p_config.popup_border_style = p_config.popup_style->duplicate();
  250. p_config.popup_border_style->set_content_margin_all(MAX(Math::round(EDSCALE), p_config.border_width) + 2 + (p_config.base_margin * 1.5) * EDSCALE);
  251. // Always display a border for popups like PopupMenus so they can be distinguished from their background.
  252. p_config.popup_border_style->set_border_width_all(MAX(Math::round(EDSCALE), p_config.border_width));
  253. if (p_config.draw_extra_borders) {
  254. p_config.popup_border_style->set_border_color(p_config.extra_border_color_2);
  255. } else {
  256. p_config.popup_border_style->set_border_color(p_config.dark_color_2);
  257. }
  258. p_config.window_style = p_config.popup_style->duplicate();
  259. p_config.window_style->set_border_color(p_config.base_color);
  260. p_config.window_style->set_border_width(SIDE_TOP, 24 * EDSCALE);
  261. p_config.window_style->set_expand_margin(SIDE_TOP, 24 * EDSCALE);
  262. // Prevent corner artifacts between window title and body.
  263. p_config.dialog_style = p_config.base_style->duplicate();
  264. p_config.dialog_style->set_corner_radius(CORNER_TOP_LEFT, 0);
  265. p_config.dialog_style->set_corner_radius(CORNER_TOP_RIGHT, 0);
  266. p_config.dialog_style->set_content_margin_all(p_config.popup_margin);
  267. // Prevent visible line between window title and body.
  268. p_config.dialog_style->set_expand_margin(SIDE_BOTTOM, 2 * EDSCALE);
  269. }
  270. // Panels.
  271. {
  272. p_config.panel_container_style = p_config.button_style->duplicate();
  273. p_config.panel_container_style->set_draw_center(false);
  274. p_config.panel_container_style->set_border_width_all(0);
  275. // Content panel for tabs and similar containers.
  276. // Compensate for the border.
  277. const int content_panel_margin = p_config.base_margin * EDSCALE + p_config.border_width;
  278. p_config.content_panel_style = p_config.base_style->duplicate();
  279. p_config.content_panel_style->set_border_color(p_config.dark_color_3);
  280. p_config.content_panel_style->set_border_width_all(p_config.border_width);
  281. p_config.content_panel_style->set_border_width(Side::SIDE_TOP, 0);
  282. p_config.content_panel_style->set_corner_radius(CORNER_TOP_LEFT, 0);
  283. p_config.content_panel_style->set_corner_radius(CORNER_TOP_RIGHT, 0);
  284. p_config.content_panel_style->set_content_margin_individual(content_panel_margin, 2 * EDSCALE + content_panel_margin, content_panel_margin, content_panel_margin);
  285. p_config.tab_container_style = p_config.content_panel_style;
  286. // Trees and similarly inset panels.
  287. p_config.tree_panel_style = p_config.base_style->duplicate();
  288. // Make Trees easier to distinguish from other controls by using a darker background color.
  289. p_config.tree_panel_style->set_bg_color(p_config.dark_color_1.lerp(p_config.dark_color_2, 0.5));
  290. if (p_config.draw_extra_borders) {
  291. p_config.tree_panel_style->set_border_width_all(Math::round(EDSCALE));
  292. p_config.tree_panel_style->set_border_color(p_config.extra_border_color_2);
  293. } else {
  294. p_config.tree_panel_style->set_border_color(p_config.dark_color_3);
  295. }
  296. }
  297. }
  298. }
  299. void ThemeClassic::populate_standard_styles(const Ref<EditorTheme> &p_theme, EditorThemeManager::ThemeConfiguration &p_config) {
  300. // Panels.
  301. {
  302. // Panel.
  303. p_theme->set_stylebox(SceneStringName(panel), "Panel", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 6, 4, 6, 4, p_config.corner_radius));
  304. // PanelContainer.
  305. p_theme->set_stylebox(SceneStringName(panel), "PanelContainer", p_config.panel_container_style);
  306. // TooltipPanel & TooltipLabel.
  307. {
  308. // TooltipPanel is also used for custom tooltips, while TooltipLabel
  309. // is only relevant for default tooltips.
  310. p_theme->set_color(SceneStringName(font_color), "TooltipLabel", p_config.font_hover_color);
  311. p_theme->set_color("font_shadow_color", "TooltipLabel", Color(0, 0, 0, 0));
  312. Ref<StyleBoxFlat> style_tooltip = p_config.popup_style->duplicate();
  313. style_tooltip->set_shadow_size(0);
  314. style_tooltip->set_content_margin_all(p_config.base_margin * EDSCALE * 0.5);
  315. style_tooltip->set_bg_color(p_config.dark_color_3 * Color(0.8, 0.8, 0.8, 0.9));
  316. if (p_config.draw_extra_borders) {
  317. style_tooltip->set_border_width_all(Math::round(EDSCALE));
  318. style_tooltip->set_border_color(p_config.extra_border_color_2);
  319. } else {
  320. style_tooltip->set_border_width_all(0);
  321. }
  322. p_theme->set_stylebox(SceneStringName(panel), "TooltipPanel", style_tooltip);
  323. }
  324. // PopupPanel
  325. p_theme->set_stylebox(SceneStringName(panel), "PopupPanel", p_config.popup_border_style);
  326. }
  327. // Buttons.
  328. {
  329. // Button.
  330. p_theme->set_stylebox(CoreStringName(normal), "Button", p_config.button_style);
  331. p_theme->set_stylebox(SceneStringName(hover), "Button", p_config.button_style_hover);
  332. p_theme->set_stylebox(SceneStringName(pressed), "Button", p_config.button_style_pressed);
  333. p_theme->set_stylebox("focus", "Button", p_config.button_style_focus);
  334. p_theme->set_stylebox("disabled", "Button", p_config.button_style_disabled);
  335. p_theme->set_color(SceneStringName(font_color), "Button", p_config.font_color);
  336. p_theme->set_color("font_hover_color", "Button", p_config.font_hover_color);
  337. p_theme->set_color("font_hover_pressed_color", "Button", p_config.font_hover_pressed_color);
  338. p_theme->set_color("font_focus_color", "Button", p_config.font_focus_color);
  339. p_theme->set_color("font_pressed_color", "Button", p_config.font_pressed_color);
  340. p_theme->set_color("font_disabled_color", "Button", p_config.font_disabled_color);
  341. p_theme->set_color("font_outline_color", "Button", p_config.font_outline_color);
  342. p_theme->set_color("icon_normal_color", "Button", p_config.icon_normal_color);
  343. p_theme->set_color("icon_hover_color", "Button", p_config.icon_hover_color);
  344. p_theme->set_color("icon_focus_color", "Button", p_config.icon_focus_color);
  345. p_theme->set_color("icon_hover_pressed_color", "Button", p_config.icon_pressed_color);
  346. p_theme->set_color("icon_pressed_color", "Button", p_config.icon_pressed_color);
  347. p_theme->set_color("icon_disabled_color", "Button", p_config.icon_disabled_color);
  348. p_theme->set_constant("h_separation", "Button", 4 * EDSCALE);
  349. p_theme->set_constant("outline_size", "Button", 0);
  350. p_theme->set_constant("align_to_largest_stylebox", "Button", 1); // Enabled.
  351. // MenuBar.
  352. p_theme->set_stylebox(CoreStringName(normal), "MenuBar", p_config.button_style);
  353. p_theme->set_stylebox(SceneStringName(hover), "MenuBar", p_config.button_style_hover);
  354. p_theme->set_stylebox(SceneStringName(pressed), "MenuBar", p_config.button_style_pressed);
  355. p_theme->set_stylebox("disabled", "MenuBar", p_config.button_style_disabled);
  356. p_theme->set_color(SceneStringName(font_color), "MenuBar", p_config.font_color);
  357. p_theme->set_color("font_hover_color", "MenuBar", p_config.font_hover_color);
  358. p_theme->set_color("font_hover_pressed_color", "MenuBar", p_config.font_hover_pressed_color);
  359. p_theme->set_color("font_focus_color", "MenuBar", p_config.font_focus_color);
  360. p_theme->set_color("font_pressed_color", "MenuBar", p_config.font_pressed_color);
  361. p_theme->set_color("font_disabled_color", "MenuBar", p_config.font_disabled_color);
  362. p_theme->set_color("font_outline_color", "MenuBar", p_config.font_outline_color);
  363. p_theme->set_constant("h_separation", "MenuBar", 4 * EDSCALE);
  364. p_theme->set_constant("outline_size", "MenuBar", 0);
  365. // OptionButton.
  366. {
  367. Ref<StyleBoxFlat> option_button_focus_style = p_config.button_style_focus->duplicate();
  368. Ref<StyleBoxFlat> option_button_normal_style = p_config.button_style->duplicate();
  369. Ref<StyleBoxFlat> option_button_hover_style = p_config.button_style_hover->duplicate();
  370. Ref<StyleBoxFlat> option_button_pressed_style = p_config.button_style_pressed->duplicate();
  371. Ref<StyleBoxFlat> option_button_disabled_style = p_config.button_style_disabled->duplicate();
  372. option_button_focus_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
  373. option_button_normal_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
  374. option_button_hover_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
  375. option_button_pressed_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
  376. option_button_disabled_style->set_content_margin(SIDE_RIGHT, 4 * EDSCALE);
  377. p_theme->set_stylebox("focus", "OptionButton", option_button_focus_style);
  378. p_theme->set_stylebox(CoreStringName(normal), "OptionButton", p_config.button_style);
  379. p_theme->set_stylebox(SceneStringName(hover), "OptionButton", p_config.button_style_hover);
  380. p_theme->set_stylebox(SceneStringName(pressed), "OptionButton", p_config.button_style_pressed);
  381. p_theme->set_stylebox("disabled", "OptionButton", p_config.button_style_disabled);
  382. p_theme->set_stylebox("normal_mirrored", "OptionButton", option_button_normal_style);
  383. p_theme->set_stylebox("hover_mirrored", "OptionButton", option_button_hover_style);
  384. p_theme->set_stylebox("pressed_mirrored", "OptionButton", option_button_pressed_style);
  385. p_theme->set_stylebox("disabled_mirrored", "OptionButton", option_button_disabled_style);
  386. p_theme->set_color(SceneStringName(font_color), "OptionButton", p_config.font_color);
  387. p_theme->set_color("font_hover_color", "OptionButton", p_config.font_hover_color);
  388. p_theme->set_color("font_hover_pressed_color", "OptionButton", p_config.font_hover_pressed_color);
  389. p_theme->set_color("font_focus_color", "OptionButton", p_config.font_focus_color);
  390. p_theme->set_color("font_pressed_color", "OptionButton", p_config.font_pressed_color);
  391. p_theme->set_color("font_disabled_color", "OptionButton", p_config.font_disabled_color);
  392. p_theme->set_color("font_outline_color", "OptionButton", p_config.font_outline_color);
  393. p_theme->set_color("icon_normal_color", "OptionButton", p_config.icon_normal_color);
  394. p_theme->set_color("icon_hover_color", "OptionButton", p_config.icon_hover_color);
  395. p_theme->set_color("icon_focus_color", "OptionButton", p_config.icon_focus_color);
  396. p_theme->set_color("icon_pressed_color", "OptionButton", p_config.icon_pressed_color);
  397. p_theme->set_color("icon_disabled_color", "OptionButton", p_config.icon_disabled_color);
  398. p_theme->set_icon("arrow", "OptionButton", p_theme->get_icon(SNAME("GuiOptionArrow"), EditorStringName(EditorIcons)));
  399. p_theme->set_constant("arrow_margin", "OptionButton", p_config.widget_margin.x - 2 * EDSCALE);
  400. p_theme->set_constant("modulate_arrow", "OptionButton", true);
  401. p_theme->set_constant("h_separation", "OptionButton", 4 * EDSCALE);
  402. p_theme->set_constant("outline_size", "OptionButton", 0);
  403. }
  404. // CheckButton.
  405. p_theme->set_stylebox(CoreStringName(normal), "CheckButton", p_config.panel_container_style);
  406. p_theme->set_stylebox(SceneStringName(pressed), "CheckButton", p_config.panel_container_style);
  407. p_theme->set_stylebox("disabled", "CheckButton", p_config.panel_container_style);
  408. p_theme->set_stylebox(SceneStringName(hover), "CheckButton", p_config.panel_container_style);
  409. p_theme->set_stylebox("hover_pressed", "CheckButton", p_config.panel_container_style);
  410. p_theme->set_icon("checked", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOn"), EditorStringName(EditorIcons)));
  411. p_theme->set_icon("checked_disabled", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOnDisabled"), EditorStringName(EditorIcons)));
  412. p_theme->set_icon("unchecked", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOff"), EditorStringName(EditorIcons)));
  413. p_theme->set_icon("unchecked_disabled", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOffDisabled"), EditorStringName(EditorIcons)));
  414. p_theme->set_icon("checked_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOnMirrored"), EditorStringName(EditorIcons)));
  415. p_theme->set_icon("checked_disabled_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOnDisabledMirrored"), EditorStringName(EditorIcons)));
  416. p_theme->set_icon("unchecked_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOffMirrored"), EditorStringName(EditorIcons)));
  417. p_theme->set_icon("unchecked_disabled_mirrored", "CheckButton", p_theme->get_icon(SNAME("GuiToggleOffDisabledMirrored"), EditorStringName(EditorIcons)));
  418. p_theme->set_color(SceneStringName(font_color), "CheckButton", p_config.font_color);
  419. p_theme->set_color("font_hover_color", "CheckButton", p_config.font_hover_color);
  420. p_theme->set_color("font_hover_pressed_color", "CheckButton", p_config.font_hover_pressed_color);
  421. p_theme->set_color("font_focus_color", "CheckButton", p_config.font_focus_color);
  422. p_theme->set_color("font_pressed_color", "CheckButton", p_config.font_pressed_color);
  423. p_theme->set_color("font_disabled_color", "CheckButton", p_config.font_disabled_color);
  424. p_theme->set_color("font_outline_color", "CheckButton", p_config.font_outline_color);
  425. p_theme->set_color("icon_normal_color", "CheckButton", p_config.icon_normal_color);
  426. p_theme->set_color("icon_hover_color", "CheckButton", p_config.icon_hover_color);
  427. p_theme->set_color("icon_focus_color", "CheckButton", p_config.icon_focus_color);
  428. p_theme->set_color("icon_pressed_color", "CheckButton", p_config.icon_pressed_color);
  429. p_theme->set_color("icon_disabled_color", "CheckButton", p_config.icon_disabled_color);
  430. p_theme->set_constant("h_separation", "CheckButton", 8 * EDSCALE);
  431. p_theme->set_constant("check_v_offset", "CheckButton", 0);
  432. p_theme->set_constant("outline_size", "CheckButton", 0);
  433. // CheckBox.
  434. {
  435. Ref<StyleBoxFlat> checkbox_style = p_config.panel_container_style->duplicate();
  436. p_theme->set_stylebox(CoreStringName(normal), "CheckBox", checkbox_style);
  437. p_theme->set_stylebox(SceneStringName(pressed), "CheckBox", checkbox_style);
  438. p_theme->set_stylebox("disabled", "CheckBox", checkbox_style);
  439. p_theme->set_stylebox(SceneStringName(hover), "CheckBox", checkbox_style);
  440. p_theme->set_stylebox("hover_pressed", "CheckBox", checkbox_style);
  441. p_theme->set_icon("checked", "CheckBox", p_theme->get_icon(SNAME("GuiChecked"), EditorStringName(EditorIcons)));
  442. p_theme->set_icon("unchecked", "CheckBox", p_theme->get_icon(SNAME("GuiUnchecked"), EditorStringName(EditorIcons)));
  443. p_theme->set_icon("radio_checked", "CheckBox", p_theme->get_icon(SNAME("GuiRadioChecked"), EditorStringName(EditorIcons)));
  444. p_theme->set_icon("radio_unchecked", "CheckBox", p_theme->get_icon(SNAME("GuiRadioUnchecked"), EditorStringName(EditorIcons)));
  445. p_theme->set_icon("checked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiCheckedDisabled"), EditorStringName(EditorIcons)));
  446. p_theme->set_icon("unchecked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiUncheckedDisabled"), EditorStringName(EditorIcons)));
  447. p_theme->set_icon("radio_checked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiRadioCheckedDisabled"), EditorStringName(EditorIcons)));
  448. p_theme->set_icon("radio_unchecked_disabled", "CheckBox", p_theme->get_icon(SNAME("GuiRadioUncheckedDisabled"), EditorStringName(EditorIcons)));
  449. p_theme->set_color(SceneStringName(font_color), "CheckBox", p_config.font_color);
  450. p_theme->set_color("font_hover_color", "CheckBox", p_config.font_hover_color);
  451. p_theme->set_color("font_hover_pressed_color", "CheckBox", p_config.font_hover_pressed_color);
  452. p_theme->set_color("font_focus_color", "CheckBox", p_config.font_focus_color);
  453. p_theme->set_color("font_pressed_color", "CheckBox", p_config.font_pressed_color);
  454. p_theme->set_color("font_disabled_color", "CheckBox", p_config.font_disabled_color);
  455. p_theme->set_color("font_outline_color", "CheckBox", p_config.font_outline_color);
  456. p_theme->set_color("icon_normal_color", "CheckBox", p_config.icon_normal_color);
  457. p_theme->set_color("icon_hover_color", "CheckBox", p_config.icon_hover_color);
  458. p_theme->set_color("icon_focus_color", "CheckBox", p_config.icon_focus_color);
  459. p_theme->set_color("icon_pressed_color", "CheckBox", p_config.icon_pressed_color);
  460. p_theme->set_color("icon_disabled_color", "CheckBox", p_config.icon_disabled_color);
  461. p_theme->set_constant("h_separation", "CheckBox", 8 * EDSCALE);
  462. p_theme->set_constant("check_v_offset", "CheckBox", 0);
  463. p_theme->set_constant("outline_size", "CheckBox", 0);
  464. }
  465. // LinkButton.
  466. p_theme->set_stylebox("focus", "LinkButton", p_config.base_empty_style);
  467. p_theme->set_color(SceneStringName(font_color), "LinkButton", p_config.font_color);
  468. p_theme->set_color("font_hover_color", "LinkButton", p_config.font_hover_color);
  469. p_theme->set_color("font_hover_pressed_color", "LinkButton", p_config.font_hover_pressed_color);
  470. p_theme->set_color("font_focus_color", "LinkButton", p_config.font_focus_color);
  471. p_theme->set_color("font_pressed_color", "LinkButton", p_config.font_pressed_color);
  472. p_theme->set_color("font_disabled_color", "LinkButton", p_config.font_disabled_color);
  473. p_theme->set_color("font_outline_color", "LinkButton", p_config.font_outline_color);
  474. p_theme->set_constant("outline_size", "LinkButton", 0);
  475. }
  476. // Tree & ItemList.
  477. {
  478. Ref<StyleBoxFlat> style_tree_focus = p_config.base_style->duplicate();
  479. style_tree_focus->set_bg_color(p_config.highlight_color);
  480. style_tree_focus->set_border_width_all(0);
  481. Ref<StyleBoxFlat> style_tree_selected = style_tree_focus->duplicate();
  482. const Color guide_color = p_config.mono_color * Color(1, 1, 1, 0.05);
  483. // Tree.
  484. {
  485. p_theme->set_icon("checked", "Tree", p_theme->get_icon(SNAME("GuiChecked"), EditorStringName(EditorIcons)));
  486. p_theme->set_icon("checked_disabled", "Tree", p_theme->get_icon(SNAME("GuiCheckedDisabled"), EditorStringName(EditorIcons)));
  487. p_theme->set_icon("indeterminate", "Tree", p_theme->get_icon(SNAME("GuiIndeterminate"), EditorStringName(EditorIcons)));
  488. p_theme->set_icon("indeterminate_disabled", "Tree", p_theme->get_icon(SNAME("GuiIndeterminateDisabled"), EditorStringName(EditorIcons)));
  489. p_theme->set_icon("unchecked", "Tree", p_theme->get_icon(SNAME("GuiUnchecked"), EditorStringName(EditorIcons)));
  490. p_theme->set_icon("unchecked_disabled", "Tree", p_theme->get_icon(SNAME("GuiUncheckedDisabled"), EditorStringName(EditorIcons)));
  491. p_theme->set_icon("arrow", "Tree", p_theme->get_icon(SNAME("GuiTreeArrowDown"), EditorStringName(EditorIcons)));
  492. p_theme->set_icon("arrow_collapsed", "Tree", p_theme->get_icon(SNAME("GuiTreeArrowRight"), EditorStringName(EditorIcons)));
  493. p_theme->set_icon("arrow_collapsed_mirrored", "Tree", p_theme->get_icon(SNAME("GuiTreeArrowLeft"), EditorStringName(EditorIcons)));
  494. p_theme->set_icon("updown", "Tree", p_theme->get_icon(SNAME("GuiTreeUpdown"), EditorStringName(EditorIcons)));
  495. p_theme->set_icon("select_arrow", "Tree", p_theme->get_icon(SNAME("GuiDropdown"), EditorStringName(EditorIcons)));
  496. p_theme->set_stylebox(SceneStringName(panel), "Tree", p_config.tree_panel_style);
  497. p_theme->set_stylebox("focus", "Tree", p_config.button_style_focus);
  498. p_theme->set_stylebox("custom_button", "Tree", EditorThemeManager::make_empty_stylebox());
  499. p_theme->set_stylebox("custom_button_pressed", "Tree", EditorThemeManager::make_empty_stylebox());
  500. p_theme->set_stylebox("custom_button_hover", "Tree", p_config.button_style);
  501. p_theme->set_color("custom_button_font_highlight", "Tree", p_config.font_hover_color);
  502. p_theme->set_color(SceneStringName(font_color), "Tree", p_config.font_color);
  503. p_theme->set_color("font_hovered_color", "Tree", p_config.mono_color_font);
  504. p_theme->set_color("font_hovered_dimmed_color", "Tree", p_config.font_color);
  505. p_theme->set_color("font_hovered_selected_color", "Tree", p_config.mono_color_font);
  506. p_theme->set_color("font_selected_color", "Tree", p_config.mono_color_font);
  507. p_theme->set_color("font_disabled_color", "Tree", p_config.font_disabled_color);
  508. p_theme->set_color("font_outline_color", "Tree", p_config.font_outline_color);
  509. p_theme->set_color("title_button_color", "Tree", p_config.font_color);
  510. p_theme->set_color("drop_position_color", "Tree", p_config.accent_color);
  511. p_theme->set_constant("v_separation", "Tree", p_config.base_margin * EDSCALE);
  512. p_theme->set_constant("h_separation", "Tree", (p_config.increased_margin + 2) * EDSCALE);
  513. p_theme->set_constant("guide_width", "Tree", p_config.border_width);
  514. p_theme->set_constant("item_margin", "Tree", MAX(3 * p_config.increased_margin * EDSCALE, 12 * EDSCALE));
  515. p_theme->set_constant("inner_item_margin_top", "Tree", p_config.base_margin * 0.75 * EDSCALE);
  516. p_theme->set_constant("inner_item_margin_bottom", "Tree", p_config.base_margin * 0.75 * EDSCALE);
  517. p_theme->set_constant("inner_item_margin_left", "Tree", p_config.increased_margin * EDSCALE);
  518. p_theme->set_constant("inner_item_margin_right", "Tree", p_config.increased_margin * EDSCALE);
  519. p_theme->set_constant("check_h_separation", "Tree", (p_config.increased_margin + 2) * EDSCALE);
  520. p_theme->set_constant("icon_h_separation", "Tree", (p_config.increased_margin + 2) * EDSCALE);
  521. p_theme->set_constant("button_margin", "Tree", p_config.base_margin * EDSCALE);
  522. p_theme->set_constant("dragging_unfold_wait_msec", "Tree", p_config.dragging_hover_wait_msec);
  523. p_theme->set_constant("scroll_border", "Tree", 40 * EDSCALE);
  524. p_theme->set_constant("scroll_speed", "Tree", 12);
  525. p_theme->set_constant("outline_size", "Tree", 0);
  526. p_theme->set_constant("scrollbar_margin_left", "Tree", 0);
  527. p_theme->set_constant("scrollbar_margin_top", "Tree", 0);
  528. p_theme->set_constant("scrollbar_margin_right", "Tree", 0);
  529. p_theme->set_constant("scrollbar_margin_bottom", "Tree", 0);
  530. p_theme->set_constant("scrollbar_h_separation", "Tree", 1 * EDSCALE);
  531. p_theme->set_constant("scrollbar_v_separation", "Tree", 1 * EDSCALE);
  532. Color relationship_line_color = p_config.mono_color * Color(1, 1, 1, p_config.relationship_line_opacity);
  533. int draw_relationship_lines = 0;
  534. int relationship_line_width = 0;
  535. int highlighted_line_width = 2;
  536. if (p_config.draw_relationship_lines == EditorThemeManager::RELATIONSHIP_ALL) {
  537. draw_relationship_lines = 1;
  538. relationship_line_width = highlighted_line_width;
  539. } else if (p_config.draw_relationship_lines == EditorThemeManager::RELATIONSHIP_SELECTED_ONLY) {
  540. draw_relationship_lines = 1;
  541. }
  542. p_theme->set_constant("draw_guides", "Tree", !draw_relationship_lines || p_config.relationship_line_opacity < 0.01);
  543. p_theme->set_color("guide_color", "Tree", guide_color);
  544. Color parent_line_color = p_config.mono_color * Color(1, 1, 1, CLAMP(p_config.relationship_line_opacity + 0.45, 0.0, 1.0));
  545. Color children_line_color = p_config.mono_color * Color(1, 1, 1, CLAMP(p_config.relationship_line_opacity + 0.25, 0.0, 1.0));
  546. p_theme->set_constant("draw_relationship_lines", "Tree", draw_relationship_lines && p_config.relationship_line_opacity >= 0.01);
  547. p_theme->set_constant("relationship_line_width", "Tree", relationship_line_width);
  548. p_theme->set_constant("parent_hl_line_width", "Tree", highlighted_line_width);
  549. p_theme->set_constant("children_hl_line_width", "Tree", highlighted_line_width / 2);
  550. p_theme->set_constant("parent_hl_line_margin", "Tree", 3);
  551. p_theme->set_color("relationship_line_color", "Tree", relationship_line_color);
  552. p_theme->set_color("parent_hl_line_color", "Tree", parent_line_color);
  553. p_theme->set_color("children_hl_line_color", "Tree", children_line_color);
  554. p_theme->set_color("drop_position_color", "Tree", p_config.accent_color);
  555. Ref<StyleBoxFlat> style_tree_btn = p_config.base_style->duplicate();
  556. style_tree_btn->set_bg_color(p_config.highlight_color);
  557. style_tree_btn->set_border_width_all(0);
  558. p_theme->set_stylebox("button_pressed", "Tree", style_tree_btn);
  559. Ref<StyleBoxFlat> style_tree_hover = p_config.base_style->duplicate();
  560. style_tree_hover->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.4));
  561. style_tree_hover->set_border_width_all(0);
  562. p_theme->set_stylebox("hovered", "Tree", style_tree_hover);
  563. p_theme->set_stylebox("button_hover", "Tree", style_tree_hover);
  564. Ref<StyleBoxFlat> style_tree_hover_dimmed = p_config.base_style->duplicate();
  565. style_tree_hover_dimmed->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.2));
  566. style_tree_hover_dimmed->set_border_width_all(0);
  567. p_theme->set_stylebox("hovered_dimmed", "Tree", style_tree_hover_dimmed);
  568. Ref<StyleBoxFlat> style_tree_hover_selected = style_tree_selected->duplicate();
  569. style_tree_hover_selected->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 1.2));
  570. style_tree_hover_selected->set_border_width_all(0);
  571. p_theme->set_stylebox("hovered_selected", "Tree", style_tree_hover_selected);
  572. p_theme->set_stylebox("hovered_selected_focus", "Tree", style_tree_hover_selected);
  573. p_theme->set_stylebox("selected_focus", "Tree", style_tree_focus);
  574. p_theme->set_stylebox("selected", "Tree", style_tree_selected);
  575. Ref<StyleBoxFlat> style_tree_cursor = p_config.base_style->duplicate();
  576. style_tree_cursor->set_draw_center(false);
  577. style_tree_cursor->set_border_width_all(MAX(1, p_config.border_width));
  578. style_tree_cursor->set_border_color(p_config.contrast_color_1);
  579. Ref<StyleBoxFlat> style_tree_title = p_config.base_style->duplicate();
  580. style_tree_title->set_bg_color(p_config.dark_color_3);
  581. style_tree_title->set_border_width_all(0);
  582. p_theme->set_stylebox("cursor", "Tree", style_tree_cursor);
  583. p_theme->set_stylebox("cursor_unfocused", "Tree", style_tree_cursor);
  584. p_theme->set_stylebox("title_button_normal", "Tree", style_tree_title);
  585. p_theme->set_stylebox("title_button_hover", "Tree", style_tree_title);
  586. p_theme->set_stylebox("title_button_pressed", "Tree", style_tree_title);
  587. }
  588. // ProjectList.
  589. {
  590. Ref<StyleBoxFlat> style_project_list_hover = p_config.base_style->duplicate();
  591. style_project_list_hover->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.4));
  592. style_project_list_hover->set_border_width_all(0);
  593. Ref<StyleBoxFlat> style_project_list_hover_pressed = p_config.base_style->duplicate();
  594. style_project_list_hover_pressed->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 1.2));
  595. style_project_list_hover_pressed->set_border_width_all(0);
  596. p_theme->set_stylebox("hovered", "ProjectList", style_project_list_hover);
  597. p_theme->set_stylebox("hover_pressed", "ProjectList", style_project_list_hover_pressed);
  598. p_theme->set_stylebox("selected", "ProjectList", style_tree_selected);
  599. p_theme->set_stylebox("focus", "ProjectList", p_config.button_style_focus);
  600. p_theme->set_color(SceneStringName(font_color), "ProjectList", p_config.font_color);
  601. p_theme->set_color("guide_color", "ProjectList", guide_color);
  602. }
  603. // ItemList.
  604. {
  605. Ref<StyleBoxFlat> style_itemlist_bg = p_config.base_style->duplicate();
  606. style_itemlist_bg->set_content_margin_all(p_config.separation_margin);
  607. style_itemlist_bg->set_bg_color(p_config.dark_color_1);
  608. if (p_config.draw_extra_borders) {
  609. style_itemlist_bg->set_border_width_all(Math::round(EDSCALE));
  610. style_itemlist_bg->set_border_color(p_config.extra_border_color_2);
  611. } else {
  612. style_itemlist_bg->set_border_width_all(p_config.border_width);
  613. style_itemlist_bg->set_border_color(p_config.dark_color_3);
  614. }
  615. Ref<StyleBoxFlat> style_itemlist_cursor = p_config.base_style->duplicate();
  616. style_itemlist_cursor->set_draw_center(false);
  617. style_itemlist_cursor->set_border_width_all(MAX(1 * EDSCALE, p_config.border_width));
  618. style_itemlist_cursor->set_border_color(p_config.highlight_color);
  619. Ref<StyleBoxFlat> style_itemlist_hover = style_tree_selected->duplicate();
  620. style_itemlist_hover->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 0.3));
  621. style_itemlist_hover->set_border_width_all(0);
  622. Ref<StyleBoxFlat> style_itemlist_hover_selected = style_tree_selected->duplicate();
  623. style_itemlist_hover_selected->set_bg_color(p_config.highlight_color * Color(1, 1, 1, 1.2));
  624. style_itemlist_hover_selected->set_border_width_all(0);
  625. p_theme->set_stylebox(SceneStringName(panel), "ItemList", style_itemlist_bg);
  626. p_theme->set_stylebox("focus", "ItemList", p_config.button_style_focus);
  627. p_theme->set_stylebox("cursor", "ItemList", style_itemlist_cursor);
  628. p_theme->set_stylebox("cursor_unfocused", "ItemList", style_itemlist_cursor);
  629. p_theme->set_stylebox("selected_focus", "ItemList", style_tree_focus);
  630. p_theme->set_stylebox("selected", "ItemList", style_tree_selected);
  631. p_theme->set_stylebox("hovered", "ItemList", style_itemlist_hover);
  632. p_theme->set_stylebox("hovered_selected", "ItemList", style_itemlist_hover_selected);
  633. p_theme->set_stylebox("hovered_selected_focus", "ItemList", style_itemlist_hover_selected);
  634. p_theme->set_color(SceneStringName(font_color), "ItemList", p_config.font_color);
  635. p_theme->set_color("font_hovered_color", "ItemList", p_config.mono_color_font);
  636. p_theme->set_color("font_hovered_selected_color", "ItemList", p_config.mono_color_font);
  637. p_theme->set_color("font_selected_color", "ItemList", p_config.mono_color_font);
  638. p_theme->set_color("font_outline_color", "ItemList", p_config.font_outline_color);
  639. p_theme->set_color("guide_color", "ItemList", Color(1, 1, 1, 0));
  640. p_theme->set_constant("v_separation", "ItemList", p_config.forced_even_separation * EDSCALE);
  641. p_theme->set_constant("h_separation", "ItemList", (p_config.increased_margin + 2) * EDSCALE);
  642. p_theme->set_constant("icon_margin", "ItemList", (p_config.increased_margin + 2) * EDSCALE);
  643. p_theme->set_constant(SceneStringName(line_separation), "ItemList", p_config.separation_margin);
  644. p_theme->set_constant("outline_size", "ItemList", 0);
  645. }
  646. }
  647. // TabBar & TabContainer.
  648. {
  649. Ref<StyleBoxFlat> style_tab_base = p_config.button_style->duplicate();
  650. style_tab_base->set_border_width_all(0);
  651. // Don't round the top corners to avoid creating a small blank space between the tabs and the main panel.
  652. // This also makes the top highlight look better.
  653. style_tab_base->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  654. style_tab_base->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  655. // When using a border width greater than 0, visually line up the left of the selected tab with the underlying panel.
  656. style_tab_base->set_expand_margin(SIDE_LEFT, -p_config.border_width);
  657. style_tab_base->set_content_margin(SIDE_LEFT, p_config.widget_margin.x + 5 * EDSCALE);
  658. style_tab_base->set_content_margin(SIDE_RIGHT, p_config.widget_margin.x + 5 * EDSCALE);
  659. style_tab_base->set_content_margin(SIDE_BOTTOM, p_config.widget_margin.y);
  660. style_tab_base->set_content_margin(SIDE_TOP, p_config.widget_margin.y);
  661. Ref<StyleBoxFlat> style_tab_selected = style_tab_base->duplicate();
  662. style_tab_selected->set_bg_color(p_config.base_color);
  663. // Add a highlight line at the top of the selected tab.
  664. style_tab_selected->set_border_width(SIDE_TOP, Math::round(2 * EDSCALE));
  665. // Make the highlight line prominent, but not too prominent as to not be distracting.
  666. Color tab_highlight = p_config.dark_color_2.lerp(p_config.accent_color, 0.75);
  667. style_tab_selected->set_border_color(tab_highlight);
  668. style_tab_selected->set_corner_radius_all(0);
  669. Ref<StyleBoxFlat> style_tab_hovered = style_tab_base->duplicate();
  670. style_tab_hovered->set_bg_color(p_config.dark_color_1.lerp(p_config.base_color, 0.4));
  671. // Hovered tab has a subtle highlight between normal and selected states.
  672. style_tab_hovered->set_corner_radius_all(0);
  673. Ref<StyleBoxFlat> style_tab_unselected = style_tab_base->duplicate();
  674. style_tab_unselected->set_expand_margin(SIDE_BOTTOM, 0);
  675. style_tab_unselected->set_bg_color(p_config.dark_color_1);
  676. // Add some spacing between unselected tabs to make them easier to distinguish from each other
  677. style_tab_unselected->set_border_color(Color(0, 0, 0, 0));
  678. Ref<StyleBoxFlat> style_tab_disabled = style_tab_base->duplicate();
  679. style_tab_disabled->set_expand_margin(SIDE_BOTTOM, 0);
  680. style_tab_disabled->set_bg_color(p_config.disabled_bg_color);
  681. style_tab_disabled->set_border_color(p_config.disabled_bg_color);
  682. Ref<StyleBoxFlat> style_tab_focus = p_config.button_style_focus->duplicate();
  683. Ref<StyleBoxFlat> style_tabbar_background = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 0, 0, 0, 0, p_config.corner_radius);
  684. style_tabbar_background->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  685. style_tabbar_background->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  686. p_theme->set_stylebox("tabbar_background", "TabContainer", style_tabbar_background);
  687. p_theme->set_stylebox(SceneStringName(panel), "TabContainer", p_config.tab_container_style);
  688. p_theme->set_stylebox("tab_selected", "TabContainer", style_tab_selected);
  689. p_theme->set_stylebox("tab_hovered", "TabContainer", style_tab_hovered);
  690. p_theme->set_stylebox("tab_unselected", "TabContainer", style_tab_unselected);
  691. p_theme->set_stylebox("tab_disabled", "TabContainer", style_tab_disabled);
  692. p_theme->set_stylebox("tab_focus", "TabContainer", style_tab_focus);
  693. p_theme->set_stylebox("tab_selected", "TabBar", style_tab_selected);
  694. p_theme->set_stylebox("tab_hovered", "TabBar", style_tab_hovered);
  695. p_theme->set_stylebox("tab_unselected", "TabBar", style_tab_unselected);
  696. p_theme->set_stylebox("tab_disabled", "TabBar", style_tab_disabled);
  697. p_theme->set_stylebox("tab_focus", "TabBar", style_tab_focus);
  698. p_theme->set_stylebox("button_pressed", "TabBar", p_config.panel_container_style);
  699. p_theme->set_stylebox("button_highlight", "TabBar", p_config.panel_container_style);
  700. p_theme->set_color("font_selected_color", "TabContainer", p_config.font_color);
  701. p_theme->set_color("font_hovered_color", "TabContainer", p_config.font_color);
  702. p_theme->set_color("font_unselected_color", "TabContainer", p_config.font_disabled_color);
  703. p_theme->set_color("font_outline_color", "TabContainer", p_config.font_outline_color);
  704. p_theme->set_color("font_selected_color", "TabBar", p_config.font_color);
  705. p_theme->set_color("font_hovered_color", "TabBar", p_config.font_color);
  706. p_theme->set_color("font_unselected_color", "TabBar", p_config.font_disabled_color);
  707. p_theme->set_color("font_outline_color", "TabBar", p_config.font_outline_color);
  708. p_theme->set_color("drop_mark_color", "TabContainer", tab_highlight);
  709. p_theme->set_color("drop_mark_color", "TabBar", tab_highlight);
  710. Color icon_color = Color(1, 1, 1);
  711. p_theme->set_color("icon_selected_color", "TabContainer", icon_color);
  712. p_theme->set_color("icon_hovered_color", "TabContainer", icon_color);
  713. p_theme->set_color("icon_unselected_color", "TabContainer", icon_color);
  714. p_theme->set_color("icon_selected_color", "TabBar", icon_color);
  715. p_theme->set_color("icon_hovered_color", "TabBar", icon_color);
  716. p_theme->set_color("icon_unselected_color", "TabBar", icon_color);
  717. p_theme->set_icon("menu", "TabContainer", p_theme->get_icon(SNAME("GuiTabMenu"), EditorStringName(EditorIcons)));
  718. p_theme->set_icon("menu_highlight", "TabContainer", p_theme->get_icon(SNAME("GuiTabMenuHl"), EditorStringName(EditorIcons)));
  719. p_theme->set_icon("close", "TabBar", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
  720. p_theme->set_icon("increment", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowRight"), EditorStringName(EditorIcons)));
  721. p_theme->set_icon("decrement", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowLeft"), EditorStringName(EditorIcons)));
  722. p_theme->set_icon("increment", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowRight"), EditorStringName(EditorIcons)));
  723. p_theme->set_icon("decrement", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowLeft"), EditorStringName(EditorIcons)));
  724. p_theme->set_icon("increment_highlight", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowRightHl"), EditorStringName(EditorIcons)));
  725. p_theme->set_icon("decrement_highlight", "TabBar", p_theme->get_icon(SNAME("GuiScrollArrowLeftHl"), EditorStringName(EditorIcons)));
  726. p_theme->set_icon("increment_highlight", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowRightHl"), EditorStringName(EditorIcons)));
  727. p_theme->set_icon("decrement_highlight", "TabContainer", p_theme->get_icon(SNAME("GuiScrollArrowLeftHl"), EditorStringName(EditorIcons)));
  728. p_theme->set_icon("drop_mark", "TabContainer", p_theme->get_icon(SNAME("GuiTabDropMark"), EditorStringName(EditorIcons)));
  729. p_theme->set_icon("drop_mark", "TabBar", p_theme->get_icon(SNAME("GuiTabDropMark"), EditorStringName(EditorIcons)));
  730. p_theme->set_constant("side_margin", "TabContainer", 0);
  731. p_theme->set_constant("outline_size", "TabContainer", 0);
  732. p_theme->set_constant("h_separation", "TabBar", 4 * EDSCALE);
  733. p_theme->set_constant("outline_size", "TabBar", 0);
  734. p_theme->set_constant("hover_switch_wait_msec", "TabBar", p_config.dragging_hover_wait_msec);
  735. }
  736. // Separators.
  737. p_theme->set_stylebox("separator", "HSeparator", EditorThemeManager::make_line_stylebox(p_config.separator_color, MAX(Math::round(EDSCALE), p_config.border_width)));
  738. p_theme->set_stylebox("separator", "VSeparator", EditorThemeManager::make_line_stylebox(p_config.separator_color, MAX(Math::round(EDSCALE), p_config.border_width), 0, 0, true));
  739. // LineEdit & TextEdit.
  740. {
  741. Ref<StyleBoxFlat> text_editor_style = p_config.button_style->duplicate();
  742. // Don't round the bottom corners to make the line look sharper.
  743. text_editor_style->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  744. text_editor_style->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  745. if (p_config.draw_extra_borders) {
  746. text_editor_style->set_border_width_all(Math::round(EDSCALE));
  747. text_editor_style->set_border_color(p_config.extra_border_color_1);
  748. } else {
  749. // Add a bottom line to make LineEdits more visible, especially in sectioned inspectors
  750. // such as the Project Settings.
  751. text_editor_style->set_border_width(SIDE_BOTTOM, Math::round(2 * EDSCALE));
  752. text_editor_style->set_border_color(p_config.dark_color_2);
  753. }
  754. Ref<StyleBoxFlat> text_editor_disabled_style = text_editor_style->duplicate();
  755. text_editor_disabled_style->set_border_color(p_config.disabled_border_color);
  756. text_editor_disabled_style->set_bg_color(p_config.disabled_bg_color);
  757. // LineEdit.
  758. p_theme->set_stylebox(CoreStringName(normal), "LineEdit", text_editor_style);
  759. p_theme->set_stylebox("focus", "LineEdit", p_config.button_style_focus);
  760. p_theme->set_stylebox("read_only", "LineEdit", text_editor_disabled_style);
  761. p_theme->set_icon("clear", "LineEdit", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
  762. p_theme->set_color(SceneStringName(font_color), "LineEdit", p_config.font_color);
  763. p_theme->set_color("font_selected_color", "LineEdit", p_config.mono_color_font);
  764. p_theme->set_color("font_uneditable_color", "LineEdit", p_config.font_readonly_color);
  765. p_theme->set_color("font_placeholder_color", "LineEdit", p_config.font_placeholder_color);
  766. p_theme->set_color("font_outline_color", "LineEdit", p_config.font_outline_color);
  767. p_theme->set_color("caret_color", "LineEdit", p_config.font_color);
  768. p_theme->set_color("selection_color", "LineEdit", p_config.selection_color);
  769. p_theme->set_color("clear_button_color", "LineEdit", p_config.font_color);
  770. p_theme->set_color("clear_button_color_pressed", "LineEdit", p_config.accent_color);
  771. p_theme->set_constant("minimum_character_width", "LineEdit", 4);
  772. p_theme->set_constant("outline_size", "LineEdit", 0);
  773. p_theme->set_constant("caret_width", "LineEdit", 1);
  774. // TextEdit.
  775. p_theme->set_stylebox(CoreStringName(normal), "TextEdit", text_editor_style);
  776. p_theme->set_stylebox("focus", "TextEdit", p_config.button_style_focus);
  777. p_theme->set_stylebox("read_only", "TextEdit", text_editor_disabled_style);
  778. p_theme->set_icon("tab", "TextEdit", p_theme->get_icon(SNAME("GuiTab"), EditorStringName(EditorIcons)));
  779. p_theme->set_icon("space", "TextEdit", p_theme->get_icon(SNAME("GuiSpace"), EditorStringName(EditorIcons)));
  780. p_theme->set_color(SceneStringName(font_color), "TextEdit", p_config.font_color);
  781. p_theme->set_color("font_readonly_color", "TextEdit", p_config.font_readonly_color);
  782. p_theme->set_color("font_placeholder_color", "TextEdit", p_config.font_placeholder_color);
  783. p_theme->set_color("font_outline_color", "TextEdit", p_config.font_outline_color);
  784. p_theme->set_color("caret_color", "TextEdit", p_config.font_color);
  785. p_theme->set_color("selection_color", "TextEdit", p_config.selection_color);
  786. p_theme->set_constant("line_spacing", "TextEdit", 4 * EDSCALE);
  787. p_theme->set_constant("outline_size", "TextEdit", 0);
  788. p_theme->set_constant("caret_width", "TextEdit", 1);
  789. }
  790. // Containers.
  791. {
  792. p_theme->set_constant("separation", "BoxContainer", p_config.separation_margin);
  793. p_theme->set_constant("separation", "HBoxContainer", p_config.separation_margin);
  794. p_theme->set_constant("separation", "VBoxContainer", p_config.separation_margin);
  795. p_theme->set_constant("margin_left", "MarginContainer", 0);
  796. p_theme->set_constant("margin_top", "MarginContainer", 0);
  797. p_theme->set_constant("margin_right", "MarginContainer", 0);
  798. p_theme->set_constant("margin_bottom", "MarginContainer", 0);
  799. p_theme->set_constant("h_separation", "GridContainer", p_config.separation_margin);
  800. p_theme->set_constant("v_separation", "GridContainer", p_config.separation_margin);
  801. p_theme->set_constant("h_separation", "FlowContainer", p_config.separation_margin);
  802. p_theme->set_constant("v_separation", "FlowContainer", p_config.separation_margin);
  803. p_theme->set_constant("h_separation", "HFlowContainer", p_config.separation_margin);
  804. p_theme->set_constant("v_separation", "HFlowContainer", p_config.separation_margin);
  805. p_theme->set_constant("h_separation", "VFlowContainer", p_config.separation_margin);
  806. p_theme->set_constant("v_separation", "VFlowContainer", p_config.separation_margin);
  807. // SplitContainer.
  808. p_theme->set_icon("h_grabber", "SplitContainer", p_theme->get_icon(SNAME("GuiHsplitter"), EditorStringName(EditorIcons)));
  809. p_theme->set_icon("v_grabber", "SplitContainer", p_theme->get_icon(SNAME("GuiVsplitter"), EditorStringName(EditorIcons)));
  810. p_theme->set_icon("grabber", "VSplitContainer", p_theme->get_icon(SNAME("GuiVsplitter"), EditorStringName(EditorIcons)));
  811. p_theme->set_icon("grabber", "HSplitContainer", p_theme->get_icon(SNAME("GuiHsplitter"), EditorStringName(EditorIcons)));
  812. p_theme->set_constant("separation", "SplitContainer", p_config.separation_margin);
  813. p_theme->set_constant("separation", "HSplitContainer", p_config.separation_margin);
  814. p_theme->set_constant("separation", "VSplitContainer", p_config.separation_margin);
  815. p_theme->set_constant("minimum_grab_thickness", "SplitContainer", p_config.increased_margin * EDSCALE);
  816. p_theme->set_constant("minimum_grab_thickness", "HSplitContainer", p_config.increased_margin * EDSCALE);
  817. p_theme->set_constant("minimum_grab_thickness", "VSplitContainer", p_config.increased_margin * EDSCALE);
  818. // GridContainer.
  819. p_theme->set_constant("v_separation", "GridContainer", Math::round(p_config.widget_margin.y - 2 * EDSCALE));
  820. // FoldableContainer
  821. Ref<StyleBoxFlat> foldable_container_title = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.darkened(0.125), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
  822. foldable_container_title->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  823. foldable_container_title->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  824. p_theme->set_stylebox("title_panel", "FoldableContainer", foldable_container_title);
  825. Ref<StyleBoxFlat> foldable_container_hover = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.lerp(p_config.base_color, 0.4), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
  826. foldable_container_hover->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  827. foldable_container_hover->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  828. p_theme->set_stylebox("title_hover_panel", "FoldableContainer", foldable_container_hover);
  829. p_theme->set_stylebox("title_collapsed_panel", "FoldableContainer", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.darkened(0.125), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
  830. p_theme->set_stylebox("title_collapsed_hover_panel", "FoldableContainer", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.lerp(p_config.base_color, 0.4), p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
  831. Ref<StyleBoxFlat> foldable_container_panel = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin);
  832. foldable_container_panel->set_corner_radius(CORNER_TOP_LEFT, 0);
  833. foldable_container_panel->set_corner_radius(CORNER_TOP_RIGHT, 0);
  834. p_theme->set_stylebox(SceneStringName(panel), "FoldableContainer", foldable_container_panel);
  835. p_theme->set_stylebox("focus", "FoldableContainer", p_config.button_style_focus);
  836. p_theme->set_font(SceneStringName(font), "FoldableContainer", p_theme->get_font(SceneStringName(font), SNAME("HeaderSmall")));
  837. p_theme->set_font_size(SceneStringName(font_size), "FoldableContainer", p_theme->get_font_size(SceneStringName(font_size), SNAME("HeaderSmall")));
  838. p_theme->set_color(SceneStringName(font_color), "FoldableContainer", p_config.font_color);
  839. p_theme->set_color("hover_font_color", "FoldableContainer", p_config.font_hover_color);
  840. p_theme->set_color("collapsed_font_color", "FoldableContainer", p_config.font_pressed_color);
  841. p_theme->set_color("font_outline_color", "FoldableContainer", p_config.font_outline_color);
  842. p_theme->set_icon("expanded_arrow", "FoldableContainer", p_theme->get_icon(SNAME("GuiTreeArrowDown"), EditorStringName(EditorIcons)));
  843. p_theme->set_icon("expanded_arrow_mirrored", "FoldableContainer", p_theme->get_icon(SNAME("GuiArrowUp"), EditorStringName(EditorIcons)));
  844. p_theme->set_icon("folded_arrow", "FoldableContainer", p_theme->get_icon(SNAME("GuiTreeArrowRight"), EditorStringName(EditorIcons)));
  845. p_theme->set_icon("folded_arrow_mirrored", "FoldableContainer", p_theme->get_icon(SNAME("GuiTreeArrowLeft"), EditorStringName(EditorIcons)));
  846. p_theme->set_constant("outline_size", "FoldableContainer", 0);
  847. p_theme->set_constant("h_separation", "FoldableContainer", p_config.separation_margin);
  848. }
  849. // Window and dialogs.
  850. {
  851. // Window.
  852. p_theme->set_stylebox("embedded_border", "Window", p_config.window_style);
  853. p_theme->set_stylebox("embedded_unfocused_border", "Window", p_config.window_style);
  854. p_theme->set_color("title_color", "Window", p_config.font_color);
  855. p_theme->set_icon("close", "Window", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
  856. p_theme->set_icon("close_pressed", "Window", p_theme->get_icon(SNAME("GuiClose"), EditorStringName(EditorIcons)));
  857. p_theme->set_constant("close_h_offset", "Window", 22 * EDSCALE);
  858. p_theme->set_constant("close_v_offset", "Window", 20 * EDSCALE);
  859. p_theme->set_constant("title_height", "Window", 24 * EDSCALE);
  860. p_theme->set_constant("resize_margin", "Window", 4 * EDSCALE);
  861. p_theme->set_font("title_font", "Window", p_theme->get_font(SNAME("title"), EditorStringName(EditorFonts)));
  862. p_theme->set_font_size("title_font_size", "Window", p_theme->get_font_size(SNAME("title_size"), EditorStringName(EditorFonts)));
  863. // AcceptDialog.
  864. p_theme->set_stylebox(SceneStringName(panel), "AcceptDialog", p_config.dialog_style);
  865. p_theme->set_constant("buttons_separation", "AcceptDialog", 8 * EDSCALE);
  866. // Make buttons with short texts such as "OK" easier to click/tap.
  867. p_theme->set_constant("buttons_min_width", "AcceptDialog", p_config.dialogs_buttons_min_size.x * EDSCALE);
  868. p_theme->set_constant("buttons_min_height", "AcceptDialog", p_config.dialogs_buttons_min_size.y * EDSCALE);
  869. // FileDialog.
  870. p_theme->set_icon("folder", "FileDialog", p_theme->get_icon("Folder", EditorStringName(EditorIcons)));
  871. p_theme->set_icon("parent_folder", "FileDialog", p_theme->get_icon("ArrowUp", EditorStringName(EditorIcons)));
  872. p_theme->set_icon("back_folder", "FileDialog", p_theme->get_icon("Back", EditorStringName(EditorIcons)));
  873. p_theme->set_icon("forward_folder", "FileDialog", p_theme->get_icon("Forward", EditorStringName(EditorIcons)));
  874. p_theme->set_icon("reload", "FileDialog", p_theme->get_icon("Reload", EditorStringName(EditorIcons)));
  875. p_theme->set_icon("toggle_hidden", "FileDialog", p_theme->get_icon("GuiVisibilityVisible", EditorStringName(EditorIcons)));
  876. p_theme->set_icon("toggle_filename_filter", "FileDialog", p_theme->get_icon("FilenameFilter", EditorStringName(EditorIcons)));
  877. p_theme->set_icon("thumbnail_mode", "FileDialog", p_theme->get_icon("FileThumbnail", EditorStringName(EditorIcons)));
  878. p_theme->set_icon("list_mode", "FileDialog", p_theme->get_icon("FileList", EditorStringName(EditorIcons)));
  879. p_theme->set_icon("sort", "FileDialog", p_theme->get_icon("Sort", EditorStringName(EditorIcons)));
  880. p_theme->set_icon("favorite", "FileDialog", p_theme->get_icon("Favorites", EditorStringName(EditorIcons)));
  881. p_theme->set_icon("favorite_up", "FileDialog", p_theme->get_icon("MoveUp", EditorStringName(EditorIcons)));
  882. p_theme->set_icon("favorite_down", "FileDialog", p_theme->get_icon("MoveDown", EditorStringName(EditorIcons)));
  883. p_theme->set_icon("create_folder", "FileDialog", p_theme->get_icon("FolderCreate", EditorStringName(EditorIcons)));
  884. // Use a different color for folder icons to make them easier to distinguish from files.
  885. // On a light theme, the icon will be dark, so we need to lighten it before blending it with the accent color.
  886. p_theme->set_color("folder_icon_color", "FileDialog", (p_config.dark_icon_and_font ? Color(1, 1, 1) : Color(4.25, 4.25, 4.25)).lerp(p_config.accent_color, 0.7));
  887. p_theme->set_color("file_disabled_color", "FileDialog", p_config.font_disabled_color);
  888. p_theme->set_constant("thumbnail_size", "EditorFileDialog", p_config.thumb_size);
  889. // PopupDialog.
  890. p_theme->set_stylebox(SceneStringName(panel), "PopupDialog", p_config.popup_style);
  891. // PopupMenu.
  892. {
  893. Ref<StyleBoxFlat> style_popup_menu = p_config.popup_border_style->duplicate();
  894. // Use 1 pixel for the sides, since if 0 is used, the highlight of hovered items is drawn
  895. // on top of the popup border. This causes a 'gap' in the panel border when an item is highlighted,
  896. // and it looks weird. 1px solves this.
  897. style_popup_menu->set_content_margin_individual(Math::round(EDSCALE), 2 * EDSCALE, Math::round(EDSCALE), 2 * EDSCALE);
  898. p_theme->set_stylebox(SceneStringName(panel), "PopupMenu", style_popup_menu);
  899. Ref<StyleBoxFlat> style_menu_hover = p_config.button_style_hover->duplicate();
  900. // Don't use rounded corners for hover highlights since the StyleBox touches the PopupMenu's edges.
  901. style_menu_hover->set_corner_radius_all(0);
  902. p_theme->set_stylebox(SceneStringName(hover), "PopupMenu", style_menu_hover);
  903. Ref<StyleBoxLine> style_popup_separator(memnew(StyleBoxLine));
  904. style_popup_separator->set_color(p_config.separator_color);
  905. style_popup_separator->set_grow_begin(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
  906. style_popup_separator->set_grow_end(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
  907. style_popup_separator->set_thickness(MAX(Math::round(EDSCALE), p_config.border_width));
  908. Ref<StyleBoxLine> style_popup_labeled_separator_left(memnew(StyleBoxLine));
  909. style_popup_labeled_separator_left->set_grow_begin(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
  910. style_popup_labeled_separator_left->set_color(p_config.separator_color);
  911. style_popup_labeled_separator_left->set_thickness(MAX(Math::round(EDSCALE), p_config.border_width));
  912. Ref<StyleBoxLine> style_popup_labeled_separator_right(memnew(StyleBoxLine));
  913. style_popup_labeled_separator_right->set_grow_end(Math::round(EDSCALE) - MAX(Math::round(EDSCALE), p_config.border_width));
  914. style_popup_labeled_separator_right->set_color(p_config.separator_color);
  915. style_popup_labeled_separator_right->set_thickness(MAX(Math::round(EDSCALE), p_config.border_width));
  916. p_theme->set_stylebox("separator", "PopupMenu", style_popup_separator);
  917. p_theme->set_stylebox("labeled_separator_left", "PopupMenu", style_popup_labeled_separator_left);
  918. p_theme->set_stylebox("labeled_separator_right", "PopupMenu", style_popup_labeled_separator_right);
  919. p_theme->set_color(SceneStringName(font_color), "PopupMenu", p_config.font_color);
  920. p_theme->set_color("font_hover_color", "PopupMenu", p_config.font_hover_color);
  921. p_theme->set_color("font_accelerator_color", "PopupMenu", p_config.font_disabled_color);
  922. p_theme->set_color("font_disabled_color", "PopupMenu", p_config.font_disabled_color);
  923. p_theme->set_color("font_separator_color", "PopupMenu", p_config.font_disabled_color);
  924. p_theme->set_color("font_outline_color", "PopupMenu", p_config.font_outline_color);
  925. p_theme->set_icon("checked", "PopupMenu", p_theme->get_icon(SNAME("GuiChecked"), EditorStringName(EditorIcons)));
  926. p_theme->set_icon("unchecked", "PopupMenu", p_theme->get_icon(SNAME("GuiUnchecked"), EditorStringName(EditorIcons)));
  927. p_theme->set_icon("radio_checked", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioChecked"), EditorStringName(EditorIcons)));
  928. p_theme->set_icon("radio_unchecked", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioUnchecked"), EditorStringName(EditorIcons)));
  929. p_theme->set_icon("checked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiCheckedDisabled"), EditorStringName(EditorIcons)));
  930. p_theme->set_icon("unchecked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiUncheckedDisabled"), EditorStringName(EditorIcons)));
  931. p_theme->set_icon("radio_checked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioCheckedDisabled"), EditorStringName(EditorIcons)));
  932. p_theme->set_icon("radio_unchecked_disabled", "PopupMenu", p_theme->get_icon(SNAME("GuiRadioUncheckedDisabled"), EditorStringName(EditorIcons)));
  933. p_theme->set_icon("submenu", "PopupMenu", p_theme->get_icon(SNAME("ArrowRight"), EditorStringName(EditorIcons)));
  934. p_theme->set_icon("submenu_mirrored", "PopupMenu", p_theme->get_icon(SNAME("ArrowLeft"), EditorStringName(EditorIcons)));
  935. int v_sep = (p_config.enable_touch_optimizations ? 12 : p_config.forced_even_separation) * EDSCALE;
  936. p_theme->set_constant("v_separation", "PopupMenu", v_sep);
  937. p_theme->set_constant("outline_size", "PopupMenu", 0);
  938. p_theme->set_constant("item_start_padding", "PopupMenu", p_config.separation_margin);
  939. p_theme->set_constant("item_end_padding", "PopupMenu", p_config.separation_margin);
  940. }
  941. }
  942. // Sliders and scrollbars.
  943. {
  944. Ref<Texture2D> empty_icon = memnew(ImageTexture);
  945. // HScrollBar.
  946. if (p_config.enable_touch_optimizations) {
  947. p_theme->set_stylebox("scroll", "HScrollBar", EditorThemeManager::make_line_stylebox(p_config.separator_color, 50));
  948. } else {
  949. p_theme->set_stylebox("scroll", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, -5, 1, -5, 1));
  950. }
  951. p_theme->set_stylebox("scroll_focus", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
  952. p_theme->set_stylebox("grabber", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabber"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
  953. p_theme->set_stylebox("grabber_highlight", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberHl"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
  954. p_theme->set_stylebox("grabber_pressed", "HScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberPressed"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
  955. p_theme->set_icon("increment", "HScrollBar", empty_icon);
  956. p_theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
  957. p_theme->set_icon("increment_pressed", "HScrollBar", empty_icon);
  958. p_theme->set_icon("decrement", "HScrollBar", empty_icon);
  959. p_theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
  960. p_theme->set_icon("decrement_pressed", "HScrollBar", empty_icon);
  961. // VScrollBar.
  962. if (p_config.enable_touch_optimizations) {
  963. p_theme->set_stylebox("scroll", "VScrollBar", EditorThemeManager::make_line_stylebox(p_config.separator_color, 50, 1, 1, true));
  964. } else {
  965. p_theme->set_stylebox("scroll", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, -5, 1, -5));
  966. }
  967. p_theme->set_stylebox("scroll_focus", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollBg"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
  968. p_theme->set_stylebox("grabber", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabber"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
  969. p_theme->set_stylebox("grabber_highlight", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberHl"), EditorStringName(EditorIcons)), 5, 5, 5, 5, 1, 1, 1, 1));
  970. p_theme->set_stylebox("grabber_pressed", "VScrollBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiScrollGrabberPressed"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 1, 1, 1, 1));
  971. p_theme->set_icon("increment", "VScrollBar", empty_icon);
  972. p_theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
  973. p_theme->set_icon("increment_pressed", "VScrollBar", empty_icon);
  974. p_theme->set_icon("decrement", "VScrollBar", empty_icon);
  975. p_theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
  976. p_theme->set_icon("decrement_pressed", "VScrollBar", empty_icon);
  977. // Slider
  978. const int background_margin = MAX(2, p_config.base_margin / 2);
  979. // HSlider.
  980. p_theme->set_icon("grabber_highlight", "HSlider", p_theme->get_icon(SNAME("GuiSliderGrabberHl"), EditorStringName(EditorIcons)));
  981. p_theme->set_icon("grabber", "HSlider", p_theme->get_icon(SNAME("GuiSliderGrabber"), EditorStringName(EditorIcons)));
  982. p_theme->set_stylebox("slider", "HSlider", EditorThemeManager::make_flat_stylebox(p_config.dark_color_3, 0, background_margin, 0, background_margin, p_config.corner_radius));
  983. p_theme->set_stylebox("grabber_area", "HSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, 0, background_margin, 0, background_margin, p_config.corner_radius));
  984. p_theme->set_stylebox("grabber_area_highlight", "HSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, 0, background_margin, 0, background_margin));
  985. p_theme->set_constant("center_grabber", "HSlider", 0);
  986. p_theme->set_constant("grabber_offset", "HSlider", 0);
  987. // VSlider.
  988. p_theme->set_icon("grabber", "VSlider", p_theme->get_icon(SNAME("GuiSliderGrabber"), EditorStringName(EditorIcons)));
  989. p_theme->set_icon("grabber_highlight", "VSlider", p_theme->get_icon(SNAME("GuiSliderGrabberHl"), EditorStringName(EditorIcons)));
  990. p_theme->set_stylebox("slider", "VSlider", EditorThemeManager::make_flat_stylebox(p_config.dark_color_3, background_margin, 0, background_margin, 0, p_config.corner_radius));
  991. p_theme->set_stylebox("grabber_area", "VSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, background_margin, 0, background_margin, 0, p_config.corner_radius));
  992. p_theme->set_stylebox("grabber_area_highlight", "VSlider", EditorThemeManager::make_flat_stylebox(p_config.contrast_color_1, background_margin, 0, background_margin, 0));
  993. p_theme->set_constant("center_grabber", "VSlider", 0);
  994. p_theme->set_constant("grabber_offset", "VSlider", 0);
  995. }
  996. // Labels.
  997. {
  998. // RichTextLabel.
  999. p_theme->set_stylebox(CoreStringName(normal), "RichTextLabel", p_config.tree_panel_style);
  1000. p_theme->set_stylebox("focus", "RichTextLabel", EditorThemeManager::make_empty_stylebox());
  1001. p_theme->set_color("default_color", "RichTextLabel", p_config.font_color);
  1002. p_theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
  1003. p_theme->set_color("font_outline_color", "RichTextLabel", p_config.font_outline_color);
  1004. p_theme->set_color("selection_color", "RichTextLabel", p_config.selection_color);
  1005. p_theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * EDSCALE);
  1006. p_theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * EDSCALE);
  1007. p_theme->set_constant("shadow_outline_size", "RichTextLabel", 1 * EDSCALE);
  1008. p_theme->set_constant("outline_size", "RichTextLabel", 0);
  1009. // Label.
  1010. p_theme->set_stylebox(CoreStringName(normal), "Label", p_config.base_empty_style);
  1011. p_theme->set_stylebox("focus", "Label", p_config.button_style_focus);
  1012. p_theme->set_color(SceneStringName(font_color), "Label", p_config.font_color);
  1013. p_theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
  1014. p_theme->set_color("font_outline_color", "Label", p_config.font_outline_color);
  1015. p_theme->set_constant("shadow_offset_x", "Label", 1 * EDSCALE);
  1016. p_theme->set_constant("shadow_offset_y", "Label", 1 * EDSCALE);
  1017. p_theme->set_constant("shadow_outline_size", "Label", 1 * EDSCALE);
  1018. p_theme->set_constant("line_spacing", "Label", 3 * EDSCALE);
  1019. p_theme->set_constant("outline_size", "Label", 0);
  1020. }
  1021. // SpinBox.
  1022. {
  1023. Ref<Texture2D> empty_icon = memnew(ImageTexture);
  1024. p_theme->set_icon("updown", "SpinBox", empty_icon);
  1025. p_theme->set_icon("up", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
  1026. p_theme->set_icon("up_hover", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
  1027. p_theme->set_icon("up_pressed", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
  1028. p_theme->set_icon("up_disabled", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxUp"), EditorStringName(EditorIcons)));
  1029. p_theme->set_icon("down", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
  1030. p_theme->set_icon("down_hover", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
  1031. p_theme->set_icon("down_pressed", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
  1032. p_theme->set_icon("down_disabled", "SpinBox", p_theme->get_icon(SNAME("GuiSpinboxDown"), EditorStringName(EditorIcons)));
  1033. p_theme->set_stylebox("up_background", "SpinBox", EditorThemeManager::make_empty_stylebox());
  1034. p_theme->set_stylebox("up_background_hovered", "SpinBox", p_config.button_style_hover);
  1035. p_theme->set_stylebox("up_background_pressed", "SpinBox", p_config.button_style_pressed);
  1036. p_theme->set_stylebox("up_background_disabled", "SpinBox", EditorThemeManager::make_empty_stylebox());
  1037. p_theme->set_stylebox("down_background", "SpinBox", EditorThemeManager::make_empty_stylebox());
  1038. p_theme->set_stylebox("down_background_hovered", "SpinBox", p_config.button_style_hover);
  1039. p_theme->set_stylebox("down_background_pressed", "SpinBox", p_config.button_style_pressed);
  1040. p_theme->set_stylebox("down_background_disabled", "SpinBox", EditorThemeManager::make_empty_stylebox());
  1041. p_theme->set_color("up_icon_modulate", "SpinBox", p_config.font_color);
  1042. p_theme->set_color("up_hover_icon_modulate", "SpinBox", p_config.font_hover_color);
  1043. p_theme->set_color("up_pressed_icon_modulate", "SpinBox", p_config.font_pressed_color);
  1044. p_theme->set_color("up_disabled_icon_modulate", "SpinBox", p_config.font_disabled_color);
  1045. p_theme->set_color("down_icon_modulate", "SpinBox", p_config.font_color);
  1046. p_theme->set_color("down_hover_icon_modulate", "SpinBox", p_config.font_hover_color);
  1047. p_theme->set_color("down_pressed_icon_modulate", "SpinBox", p_config.font_pressed_color);
  1048. p_theme->set_color("down_disabled_icon_modulate", "SpinBox", p_config.font_disabled_color);
  1049. p_theme->set_stylebox("field_and_buttons_separator", "SpinBox", EditorThemeManager::make_empty_stylebox());
  1050. p_theme->set_stylebox("up_down_buttons_separator", "SpinBox", EditorThemeManager::make_empty_stylebox());
  1051. p_theme->set_constant("buttons_vertical_separation", "SpinBox", 0);
  1052. p_theme->set_constant("field_and_buttons_separation", "SpinBox", 2);
  1053. p_theme->set_constant("buttons_width", "SpinBox", 16);
  1054. #ifndef DISABLE_DEPRECATED
  1055. p_theme->set_constant("set_min_buttons_width_from_icons", "SpinBox", 1);
  1056. #endif
  1057. }
  1058. // ProgressBar.
  1059. p_theme->set_stylebox("background", "ProgressBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiProgressBar"), EditorStringName(EditorIcons)), 4, 4, 4, 4, 0, 0, 0, 0));
  1060. p_theme->set_stylebox("fill", "ProgressBar", EditorThemeManager::make_stylebox(p_theme->get_icon(SNAME("GuiProgressFill"), EditorStringName(EditorIcons)), 6, 6, 6, 6, 2, 1, 2, 1));
  1061. p_theme->set_color(SceneStringName(font_color), "ProgressBar", p_config.font_color);
  1062. p_theme->set_color("font_outline_color", "ProgressBar", p_config.font_outline_color);
  1063. p_theme->set_constant("outline_size", "ProgressBar", 0);
  1064. // GraphEdit and related nodes.
  1065. {
  1066. // GraphEdit.
  1067. p_theme->set_stylebox(SceneStringName(panel), "GraphEdit", p_config.tree_panel_style);
  1068. p_theme->set_stylebox("panel_focus", "GraphEdit", p_config.button_style_focus);
  1069. p_theme->set_stylebox("menu_panel", "GraphEdit", EditorThemeManager::make_flat_stylebox(p_config.dark_color_1 * Color(1, 1, 1, 0.6), 4, 2, 4, 2, 3));
  1070. float grid_base_brightness = p_config.dark_theme ? 1.0 : 0.0;
  1071. GraphEdit::GridPattern grid_pattern = (GraphEdit::GridPattern) int(EDITOR_GET("editors/visual_editors/grid_pattern"));
  1072. switch (grid_pattern) {
  1073. case GraphEdit::GRID_PATTERN_LINES:
  1074. p_theme->set_color("grid_major", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.10));
  1075. p_theme->set_color("grid_minor", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.05));
  1076. break;
  1077. case GraphEdit::GRID_PATTERN_DOTS:
  1078. p_theme->set_color("grid_major", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.07));
  1079. p_theme->set_color("grid_minor", "GraphEdit", Color(grid_base_brightness, grid_base_brightness, grid_base_brightness, 0.07));
  1080. break;
  1081. default:
  1082. WARN_PRINT("Unknown grid pattern.");
  1083. break;
  1084. }
  1085. p_theme->set_color("selection_fill", "GraphEdit", p_theme->get_color(SNAME("box_selection_fill_color"), EditorStringName(Editor)));
  1086. p_theme->set_color("selection_stroke", "GraphEdit", p_theme->get_color(SNAME("box_selection_stroke_color"), EditorStringName(Editor)));
  1087. p_theme->set_color("activity", "GraphEdit", p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0));
  1088. p_theme->set_color("connection_hover_tint_color", "GraphEdit", p_config.dark_theme ? Color(0, 0, 0, 0.3) : Color(1, 1, 1, 0.3));
  1089. p_theme->set_constant("connection_hover_thickness", "GraphEdit", 0);
  1090. p_theme->set_color("connection_valid_target_tint_color", "GraphEdit", p_config.dark_theme ? Color(1, 1, 1, 0.4) : Color(0, 0, 0, 0.4));
  1091. p_theme->set_color("connection_rim_color", "GraphEdit", p_config.tree_panel_style->get_bg_color());
  1092. p_theme->set_icon("zoom_out", "GraphEdit", p_theme->get_icon(SNAME("ZoomLess"), EditorStringName(EditorIcons)));
  1093. p_theme->set_icon("zoom_in", "GraphEdit", p_theme->get_icon(SNAME("ZoomMore"), EditorStringName(EditorIcons)));
  1094. p_theme->set_icon("zoom_reset", "GraphEdit", p_theme->get_icon(SNAME("ZoomReset"), EditorStringName(EditorIcons)));
  1095. p_theme->set_icon("grid_toggle", "GraphEdit", p_theme->get_icon(SNAME("GridToggle"), EditorStringName(EditorIcons)));
  1096. p_theme->set_icon("minimap_toggle", "GraphEdit", p_theme->get_icon(SNAME("GridMinimap"), EditorStringName(EditorIcons)));
  1097. p_theme->set_icon("snapping_toggle", "GraphEdit", p_theme->get_icon(SNAME("SnapGrid"), EditorStringName(EditorIcons)));
  1098. p_theme->set_icon("layout", "GraphEdit", p_theme->get_icon(SNAME("GridLayout"), EditorStringName(EditorIcons)));
  1099. // GraphEditMinimap.
  1100. {
  1101. Ref<StyleBoxFlat> style_minimap_bg = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 0, 0, 0, 0);
  1102. style_minimap_bg->set_border_color(p_config.dark_color_3);
  1103. style_minimap_bg->set_border_width_all(1);
  1104. p_theme->set_stylebox(SceneStringName(panel), "GraphEditMinimap", style_minimap_bg);
  1105. Ref<StyleBoxFlat> style_minimap_camera;
  1106. Ref<StyleBoxFlat> style_minimap_node;
  1107. if (p_config.dark_theme) {
  1108. style_minimap_camera = EditorThemeManager::make_flat_stylebox(Color(0.65, 0.65, 0.65, 0.2), 0, 0, 0, 0);
  1109. style_minimap_camera->set_border_color(Color(0.65, 0.65, 0.65, 0.45));
  1110. style_minimap_node = EditorThemeManager::make_flat_stylebox(Color(1, 1, 1), 0, 0, 0, 0);
  1111. } else {
  1112. style_minimap_camera = EditorThemeManager::make_flat_stylebox(Color(0.38, 0.38, 0.38, 0.2), 0, 0, 0, 0);
  1113. style_minimap_camera->set_border_color(Color(0.38, 0.38, 0.38, 0.45));
  1114. style_minimap_node = EditorThemeManager::make_flat_stylebox(Color(0, 0, 0), 0, 0, 0, 0);
  1115. }
  1116. style_minimap_camera->set_border_width_all(1);
  1117. style_minimap_node->set_anti_aliased(false);
  1118. p_theme->set_stylebox("camera", "GraphEditMinimap", style_minimap_camera);
  1119. p_theme->set_stylebox("node", "GraphEditMinimap", style_minimap_node);
  1120. const Color minimap_resizer_color = p_config.dark_theme ? Color(1, 1, 1, 0.65) : Color(0, 0, 0, 0.65);
  1121. p_theme->set_icon("resizer", "GraphEditMinimap", p_theme->get_icon(SNAME("GuiResizerTopLeft"), EditorStringName(EditorIcons)));
  1122. p_theme->set_color("resizer_color", "GraphEditMinimap", minimap_resizer_color);
  1123. }
  1124. // GraphElement, GraphNode & GraphFrame.
  1125. {
  1126. const int gn_margin_top = 2;
  1127. const int gn_margin_side = 2;
  1128. const int gn_margin_bottom = 2;
  1129. const int gn_corner_radius = 3;
  1130. const Color gn_bg_color = p_config.dark_theme ? p_config.dark_color_3 : p_config.dark_color_1.lerp(p_config.mono_color, 0.09);
  1131. const Color gn_selected_border_color = p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0);
  1132. const Color gn_frame_bg = gn_bg_color.lerp(p_config.tree_panel_style->get_bg_color(), 0.3);
  1133. const bool high_contrast_borders = p_config.draw_extra_borders && p_config.dark_theme;
  1134. Ref<StyleBoxFlat> gn_panel_style = EditorThemeManager::make_flat_stylebox(gn_frame_bg, gn_margin_side, gn_margin_top, gn_margin_side, gn_margin_bottom, p_config.corner_radius);
  1135. gn_panel_style->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
  1136. gn_panel_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
  1137. gn_panel_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
  1138. gn_panel_style->set_border_color(high_contrast_borders ? gn_bg_color.lightened(0.2) : gn_bg_color.darkened(0.3));
  1139. gn_panel_style->set_corner_radius_individual(0, 0, gn_corner_radius * EDSCALE, gn_corner_radius * EDSCALE);
  1140. gn_panel_style->set_anti_aliased(true);
  1141. Ref<StyleBoxFlat> gn_panel_selected_style = gn_panel_style->duplicate();
  1142. gn_panel_selected_style->set_bg_color(p_config.dark_theme ? gn_bg_color.lightened(0.15) : gn_bg_color.darkened(0.15));
  1143. gn_panel_selected_style->set_border_width(SIDE_TOP, 0);
  1144. gn_panel_selected_style->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
  1145. gn_panel_selected_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
  1146. gn_panel_selected_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
  1147. gn_panel_selected_style->set_border_color(gn_selected_border_color);
  1148. const int gn_titlebar_margin_top = 8;
  1149. const int gn_titlebar_margin_side = 12;
  1150. const int gn_titlebar_margin_bottom = 8;
  1151. Ref<StyleBoxFlat> gn_titlebar_style = EditorThemeManager::make_flat_stylebox(gn_bg_color, gn_titlebar_margin_side, gn_titlebar_margin_top, gn_titlebar_margin_side, gn_titlebar_margin_bottom, p_config.corner_radius);
  1152. gn_titlebar_style->set_border_width(SIDE_TOP, 2 * EDSCALE);
  1153. gn_titlebar_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
  1154. gn_titlebar_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
  1155. gn_titlebar_style->set_border_color(high_contrast_borders ? gn_bg_color.lightened(0.2) : gn_bg_color.darkened(0.3));
  1156. gn_titlebar_style->set_expand_margin(SIDE_TOP, 2 * EDSCALE);
  1157. gn_titlebar_style->set_corner_radius_individual(gn_corner_radius * EDSCALE, gn_corner_radius * EDSCALE, 0, 0);
  1158. gn_titlebar_style->set_anti_aliased(true);
  1159. Ref<StyleBoxFlat> gn_titlebar_selected_style = gn_titlebar_style->duplicate();
  1160. gn_titlebar_selected_style->set_border_color(gn_selected_border_color);
  1161. gn_titlebar_selected_style->set_border_width(SIDE_TOP, 2 * EDSCALE);
  1162. gn_titlebar_selected_style->set_border_width(SIDE_LEFT, 2 * EDSCALE);
  1163. gn_titlebar_selected_style->set_border_width(SIDE_RIGHT, 2 * EDSCALE);
  1164. gn_titlebar_selected_style->set_expand_margin(SIDE_TOP, 2 * EDSCALE);
  1165. Color gn_decoration_color = p_config.dark_color_1.inverted();
  1166. // GraphElement.
  1167. p_theme->set_stylebox(SceneStringName(panel), "GraphElement", gn_panel_style);
  1168. p_theme->set_stylebox("panel_selected", "GraphElement", gn_panel_selected_style);
  1169. p_theme->set_stylebox("titlebar", "GraphElement", gn_titlebar_style);
  1170. p_theme->set_stylebox("titlebar_selected", "GraphElement", gn_titlebar_selected_style);
  1171. p_theme->set_color("resizer_color", "GraphElement", gn_decoration_color);
  1172. p_theme->set_icon("resizer", "GraphElement", p_theme->get_icon(SNAME("GuiResizer"), EditorStringName(EditorIcons)));
  1173. // GraphNode.
  1174. Ref<StyleBoxEmpty> gn_slot_style = EditorThemeManager::make_empty_stylebox(12, 0, 12, 0);
  1175. p_theme->set_stylebox(SceneStringName(panel), "GraphNode", gn_panel_style);
  1176. p_theme->set_stylebox("panel_selected", "GraphNode", gn_panel_selected_style);
  1177. p_theme->set_stylebox("panel_focus", "GraphNode", p_config.button_style_focus);
  1178. p_theme->set_stylebox("titlebar", "GraphNode", gn_titlebar_style);
  1179. p_theme->set_stylebox("titlebar_selected", "GraphNode", gn_titlebar_selected_style);
  1180. p_theme->set_stylebox("slot", "GraphNode", gn_slot_style);
  1181. p_theme->set_stylebox("slot_selected", "GraphNode", p_config.button_style_focus);
  1182. p_theme->set_stylebox("separator", "GraphNode", p_theme->get_stylebox("separator", "HSeparator"));
  1183. p_theme->set_color("resizer_color", "GraphNode", gn_decoration_color);
  1184. p_theme->set_constant("port_h_offset", "GraphNode", 1);
  1185. p_theme->set_constant("separation", "GraphNode", 1 * EDSCALE);
  1186. Ref<DPITexture> port_icon = p_theme->get_icon(SNAME("GuiGraphNodePort"), EditorStringName(EditorIcons));
  1187. // The true size is 24x24 This is necessary for sharp port icons at high zoom levels in GraphEdit (up to ~200%).
  1188. port_icon->set_size_override(Size2(12, 12));
  1189. p_theme->set_icon("port", "GraphNode", port_icon);
  1190. // GraphNode's title Label.
  1191. p_theme->set_type_variation("GraphNodeTitleLabel", "Label");
  1192. p_theme->set_stylebox(CoreStringName(normal), "GraphNodeTitleLabel", EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
  1193. p_theme->set_color("font_shadow_color", "GraphNodeTitleLabel", p_config.shadow_color);
  1194. p_theme->set_constant("shadow_outline_size", "GraphNodeTitleLabel", 4);
  1195. p_theme->set_constant("shadow_offset_x", "GraphNodeTitleLabel", 0);
  1196. p_theme->set_constant("shadow_offset_y", "GraphNodeTitleLabel", 1);
  1197. p_theme->set_constant("line_spacing", "GraphNodeTitleLabel", 3 * EDSCALE);
  1198. // GraphFrame.
  1199. const int gf_corner_width = 7 * EDSCALE;
  1200. const int gf_border_width = 2 * MAX(1, EDSCALE);
  1201. Ref<StyleBoxFlat> graphframe_sb = EditorThemeManager::make_flat_stylebox(Color(0.0, 0.0, 0.0, 0.2), gn_margin_side, gn_margin_side, gn_margin_side, gn_margin_bottom, gf_corner_width);
  1202. graphframe_sb->set_expand_margin(SIDE_TOP, 38 * EDSCALE);
  1203. graphframe_sb->set_border_width_all(gf_border_width);
  1204. graphframe_sb->set_border_color(high_contrast_borders ? gn_bg_color.lightened(0.2) : gn_bg_color.darkened(0.3));
  1205. graphframe_sb->set_shadow_size(8 * EDSCALE);
  1206. graphframe_sb->set_shadow_color(Color(p_config.shadow_color, p_config.shadow_color.a * 0.25));
  1207. graphframe_sb->set_anti_aliased(true);
  1208. Ref<StyleBoxFlat> graphframe_sb_selected = graphframe_sb->duplicate();
  1209. graphframe_sb_selected->set_border_color(gn_selected_border_color);
  1210. p_theme->set_stylebox(SceneStringName(panel), "GraphFrame", graphframe_sb);
  1211. p_theme->set_stylebox("panel_selected", "GraphFrame", graphframe_sb_selected);
  1212. p_theme->set_stylebox("titlebar", "GraphFrame", EditorThemeManager::make_empty_stylebox(4, 4, 4, 4));
  1213. p_theme->set_stylebox("titlebar_selected", "GraphFrame", EditorThemeManager::make_empty_stylebox(4, 4, 4, 4));
  1214. p_theme->set_color("resizer_color", "GraphFrame", gn_decoration_color);
  1215. // GraphFrame's title Label.
  1216. p_theme->set_type_variation("GraphFrameTitleLabel", "Label");
  1217. p_theme->set_stylebox(CoreStringName(normal), "GraphFrameTitleLabel", memnew(StyleBoxEmpty));
  1218. p_theme->set_font_size(SceneStringName(font_size), "GraphFrameTitleLabel", 22 * EDSCALE);
  1219. p_theme->set_color(SceneStringName(font_color), "GraphFrameTitleLabel", Color(1, 1, 1));
  1220. p_theme->set_color("font_shadow_color", "GraphFrameTitleLabel", Color(0, 0, 0, 0));
  1221. p_theme->set_color("font_outline_color", "GraphFrameTitleLabel", Color(1, 1, 1));
  1222. p_theme->set_constant("shadow_offset_x", "GraphFrameTitleLabel", 1 * EDSCALE);
  1223. p_theme->set_constant("shadow_offset_y", "GraphFrameTitleLabel", 1 * EDSCALE);
  1224. p_theme->set_constant("outline_size", "GraphFrameTitleLabel", 0);
  1225. p_theme->set_constant("shadow_outline_size", "GraphFrameTitleLabel", 1 * EDSCALE);
  1226. p_theme->set_constant("line_spacing", "GraphFrameTitleLabel", 3 * EDSCALE);
  1227. }
  1228. // VisualShader reroute node.
  1229. {
  1230. Ref<StyleBox> vs_reroute_panel_style = EditorThemeManager::make_empty_stylebox();
  1231. Ref<StyleBox> vs_reroute_titlebar_style = vs_reroute_panel_style->duplicate();
  1232. vs_reroute_titlebar_style->set_content_margin_all(16 * EDSCALE);
  1233. p_theme->set_stylebox(SceneStringName(panel), "VSRerouteNode", vs_reroute_panel_style);
  1234. p_theme->set_stylebox("panel_selected", "VSRerouteNode", vs_reroute_panel_style);
  1235. p_theme->set_stylebox("titlebar", "VSRerouteNode", vs_reroute_titlebar_style);
  1236. p_theme->set_stylebox("titlebar_selected", "VSRerouteNode", vs_reroute_titlebar_style);
  1237. p_theme->set_stylebox("slot", "VSRerouteNode", EditorThemeManager::make_empty_stylebox());
  1238. p_theme->set_color("drag_background", "VSRerouteNode", p_config.dark_theme ? Color(0.19, 0.21, 0.24) : Color(0.8, 0.8, 0.8));
  1239. p_theme->set_color("selected_rim_color", "VSRerouteNode", p_config.dark_theme ? Color(1, 1, 1) : Color(0, 0, 0));
  1240. }
  1241. }
  1242. // ColorPicker and related nodes.
  1243. {
  1244. // ColorPicker.
  1245. Ref<StyleBoxFlat> circle_style_focus = p_config.button_style_focus->duplicate();
  1246. circle_style_focus->set_corner_radius_all(256 * EDSCALE);
  1247. circle_style_focus->set_corner_detail(32 * EDSCALE);
  1248. p_theme->set_constant("margin", "ColorPicker", p_config.base_margin);
  1249. p_theme->set_constant("sv_width", "ColorPicker", 256 * EDSCALE);
  1250. p_theme->set_constant("sv_height", "ColorPicker", 256 * EDSCALE);
  1251. p_theme->set_constant("h_width", "ColorPicker", 30 * EDSCALE);
  1252. p_theme->set_constant("label_width", "ColorPicker", 10 * EDSCALE);
  1253. p_theme->set_constant("center_slider_grabbers", "ColorPicker", 1);
  1254. p_theme->set_stylebox("sample_focus", "ColorPicker", p_config.button_style_focus);
  1255. p_theme->set_stylebox("picker_focus_rectangle", "ColorPicker", p_config.button_style_focus);
  1256. p_theme->set_stylebox("picker_focus_circle", "ColorPicker", circle_style_focus);
  1257. p_theme->set_color("focused_not_editing_cursor_color", "ColorPicker", p_config.highlight_color);
  1258. p_theme->set_icon("menu_option", "ColorPicker", p_theme->get_icon(SNAME("GuiTabMenuHl"), EditorStringName(EditorIcons)));
  1259. p_theme->set_icon("expanded_arrow", "ColorPicker", p_theme->get_icon(SNAME("GuiTreeArrowDown"), EditorStringName(EditorIcons)));
  1260. p_theme->set_icon("folded_arrow", "ColorPicker", p_theme->get_icon(SNAME("GuiTreeArrowRight"), EditorStringName(EditorIcons)));
  1261. p_theme->set_icon("screen_picker", "ColorPicker", p_theme->get_icon(SNAME("ColorPick"), EditorStringName(EditorIcons)));
  1262. p_theme->set_icon("shape_circle", "ColorPicker", p_theme->get_icon(SNAME("PickerShapeCircle"), EditorStringName(EditorIcons)));
  1263. p_theme->set_icon("shape_rect", "ColorPicker", p_theme->get_icon(SNAME("PickerShapeRectangle"), EditorStringName(EditorIcons)));
  1264. p_theme->set_icon("shape_rect_wheel", "ColorPicker", p_theme->get_icon(SNAME("PickerShapeRectangleWheel"), EditorStringName(EditorIcons)));
  1265. p_theme->set_icon("add_preset", "ColorPicker", p_theme->get_icon(SNAME("Add"), EditorStringName(EditorIcons)));
  1266. p_theme->set_icon("sample_bg", "ColorPicker", p_theme->get_icon(SNAME("GuiMiniCheckerboard"), EditorStringName(EditorIcons)));
  1267. p_theme->set_icon("sample_revert", "ColorPicker", p_theme->get_icon(SNAME("Reload"), EditorStringName(EditorIcons)));
  1268. p_theme->set_icon("overbright_indicator", "ColorPicker", p_theme->get_icon(SNAME("OverbrightIndicator"), EditorStringName(EditorIcons)));
  1269. p_theme->set_icon("bar_arrow", "ColorPicker", p_theme->get_icon(SNAME("ColorPickerBarArrow"), EditorStringName(EditorIcons)));
  1270. p_theme->set_icon("picker_cursor", "ColorPicker", p_theme->get_icon(SNAME("PickerCursor"), EditorStringName(EditorIcons)));
  1271. p_theme->set_icon("picker_cursor_bg", "ColorPicker", p_theme->get_icon(SNAME("PickerCursorBg"), EditorStringName(EditorIcons)));
  1272. p_theme->set_icon("color_script", "ColorPicker", p_theme->get_icon(SNAME("Script"), EditorStringName(EditorIcons)));
  1273. // ColorPickerButton.
  1274. p_theme->set_icon("bg", "ColorPickerButton", p_theme->get_icon(SNAME("GuiMiniCheckerboard"), EditorStringName(EditorIcons)));
  1275. // ColorPresetButton.
  1276. p_theme->set_stylebox("preset_fg", "ColorPresetButton", EditorThemeManager::make_flat_stylebox(Color(1, 1, 1), 2, 2, 2, 2, 2));
  1277. p_theme->set_icon("preset_bg", "ColorPresetButton", p_theme->get_icon(SNAME("GuiMiniCheckerboard"), EditorStringName(EditorIcons)));
  1278. p_theme->set_icon("overbright_indicator", "ColorPresetButton", p_theme->get_icon(SNAME("OverbrightIndicator"), EditorStringName(EditorIcons)));
  1279. }
  1280. }
  1281. void ThemeClassic::populate_editor_styles(const Ref<EditorTheme> &p_theme, EditorThemeManager::ThemeConfiguration &p_config) {
  1282. // Project manager.
  1283. {
  1284. Ref<StyleBoxFlat> style_panel_container = p_theme->get_stylebox(SceneStringName(panel), SNAME("TabContainer"))->duplicate();
  1285. style_panel_container->set_corner_radius(CORNER_TOP_LEFT, style_panel_container->get_corner_radius(CORNER_BOTTOM_LEFT));
  1286. style_panel_container->set_corner_radius(CORNER_TOP_RIGHT, style_panel_container->get_corner_radius(CORNER_BOTTOM_RIGHT));
  1287. p_theme->set_stylebox("panel_container", "ProjectManager", style_panel_container);
  1288. p_theme->set_stylebox("project_list", "ProjectManager", p_config.tree_panel_style);
  1289. p_theme->set_stylebox("quick_settings_panel", "ProjectManager", p_config.tree_panel_style);
  1290. p_theme->set_constant("sidebar_button_icon_separation", "ProjectManager", int(6 * EDSCALE));
  1291. p_theme->set_icon("browse_folder", "ProjectManager", p_theme->get_icon(SNAME("FolderBrowse"), EditorStringName(EditorIcons)));
  1292. p_theme->set_icon("browse_file", "ProjectManager", p_theme->get_icon(SNAME("FileBrowse"), EditorStringName(EditorIcons)));
  1293. // ProjectTag.
  1294. {
  1295. p_theme->set_type_variation("ProjectTagButton", "Button");
  1296. Ref<StyleBoxFlat> tag = p_config.button_style->duplicate();
  1297. tag->set_bg_color(p_config.dark_theme ? tag->get_bg_color().lightened(0.2) : tag->get_bg_color().darkened(0.2));
  1298. tag->set_corner_radius(CORNER_TOP_LEFT, 0);
  1299. tag->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1300. tag->set_corner_radius(CORNER_TOP_RIGHT, 4);
  1301. tag->set_corner_radius(CORNER_BOTTOM_RIGHT, 4);
  1302. p_theme->set_stylebox(CoreStringName(normal), "ProjectTagButton", tag);
  1303. tag = p_config.button_style_hover->duplicate();
  1304. tag->set_corner_radius(CORNER_TOP_LEFT, 0);
  1305. tag->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1306. tag->set_corner_radius(CORNER_TOP_RIGHT, 4);
  1307. tag->set_corner_radius(CORNER_BOTTOM_RIGHT, 4);
  1308. p_theme->set_stylebox(SceneStringName(hover), "ProjectTagButton", tag);
  1309. tag = p_config.button_style_pressed->duplicate();
  1310. tag->set_corner_radius(CORNER_TOP_LEFT, 0);
  1311. tag->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1312. tag->set_corner_radius(CORNER_TOP_RIGHT, 4);
  1313. tag->set_corner_radius(CORNER_BOTTOM_RIGHT, 4);
  1314. p_theme->set_stylebox(SceneStringName(pressed), "ProjectTagButton", tag);
  1315. }
  1316. }
  1317. // Editor and main screen.
  1318. {
  1319. // Editor background.
  1320. Color background_color_opaque = p_config.dark_color_2;
  1321. background_color_opaque.a = 1.0;
  1322. p_theme->set_color("background", EditorStringName(Editor), background_color_opaque);
  1323. p_theme->set_stylebox("Background", EditorStringName(EditorStyles), EditorThemeManager::make_flat_stylebox(background_color_opaque, p_config.base_margin, p_config.base_margin, p_config.base_margin, p_config.base_margin));
  1324. Ref<StyleBoxFlat> editor_panel_foreground = p_config.base_style->duplicate();
  1325. editor_panel_foreground->set_corner_radius_all(0);
  1326. p_theme->set_stylebox("PanelForeground", EditorStringName(EditorStyles), editor_panel_foreground);
  1327. // Editor focus.
  1328. p_theme->set_stylebox("Focus", EditorStringName(EditorStyles), p_config.button_style_focus);
  1329. Ref<StyleBoxFlat> style_widget_focus_viewport = p_config.button_style_focus->duplicate();
  1330. // Use a less opaque color to be less distracting for the 2D and 3D editor viewports.
  1331. style_widget_focus_viewport->set_border_color(p_config.accent_color * Color(1, 1, 1, 0.5));
  1332. p_theme->set_stylebox("FocusViewport", EditorStringName(EditorStyles), style_widget_focus_viewport);
  1333. Ref<StyleBoxFlat> style_widget_scroll_container = p_config.button_style_focus->duplicate();
  1334. p_theme->set_stylebox("focus", "ScrollContainer", style_widget_scroll_container);
  1335. // Hide scroll hints.
  1336. Ref<CompressedTexture2D> empty_texture;
  1337. empty_texture.instantiate();
  1338. p_theme->set_icon("scroll_hint_vertical", "ScrollContainer", empty_texture);
  1339. p_theme->set_icon("scroll_hint_horizontal", "ScrollContainer", empty_texture);
  1340. p_theme->set_icon("scroll_hint", "Tree", empty_texture);
  1341. p_theme->set_icon("scroll_hint", "ItemList", empty_texture);
  1342. // This stylebox is used in 3d and 2d viewports (no borders).
  1343. Ref<StyleBoxFlat> style_content_panel_vp = p_config.content_panel_style->duplicate();
  1344. style_content_panel_vp->set_content_margin_individual(p_config.border_width * 2, p_config.base_margin * EDSCALE, p_config.border_width * 2, p_config.border_width * 2);
  1345. p_theme->set_stylebox("Content", EditorStringName(EditorStyles), style_content_panel_vp);
  1346. // 3D/Spatial editor.
  1347. Ref<StyleBoxFlat> style_info_3d_viewport = p_config.base_style->duplicate();
  1348. Color bg_color = style_info_3d_viewport->get_bg_color() * Color(1, 1, 1, 0.5);
  1349. if (!p_config.dark_theme) {
  1350. // Always use a dark background for the 3D viewport, even in light themes.
  1351. // This is displayed as an overlay of the 3D scene, whose appearance doesn't change with the editor theme.
  1352. // On top of that, dark overlays are more readable than light overlays.
  1353. bg_color.invert();
  1354. }
  1355. style_info_3d_viewport->set_bg_color(bg_color);
  1356. style_info_3d_viewport->set_border_width_all(0);
  1357. p_theme->set_stylebox("Information3dViewport", EditorStringName(EditorStyles), style_info_3d_viewport);
  1358. // 2D, 3D, and Game toolbar.
  1359. p_theme->set_type_variation("MainToolBarMargin", "MarginContainer");
  1360. p_theme->set_constant("margin_left", "MainToolBarMargin", 4 * EDSCALE);
  1361. p_theme->set_constant("margin_right", "MainToolBarMargin", 4 * EDSCALE);
  1362. // 2D and 3D contextual toolbar.
  1363. // Use a custom stylebox to make contextual menu items stand out from the rest.
  1364. // This helps with editor usability as contextual menu items change when selecting nodes,
  1365. // even though it may not be immediately obvious at first.
  1366. Ref<StyleBoxFlat> toolbar_stylebox = memnew(StyleBoxFlat);
  1367. toolbar_stylebox->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.1));
  1368. toolbar_stylebox->set_anti_aliased(false);
  1369. // Add an underline to the StyleBox, but prevent its minimum vertical size from changing.
  1370. toolbar_stylebox->set_border_color(p_config.accent_color);
  1371. toolbar_stylebox->set_border_width(SIDE_BOTTOM, Math::round(2 * EDSCALE));
  1372. toolbar_stylebox->set_content_margin(SIDE_BOTTOM, 0);
  1373. toolbar_stylebox->set_expand_margin_individual(4 * EDSCALE, 2 * EDSCALE, 4 * EDSCALE, 4 * EDSCALE);
  1374. p_theme->set_stylebox("ContextualToolbar", EditorStringName(EditorStyles), toolbar_stylebox);
  1375. // Script editor.
  1376. p_theme->set_stylebox("ScriptEditorPanel", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(p_config.base_margin, 0, p_config.base_margin, p_config.base_margin));
  1377. p_theme->set_stylebox("ScriptEditorPanelFloating", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
  1378. p_theme->set_stylebox("ScriptEditor", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
  1379. // Game view.
  1380. p_theme->set_type_variation("GamePanel", "Panel");
  1381. Ref<StyleBoxFlat> game_panel = p_theme->get_stylebox(SceneStringName(panel), SNAME("Panel"))->duplicate();
  1382. game_panel->set_corner_radius_all(0);
  1383. p_theme->set_stylebox(SceneStringName(panel), "GamePanel", game_panel);
  1384. // Main menu.
  1385. Ref<StyleBoxFlat> menu_transparent_style = p_config.button_style->duplicate();
  1386. menu_transparent_style->set_bg_color(Color(1, 1, 1, 0));
  1387. menu_transparent_style->set_border_width_all(0);
  1388. Ref<StyleBoxFlat> main_screen_button_hover = p_config.button_style_hover->duplicate();
  1389. for (int i = 0; i < 4; i++) {
  1390. menu_transparent_style->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
  1391. main_screen_button_hover->set_content_margin((Side)i, p_config.button_style_hover->get_content_margin((Side)i));
  1392. }
  1393. p_theme->set_stylebox(CoreStringName(normal), "MainScreenButton", menu_transparent_style);
  1394. p_theme->set_stylebox("normal_mirrored", "MainScreenButton", menu_transparent_style);
  1395. p_theme->set_stylebox(SceneStringName(pressed), "MainScreenButton", menu_transparent_style);
  1396. p_theme->set_stylebox("pressed_mirrored", "MainScreenButton", menu_transparent_style);
  1397. p_theme->set_stylebox(SceneStringName(hover), "MainScreenButton", main_screen_button_hover);
  1398. p_theme->set_stylebox("hover_mirrored", "MainScreenButton", main_screen_button_hover);
  1399. p_theme->set_stylebox("hover_pressed", "MainScreenButton", main_screen_button_hover);
  1400. p_theme->set_stylebox("hover_pressed_mirrored", "MainScreenButton", main_screen_button_hover);
  1401. p_theme->set_type_variation("MainMenuBar", "FlatMenuButton");
  1402. p_theme->set_stylebox(CoreStringName(normal), "MainMenuBar", menu_transparent_style);
  1403. p_theme->set_stylebox(SceneStringName(pressed), "MainMenuBar", main_screen_button_hover);
  1404. p_theme->set_stylebox(SceneStringName(hover), "MainMenuBar", main_screen_button_hover);
  1405. p_theme->set_stylebox("hover_pressed", "MainMenuBar", main_screen_button_hover);
  1406. // Run bar.
  1407. p_theme->set_type_variation("RunBarButton", "FlatMenuButton");
  1408. p_theme->set_stylebox("disabled", "RunBarButton", menu_transparent_style);
  1409. p_theme->set_stylebox(SceneStringName(pressed), "RunBarButton", menu_transparent_style);
  1410. p_theme->set_type_variation("RunBarButtonMovieMakerDisabled", "RunBarButton");
  1411. p_theme->set_color("icon_normal_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.7));
  1412. p_theme->set_color("icon_pressed_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.84));
  1413. p_theme->set_color("icon_hover_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.9));
  1414. p_theme->set_color("icon_hover_pressed_color", "RunBarButtonMovieMakerDisabled", Color(1, 1, 1, 0.84));
  1415. Ref<StyleBoxFlat> movie_maker_button_enabled_hover = menu_transparent_style->duplicate();
  1416. movie_maker_button_enabled_hover->set_bg_color(p_config.accent_color.lightened(0.2));
  1417. p_theme->set_type_variation("RunBarButtonMovieMakerEnabled", "RunBarButton");
  1418. p_theme->set_stylebox("hover_pressed", "RunBarButtonMovieMakerEnabled", movie_maker_button_enabled_hover);
  1419. p_theme->set_color("icon_normal_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.7));
  1420. p_theme->set_color("icon_pressed_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.84));
  1421. p_theme->set_color("icon_hover_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.9));
  1422. p_theme->set_color("icon_hover_pressed_color", "RunBarButtonMovieMakerEnabled", Color(0, 0, 0, 0.84));
  1423. // Bottom panel.
  1424. Ref<StyleBoxFlat> style_bottom_panel = p_config.content_panel_style->duplicate();
  1425. style_bottom_panel->set_border_width(SIDE_BOTTOM, 0);
  1426. style_bottom_panel->set_corner_radius_all(p_config.corner_radius * EDSCALE);
  1427. style_bottom_panel->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1428. style_bottom_panel->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  1429. Ref<StyleBoxFlat> style_bottom_panel_hidden = style_bottom_panel->duplicate();
  1430. style_bottom_panel_hidden->set_content_margin(SIDE_TOP, 0);
  1431. Ref<StyleBoxFlat> style_bottom_panel_tabbar = p_config.content_panel_style->duplicate();
  1432. style_bottom_panel_tabbar->set_content_margin(SIDE_TOP, 0);
  1433. Ref<StyleBoxFlat> style_bottom_tab = menu_transparent_style->duplicate();
  1434. style_bottom_tab->set_content_margin(SIDE_TOP, (p_config.increased_margin + 2) * EDSCALE);
  1435. style_bottom_tab->set_content_margin(SIDE_BOTTOM, (p_config.increased_margin + 2) * EDSCALE);
  1436. Ref<StyleBoxFlat> style_bottom_tab_selected = style_bottom_tab->duplicate();
  1437. style_bottom_tab_selected->set_bg_color(p_config.dark_color_1);
  1438. Ref<StyleBoxFlat> style_bottom_tab_hover = style_bottom_tab->duplicate();
  1439. style_bottom_tab_hover->set_bg_color(p_config.button_style_hover->get_bg_color());
  1440. p_theme->set_stylebox("BottomPanel", EditorStringName(EditorStyles), style_bottom_panel);
  1441. p_theme->set_type_variation("BottomPanel", "TabContainer");
  1442. p_theme->set_stylebox(SceneStringName(panel), "BottomPanel", style_bottom_panel_hidden);
  1443. p_theme->set_stylebox("tabbar_background", "BottomPanel", style_bottom_panel_tabbar);
  1444. p_theme->set_stylebox("tab_selected", "BottomPanel", style_bottom_tab_selected);
  1445. p_theme->set_stylebox("tab_hovered", "BottomPanel", style_bottom_tab_hover);
  1446. p_theme->set_stylebox("tab_focus", "BottomPanel", menu_transparent_style);
  1447. p_theme->set_stylebox("tab_unselected", "BottomPanel", style_bottom_tab);
  1448. p_theme->set_color("font_unselected_color", "BottomPanel", p_config.font_color);
  1449. p_theme->set_color("font_hovered_color", "BottomPanel", p_config.font_hover_color);
  1450. p_theme->set_color("font_selected_color", "BottomPanel", p_config.accent_color);
  1451. p_theme->set_constant("tab_separation", "BottomPanel", p_config.separation_margin);
  1452. p_theme->set_type_variation("BottomPanelButton", "FlatMenuButton");
  1453. p_theme->set_stylebox(CoreStringName(normal), "BottomPanelButton", menu_transparent_style);
  1454. p_theme->set_stylebox(SceneStringName(pressed), "BottomPanelButton", style_bottom_tab_selected);
  1455. p_theme->set_stylebox("hover_pressed", "BottomPanelButton", style_bottom_tab_hover);
  1456. p_theme->set_stylebox(SceneStringName(hover), "BottomPanelButton", style_bottom_tab_hover);
  1457. // Don't tint the icon even when in "pressed" state.
  1458. p_theme->set_color("icon_pressed_color", "BottomPanelButton", Color(1, 1, 1, 1));
  1459. Color icon_hover_color = p_config.icon_normal_color * (p_config.dark_icon_and_font ? 1.15 : 1.0);
  1460. icon_hover_color.a = 1.0;
  1461. p_theme->set_color("icon_hover_color", "BottomPanelButton", icon_hover_color);
  1462. p_theme->set_color("icon_hover_pressed_color", "BottomPanelButton", icon_hover_color);
  1463. // Audio bus.
  1464. p_theme->set_stylebox(CoreStringName(normal), "EditorAudioBus", style_bottom_panel);
  1465. p_theme->set_stylebox("master", "EditorAudioBus", p_config.button_style_disabled);
  1466. p_theme->set_stylebox("focus", "EditorAudioBus", p_config.button_style_focus);
  1467. }
  1468. // Editor GUI widgets.
  1469. {
  1470. // EditorSpinSlider.
  1471. p_theme->set_color("label_color", "EditorSpinSlider", p_config.font_color);
  1472. p_theme->set_color("read_only_label_color", "EditorSpinSlider", p_config.font_readonly_color);
  1473. Ref<StyleBoxFlat> editor_spin_label_bg = p_config.base_style->duplicate();
  1474. editor_spin_label_bg->set_bg_color(p_config.dark_color_3);
  1475. editor_spin_label_bg->set_border_width_all(0);
  1476. p_theme->set_stylebox("label_bg", "EditorSpinSlider", editor_spin_label_bg);
  1477. // TODO: Use separate arrows instead like on SpinBox. Planned for a different PR.
  1478. p_theme->set_icon("updown", "EditorSpinSlider", p_theme->get_icon(SNAME("GuiSpinboxUpdown"), EditorStringName(EditorIcons)));
  1479. p_theme->set_icon("updown_disabled", "EditorSpinSlider", p_theme->get_icon(SNAME("GuiSpinboxUpdownDisabled"), EditorStringName(EditorIcons)));
  1480. // EditorSpinSliders with a label have more space on the left, so add an
  1481. // higher margin to match the location where the text begins.
  1482. // The margin values below were determined by empirical testing.
  1483. p_theme->set_constant("line_edit_margin", "EditorSpinSlider", 24 * EDSCALE);
  1484. p_theme->set_constant("line_edit_margin_empty", "EditorSpinSlider", 16 * EDSCALE);
  1485. // Launch Pad and Play buttons.
  1486. Ref<StyleBoxFlat> style_launch_pad = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1, 2 * EDSCALE, 0, 2 * EDSCALE, 0, p_config.corner_radius);
  1487. style_launch_pad->set_corner_radius_all(p_config.corner_radius * EDSCALE);
  1488. p_theme->set_stylebox("LaunchPadNormal", EditorStringName(EditorStyles), style_launch_pad);
  1489. Ref<StyleBoxFlat> style_launch_pad_movie = style_launch_pad->duplicate();
  1490. style_launch_pad_movie->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.1));
  1491. style_launch_pad_movie->set_border_color(p_config.accent_color);
  1492. style_launch_pad_movie->set_border_width_all(Math::round(2 * EDSCALE));
  1493. p_theme->set_stylebox("LaunchPadMovieMode", EditorStringName(EditorStyles), style_launch_pad_movie);
  1494. Ref<StyleBoxFlat> style_launch_pad_recovery_mode = style_launch_pad->duplicate();
  1495. style_launch_pad_recovery_mode->set_bg_color(p_config.accent_color * Color(1, 1, 1, 0.1));
  1496. style_launch_pad_recovery_mode->set_border_color(p_config.warning_color);
  1497. style_launch_pad_recovery_mode->set_border_width_all(Math::round(2 * EDSCALE));
  1498. p_theme->set_stylebox("LaunchPadRecoveryMode", EditorStringName(EditorStyles), style_launch_pad_recovery_mode);
  1499. p_theme->set_stylebox("MovieWriterButtonNormal", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
  1500. Ref<StyleBoxFlat> style_write_movie_button = p_config.button_style_pressed->duplicate();
  1501. style_write_movie_button->set_bg_color(p_config.accent_color);
  1502. style_write_movie_button->set_corner_radius_all(p_config.corner_radius * EDSCALE);
  1503. style_write_movie_button->set_content_margin(SIDE_TOP, 0);
  1504. style_write_movie_button->set_content_margin(SIDE_BOTTOM, 0);
  1505. style_write_movie_button->set_content_margin(SIDE_LEFT, 0);
  1506. style_write_movie_button->set_content_margin(SIDE_RIGHT, 0);
  1507. style_write_movie_button->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
  1508. p_theme->set_stylebox("MovieWriterButtonPressed", EditorStringName(EditorStyles), style_write_movie_button);
  1509. // Profiler autostart indicator panel.
  1510. Ref<StyleBoxFlat> style_profiler_autostart = style_launch_pad->duplicate();
  1511. style_profiler_autostart->set_bg_color(Color(1, 0.867, 0.396));
  1512. p_theme->set_type_variation("ProfilerAutostartIndicator", "Button");
  1513. p_theme->set_stylebox(CoreStringName(normal), "ProfilerAutostartIndicator", style_profiler_autostart);
  1514. p_theme->set_stylebox(SceneStringName(pressed), "ProfilerAutostartIndicator", style_profiler_autostart);
  1515. p_theme->set_stylebox(SceneStringName(hover), "ProfilerAutostartIndicator", style_profiler_autostart);
  1516. // Recovery mode button style
  1517. Ref<StyleBoxFlat> style_recovery_mode_button = p_config.button_style_pressed->duplicate();
  1518. style_recovery_mode_button->set_bg_color(p_config.warning_color);
  1519. style_recovery_mode_button->set_corner_radius_all(p_config.corner_radius * EDSCALE);
  1520. style_recovery_mode_button->set_content_margin_all(0);
  1521. // Recovery mode button is implicitly styled from the panel's background.
  1522. // So, remove any existing borders. (e.g. from draw_extra_borders config)
  1523. style_recovery_mode_button->set_border_width_all(0);
  1524. style_recovery_mode_button->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
  1525. p_theme->set_stylebox("RecoveryModeButton", EditorStringName(EditorStyles), style_recovery_mode_button);
  1526. }
  1527. // Standard GUI variations.
  1528. {
  1529. // Custom theme type for MarginContainer with 4px margins.
  1530. p_theme->set_type_variation("MarginContainer4px", "MarginContainer");
  1531. p_theme->set_constant("margin_left", "MarginContainer4px", 4 * EDSCALE);
  1532. p_theme->set_constant("margin_top", "MarginContainer4px", 4 * EDSCALE);
  1533. p_theme->set_constant("margin_right", "MarginContainer4px", 4 * EDSCALE);
  1534. p_theme->set_constant("margin_bottom", "MarginContainer4px", 4 * EDSCALE);
  1535. // Header LinkButton variation.
  1536. p_theme->set_type_variation("HeaderSmallLink", "LinkButton");
  1537. p_theme->set_font(SceneStringName(font), "HeaderSmallLink", p_theme->get_font(SceneStringName(font), SNAME("HeaderSmall")));
  1538. p_theme->set_font_size(SceneStringName(font_size), "HeaderSmallLink", p_theme->get_font_size(SceneStringName(font_size), SNAME("HeaderSmall")));
  1539. // Flat button variations.
  1540. {
  1541. Ref<StyleBoxEmpty> style_flat_button = EditorThemeManager::make_empty_stylebox();
  1542. Ref<StyleBoxFlat> style_flat_button_hover = p_config.button_style_hover->duplicate();
  1543. Ref<StyleBoxFlat> style_flat_button_pressed = p_config.button_style_pressed->duplicate();
  1544. for (int i = 0; i < 4; i++) {
  1545. style_flat_button->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
  1546. style_flat_button_hover->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
  1547. style_flat_button_pressed->set_content_margin((Side)i, p_config.button_style->get_content_margin((Side)i));
  1548. }
  1549. Color flat_pressed_color = p_config.dark_color_1.lightened(0.24).lerp(p_config.accent_color, 0.2) * Color(0.8, 0.8, 0.8, 0.85);
  1550. if (p_config.dark_theme) {
  1551. flat_pressed_color = p_config.dark_color_1.lerp(p_config.accent_color, 0.12) * Color(0.6, 0.6, 0.6, 0.85);
  1552. }
  1553. style_flat_button_pressed->set_bg_color(flat_pressed_color);
  1554. p_theme->set_stylebox(CoreStringName(normal), SceneStringName(FlatButton), style_flat_button);
  1555. p_theme->set_stylebox(SceneStringName(hover), SceneStringName(FlatButton), style_flat_button_hover);
  1556. p_theme->set_stylebox(SceneStringName(pressed), SceneStringName(FlatButton), style_flat_button_pressed);
  1557. p_theme->set_stylebox("disabled", SceneStringName(FlatButton), style_flat_button);
  1558. p_theme->set_stylebox(CoreStringName(normal), "FlatMenuButton", style_flat_button);
  1559. p_theme->set_stylebox(SceneStringName(hover), "FlatMenuButton", style_flat_button_hover);
  1560. p_theme->set_stylebox(SceneStringName(pressed), "FlatMenuButton", style_flat_button_pressed);
  1561. p_theme->set_stylebox("disabled", "FlatMenuButton", style_flat_button);
  1562. p_theme->set_type_variation("FlatButtonNoIconTint", "FlatButton");
  1563. p_theme->set_color("icon_pressed_color", "FlatButtonNoIconTint", p_config.icon_normal_color);
  1564. p_theme->set_color("icon_hover_color", "FlatButtonNoIconTint", p_config.mono_color);
  1565. p_theme->set_color("icon_hover_pressed_color", "FlatButtonNoIconTint", p_config.mono_color);
  1566. p_theme->set_type_variation("FlatMenuButtonNoIconTint", "FlatMenuButton");
  1567. p_theme->set_color("icon_pressed_color", "FlatMenuButtonNoIconTint", p_config.icon_normal_color);
  1568. p_theme->set_color("icon_hover_color", "FlatMenuButtonNoIconTint", p_config.mono_color);
  1569. p_theme->set_color("icon_hover_pressed_color", "FlatMenuButtonNoIconTint", p_config.mono_color);
  1570. // Variation for Editor Log filter buttons.
  1571. p_theme->set_type_variation("EditorLogFilterButton", "Button");
  1572. // When pressed, don't tint the icons with the accent color, just leave them normal.
  1573. p_theme->set_color("icon_pressed_color", "EditorLogFilterButton", p_config.icon_normal_color);
  1574. // When unpressed, dim the icons.
  1575. Color icon_normal_color = Color(p_config.icon_normal_color, (p_config.dark_icon_and_font ? 0.4 : 0.8));
  1576. p_theme->set_color("icon_normal_color", "EditorLogFilterButton", icon_normal_color);
  1577. Color icon_hover_color = p_config.icon_normal_color * (p_config.dark_icon_and_font ? 1.15 : 1.0);
  1578. icon_hover_color.a = 1.0;
  1579. p_theme->set_color("icon_hover_color", "EditorLogFilterButton", icon_hover_color);
  1580. p_theme->set_color("icon_hover_pressed_color", "EditorLogFilterButton", icon_hover_color);
  1581. // When pressed, add a small bottom border to the buttons to better show their active state,
  1582. // similar to active tabs.
  1583. Ref<StyleBoxFlat> editor_log_button_pressed = style_flat_button_pressed->duplicate();
  1584. editor_log_button_pressed->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
  1585. editor_log_button_pressed->set_border_color(p_config.accent_color);
  1586. if (!p_config.dark_theme) {
  1587. editor_log_button_pressed->set_bg_color(flat_pressed_color.lightened(0.5));
  1588. }
  1589. p_theme->set_stylebox(CoreStringName(normal), "EditorLogFilterButton", style_flat_button);
  1590. p_theme->set_stylebox(SceneStringName(hover), "EditorLogFilterButton", style_flat_button_hover);
  1591. p_theme->set_stylebox(SceneStringName(pressed), "EditorLogFilterButton", editor_log_button_pressed);
  1592. }
  1593. // Checkbox.
  1594. {
  1595. p_theme->set_type_variation("CheckBoxNoIconTint", "CheckBox");
  1596. p_theme->set_color("icon_pressed_color", "CheckBoxNoIconTint", p_config.icon_normal_color);
  1597. p_theme->set_color("icon_hover_color", "CheckBoxNoIconTint", p_config.mono_color);
  1598. p_theme->set_color("icon_hover_pressed_color", "CheckBoxNoIconTint", p_config.mono_color);
  1599. }
  1600. // Buttons styles that stand out against the panel background (e.g. AssetLib).
  1601. {
  1602. p_theme->set_type_variation("PanelBackgroundButton", "Button");
  1603. Ref<StyleBoxFlat> panel_button_style = p_config.button_style->duplicate();
  1604. panel_button_style->set_bg_color(p_config.base_color.lerp(p_config.mono_color, 0.08));
  1605. Ref<StyleBoxFlat> panel_button_style_hover = p_config.button_style_hover->duplicate();
  1606. panel_button_style_hover->set_bg_color(p_config.base_color.lerp(p_config.mono_color, 0.16));
  1607. Ref<StyleBoxFlat> panel_button_style_pressed = p_config.button_style_pressed->duplicate();
  1608. panel_button_style_pressed->set_bg_color(p_config.base_color.lerp(p_config.mono_color, 0.20));
  1609. Ref<StyleBoxFlat> panel_button_style_disabled = p_config.button_style_disabled->duplicate();
  1610. panel_button_style_disabled->set_bg_color(p_config.disabled_bg_color);
  1611. p_theme->set_stylebox(CoreStringName(normal), "PanelBackgroundButton", panel_button_style);
  1612. p_theme->set_stylebox(SceneStringName(hover), "PanelBackgroundButton", panel_button_style_hover);
  1613. p_theme->set_stylebox(SceneStringName(pressed), "PanelBackgroundButton", panel_button_style_pressed);
  1614. p_theme->set_stylebox("disabled", "PanelBackgroundButton", panel_button_style_disabled);
  1615. }
  1616. // Top bar selectors.
  1617. {
  1618. p_theme->set_type_variation("TopBarOptionButton", "OptionButton");
  1619. p_theme->set_font(SceneStringName(font), "TopBarOptionButton", p_theme->get_font(SNAME("bold"), EditorStringName(EditorFonts)));
  1620. p_theme->set_font_size(SceneStringName(font_size), "TopBarOptionButton", p_theme->get_font_size(SNAME("bold_size"), EditorStringName(EditorFonts)));
  1621. }
  1622. // Complex editor windows.
  1623. {
  1624. Ref<StyleBoxFlat> style_complex_window = p_config.window_style->duplicate();
  1625. style_complex_window->set_bg_color(p_config.dark_color_2);
  1626. style_complex_window->set_border_color(p_config.dark_color_2);
  1627. p_theme->set_stylebox(SceneStringName(panel), "EditorSettingsDialog", style_complex_window);
  1628. p_theme->set_stylebox(SceneStringName(panel), "ProjectSettingsEditor", style_complex_window);
  1629. p_theme->set_stylebox(SceneStringName(panel), "EditorAbout", style_complex_window);
  1630. }
  1631. // InspectorActionButton.
  1632. {
  1633. p_theme->set_type_variation("InspectorActionButton", "Button");
  1634. const float action_extra_margin = 32 * EDSCALE;
  1635. p_theme->set_constant("h_separation", "InspectorActionButton", action_extra_margin);
  1636. Color color_inspector_action = p_config.dark_color_1.lerp(p_config.mono_color, 0.12);
  1637. color_inspector_action.a = 0.5;
  1638. Ref<StyleBoxFlat> style_inspector_action = p_config.button_style->duplicate();
  1639. style_inspector_action->set_bg_color(color_inspector_action);
  1640. style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
  1641. p_theme->set_stylebox(CoreStringName(normal), "InspectorActionButton", style_inspector_action);
  1642. style_inspector_action = p_config.button_style->duplicate();
  1643. style_inspector_action->set_bg_color(color_inspector_action);
  1644. style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
  1645. p_theme->set_stylebox("normal_mirrored", "InspectorActionButton", style_inspector_action);
  1646. style_inspector_action = p_config.button_style_hover->duplicate();
  1647. style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
  1648. p_theme->set_stylebox(SceneStringName(hover), "InspectorActionButton", style_inspector_action);
  1649. style_inspector_action = p_config.button_style_hover->duplicate();
  1650. style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
  1651. p_theme->set_stylebox("hover_mirrored", "InspectorActionButton", style_inspector_action);
  1652. style_inspector_action = p_config.button_style_pressed->duplicate();
  1653. style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
  1654. p_theme->set_stylebox(SceneStringName(pressed), "InspectorActionButton", style_inspector_action);
  1655. style_inspector_action = p_config.button_style_pressed->duplicate();
  1656. style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
  1657. p_theme->set_stylebox("pressed_mirrored", "InspectorActionButton", style_inspector_action);
  1658. style_inspector_action = p_config.button_style_disabled->duplicate();
  1659. style_inspector_action->set_content_margin(SIDE_RIGHT, action_extra_margin);
  1660. p_theme->set_stylebox("disabled", "InspectorActionButton", style_inspector_action);
  1661. style_inspector_action = p_config.button_style_disabled->duplicate();
  1662. style_inspector_action->set_content_margin(SIDE_LEFT, action_extra_margin);
  1663. p_theme->set_stylebox("disabled_mirrored", "InspectorActionButton", style_inspector_action);
  1664. }
  1665. // Buttons in material previews.
  1666. {
  1667. const Color dim_light_color = p_config.icon_normal_color.darkened(0.24);
  1668. const Color dim_light_highlighted_color = p_config.icon_normal_color.darkened(0.18);
  1669. Ref<StyleBox> sb_empty_borderless = EditorThemeManager::make_empty_stylebox();
  1670. p_theme->set_type_variation("PreviewLightButton", "Button");
  1671. // When pressed, don't use the accent color tint. When unpressed, dim the icon.
  1672. p_theme->set_color("icon_normal_color", "PreviewLightButton", dim_light_color);
  1673. p_theme->set_color("icon_focus_color", "PreviewLightButton", dim_light_color);
  1674. p_theme->set_color("icon_pressed_color", "PreviewLightButton", p_config.icon_normal_color);
  1675. p_theme->set_color("icon_hover_pressed_color", "PreviewLightButton", p_config.icon_normal_color);
  1676. // Unpressed icon is dim, so use a dim highlight.
  1677. p_theme->set_color("icon_hover_color", "PreviewLightButton", dim_light_highlighted_color);
  1678. p_theme->set_stylebox(CoreStringName(normal), "PreviewLightButton", sb_empty_borderless);
  1679. p_theme->set_stylebox(SceneStringName(hover), "PreviewLightButton", sb_empty_borderless);
  1680. p_theme->set_stylebox("focus", "PreviewLightButton", sb_empty_borderless);
  1681. p_theme->set_stylebox(SceneStringName(pressed), "PreviewLightButton", sb_empty_borderless);
  1682. }
  1683. // TabContainerOdd variation.
  1684. {
  1685. // Can be used on tabs against the base color background (e.g. nested tabs).
  1686. p_theme->set_type_variation("TabContainerOdd", "TabContainer");
  1687. Ref<StyleBoxFlat> style_tab_selected_odd = p_theme->get_stylebox(SNAME("tab_selected"), SNAME("TabContainer"))->duplicate();
  1688. style_tab_selected_odd->set_bg_color(p_config.disabled_bg_color);
  1689. p_theme->set_stylebox("tab_selected", "TabContainerOdd", style_tab_selected_odd);
  1690. Ref<StyleBoxFlat> style_content_panel_odd = p_config.content_panel_style->duplicate();
  1691. style_content_panel_odd->set_bg_color(p_config.disabled_bg_color);
  1692. p_theme->set_stylebox(SceneStringName(panel), "TabContainerOdd", style_content_panel_odd);
  1693. }
  1694. // PanelContainerTabbarInner.
  1695. {
  1696. // Used by Modern theme.
  1697. p_theme->set_type_variation("PanelContainerTabbarInner", "PanelContainer");
  1698. p_theme->set_stylebox(SceneStringName(panel), "PanelContainerTabbarInner", EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
  1699. }
  1700. // TreeLineEdit.
  1701. {
  1702. Ref<StyleBoxFlat> tree_line_edit_style = p_theme->get_stylebox(CoreStringName(normal), SNAME("LineEdit"))->duplicate();
  1703. tree_line_edit_style->set_corner_radius_all(0);
  1704. Ref<StyleBoxFlat> tree_line_edit_style_focus = p_theme->get_stylebox("focus", SNAME("LineEdit"))->duplicate();
  1705. tree_line_edit_style_focus->set_corner_radius_all(0);
  1706. p_theme->set_type_variation("TreeLineEdit", "LineEdit");
  1707. p_theme->set_stylebox(CoreStringName(normal), "TreeLineEdit", tree_line_edit_style);
  1708. p_theme->set_stylebox("focus", "TreeLineEdit", tree_line_edit_style_focus);
  1709. }
  1710. // EditorValidationPanel.
  1711. p_theme->set_stylebox(SceneStringName(panel), "EditorValidationPanel", p_config.tree_panel_style);
  1712. // Secondary trees and item lists.
  1713. p_theme->set_type_variation("TreeSecondary", "Tree");
  1714. p_theme->set_type_variation("ItemListSecondary", "ItemList");
  1715. // ForegroundPanel.
  1716. p_theme->set_type_variation("PanelForeground", "Panel");
  1717. p_theme->set_stylebox(SceneStringName(panel), "PanelForeground", p_config.base_empty_style);
  1718. }
  1719. // Editor inspector.
  1720. {
  1721. // Panel.
  1722. Ref<StyleBoxFlat> editor_inspector_panel = p_config.tree_panel_style->duplicate();
  1723. editor_inspector_panel->set_border_width_all(0);
  1724. editor_inspector_panel->set_content_margin_all(0);
  1725. p_theme->set_stylebox(SceneStringName(panel), "EditorInspector", editor_inspector_panel);
  1726. // Vertical separation between inspector areas.
  1727. p_theme->set_type_variation("EditorInspectorContainer", "VBoxContainer");
  1728. p_theme->set_constant("separation", "EditorInspectorContainer", 0);
  1729. // Vertical separation between inspector sections.
  1730. p_theme->set_type_variation("EditorSectionContainer", "VBoxContainer");
  1731. p_theme->set_constant("separation", "EditorSectionContainer", 0);
  1732. // Vertical separation between inspector properties.
  1733. p_theme->set_type_variation("EditorPropertyContainer", "VBoxContainer");
  1734. p_theme->set_constant("separation", "EditorPropertyContainer", p_config.increased_margin * EDSCALE);
  1735. // EditorProperty.
  1736. Ref<StyleBoxFlat> style_property_bg = p_config.base_style->duplicate();
  1737. style_property_bg->set_bg_color(p_config.highlight_color);
  1738. style_property_bg->set_border_width_all(0);
  1739. Ref<StyleBoxFlat> style_property_child_bg = p_config.base_style->duplicate();
  1740. style_property_child_bg->set_bg_color(p_config.dark_color_2);
  1741. style_property_child_bg->set_border_width_all(0);
  1742. p_theme->set_stylebox("bg", "EditorProperty", memnew(StyleBoxEmpty));
  1743. p_theme->set_stylebox("bg_selected", "EditorProperty", style_property_bg);
  1744. p_theme->set_stylebox("child_bg", "EditorProperty", style_property_child_bg);
  1745. p_theme->set_constant("font_offset", "EditorProperty", 8 * EDSCALE);
  1746. const Color property_color = p_config.font_color.lerp(Color(0.5, 0.5, 0.5), 0.5);
  1747. const Color readonly_color = property_color.lerp(p_config.dark_icon_and_font ? Color(0, 0, 0) : Color(1, 1, 1), 0.25);
  1748. const Color readonly_warning_color = p_config.error_color.lerp(p_config.dark_icon_and_font ? Color(0, 0, 0) : Color(1, 1, 1), 0.25);
  1749. p_theme->set_color("property_color", "EditorProperty", property_color);
  1750. p_theme->set_color("readonly_color", "EditorProperty", readonly_color);
  1751. p_theme->set_color("warning_color", "EditorProperty", p_config.warning_color);
  1752. p_theme->set_color("readonly_warning_color", "EditorProperty", readonly_warning_color);
  1753. Ref<StyleBoxFlat> style_property_group_note = p_config.base_style->duplicate();
  1754. Color property_group_note_color = p_config.accent_color;
  1755. property_group_note_color.a = 0.1;
  1756. style_property_group_note->set_bg_color(property_group_note_color);
  1757. p_theme->set_stylebox("bg_group_note", "EditorProperty", style_property_group_note);
  1758. // Make the height for properties uniform.
  1759. Ref<StyleBoxFlat> inspector_button_style = p_theme->get_stylebox(CoreStringName(normal), SNAME("Button"));
  1760. Ref<Font> font = p_theme->get_font(SceneStringName(font), SNAME("LineEdit"));
  1761. int font_size = p_theme->get_font_size(SceneStringName(font_size), SNAME("LineEdit"));
  1762. p_config.inspector_property_height = inspector_button_style->get_minimum_size().height + font->get_height(font_size);
  1763. p_theme->set_constant("inspector_property_height", EditorStringName(Editor), p_config.inspector_property_height);
  1764. // EditorInspectorSection.
  1765. Color inspector_section_color = p_config.font_color.lerp(Color(0.5, 0.5, 0.5), 0.35);
  1766. p_theme->set_color(SceneStringName(font_color), "EditorInspectorSection", inspector_section_color);
  1767. Color inspector_indent_color = p_config.accent_color;
  1768. inspector_indent_color.a = 0.2;
  1769. Ref<StyleBoxFlat> inspector_indent_style = EditorThemeManager::make_flat_stylebox(inspector_indent_color, 2.0 * EDSCALE, 0, 2.0 * EDSCALE, 0);
  1770. p_theme->set_stylebox("indent_box", "EditorInspectorSection", inspector_indent_style);
  1771. p_theme->set_constant("indent_size", "EditorInspectorSection", 6.0 * EDSCALE);
  1772. p_theme->set_constant("h_separation", "EditorInspectorSection", 2.0 * EDSCALE);
  1773. Color prop_subsection_stylebox_color = Color(1, 1, 1, 0);
  1774. p_theme->set_color("prop_subsection_stylebox_color", EditorStringName(Editor), prop_subsection_stylebox_color);
  1775. Ref<StyleBoxFlat> prop_subsection_stylebox = p_config.base_style->duplicate();
  1776. prop_subsection_stylebox->set_bg_color(p_theme->get_color("prop_subsection_stylebox_color", EditorStringName(Editor)));
  1777. p_theme->set_stylebox("prop_subsection_stylebox", EditorStringName(Editor), prop_subsection_stylebox);
  1778. p_theme->set_stylebox("prop_subsection_stylebox_left", EditorStringName(Editor), prop_subsection_stylebox);
  1779. p_theme->set_stylebox("prop_subsection_stylebox_right", EditorStringName(Editor), prop_subsection_stylebox);
  1780. Color prop_category_color = p_config.dark_color_1.lerp(p_config.mono_color, 0.12);
  1781. Color prop_subsection_color = p_config.dark_color_1.lerp(p_config.mono_color, 0.06);
  1782. p_theme->set_color("prop_subsection", EditorStringName(Editor), prop_subsection_color);
  1783. #ifndef DISABLE_DEPRECATED // Used before 4.3.
  1784. p_theme->set_color("property_color", EditorStringName(Editor), prop_category_color);
  1785. #endif
  1786. // EditorInspectorCategory.
  1787. Ref<StyleBoxFlat> category_bg = p_config.base_style->duplicate();
  1788. category_bg->set_bg_color(prop_category_color);
  1789. category_bg->set_border_color(prop_category_color);
  1790. category_bg->set_content_margin_all(0);
  1791. p_theme->set_stylebox("bg", "EditorInspectorCategory", category_bg);
  1792. // EditorInspectorArray.
  1793. p_theme->set_color("bg", "EditorInspectorArray", p_config.dark_color_1);
  1794. p_theme->set_constant("inspector_margin", EditorStringName(Editor), 12 * EDSCALE);
  1795. // Colored EditorProperty.
  1796. for (int i = 0; i < 16; i++) {
  1797. Color si_base_color = p_config.accent_color;
  1798. float hue_rotate = (i * 2 % 16) / 16.0;
  1799. si_base_color.set_hsv(Math::fmod(float(si_base_color.get_h() + hue_rotate), float(1.0)), si_base_color.get_s(), si_base_color.get_v());
  1800. si_base_color = p_config.accent_color.lerp(si_base_color, p_config.subresource_hue_tint);
  1801. // Sub-inspector background.
  1802. Ref<StyleBoxFlat> sub_inspector_bg = p_config.base_style->duplicate();
  1803. sub_inspector_bg->set_bg_color(p_config.dark_color_1.lerp(si_base_color, 0.08));
  1804. sub_inspector_bg->set_border_width_all(2 * EDSCALE);
  1805. sub_inspector_bg->set_border_color(si_base_color * Color(0.7, 0.7, 0.7, 0.8));
  1806. sub_inspector_bg->set_content_margin_all(4 * EDSCALE);
  1807. sub_inspector_bg->set_corner_radius(CORNER_TOP_LEFT, 0);
  1808. sub_inspector_bg->set_corner_radius(CORNER_TOP_RIGHT, 0);
  1809. p_theme->set_stylebox("sub_inspector_bg" + itos(i + 1), EditorStringName(EditorStyles), sub_inspector_bg);
  1810. // EditorProperty background while it has a sub-inspector open.
  1811. Ref<StyleBoxFlat> bg_color = EditorThemeManager::make_flat_stylebox(si_base_color * Color(0.7, 0.7, 0.7, 0.8), 0, 0, 0, 0, p_config.corner_radius);
  1812. bg_color->set_anti_aliased(false);
  1813. bg_color->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1814. bg_color->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  1815. p_theme->set_stylebox("sub_inspector_property_bg" + itos(i + 1), EditorStringName(EditorStyles), bg_color);
  1816. // Dictionary editor add item.
  1817. // Expand to the left and right by 4px to compensate for the dictionary editor margins.
  1818. Color style_dictionary_bg_color = p_config.dark_color_3.lerp(si_base_color, 0.08);
  1819. Ref<StyleBoxFlat> style_dictionary_add_item = EditorThemeManager::make_flat_stylebox(style_dictionary_bg_color, 0, 4, 0, 4, p_config.corner_radius);
  1820. style_dictionary_add_item->set_expand_margin(SIDE_LEFT, 2 * EDSCALE);
  1821. style_dictionary_add_item->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
  1822. p_theme->set_stylebox("DictionaryAddItem" + itos(i + 1), EditorStringName(EditorStyles), style_dictionary_add_item);
  1823. // Object selector.
  1824. p_theme->set_type_variation("ObjectSelectorMargin", "MarginContainer");
  1825. p_theme->set_constant("margin_left", "ObjectSelectorMargin", 4 * EDSCALE);
  1826. p_theme->set_constant("margin_right", "ObjectSelectorMargin", 6 * EDSCALE);
  1827. }
  1828. Color si_base_color = p_config.accent_color;
  1829. // Sub-inspector background.
  1830. Ref<StyleBoxFlat> sub_inspector_bg = p_config.base_style->duplicate();
  1831. sub_inspector_bg->set_bg_color(Color(1, 1, 1, 0));
  1832. sub_inspector_bg->set_border_width_all(2 * EDSCALE);
  1833. sub_inspector_bg->set_border_color(p_config.dark_color_1.lerp(si_base_color, 0.15));
  1834. sub_inspector_bg->set_content_margin_all(4 * EDSCALE);
  1835. sub_inspector_bg->set_corner_radius(CORNER_TOP_LEFT, 0);
  1836. sub_inspector_bg->set_corner_radius(CORNER_TOP_RIGHT, 0);
  1837. p_theme->set_stylebox("sub_inspector_bg0", EditorStringName(EditorStyles), sub_inspector_bg);
  1838. // Sub-inspector background no border.
  1839. Ref<StyleBoxFlat> sub_inspector_bg_no_border = p_config.base_style->duplicate();
  1840. sub_inspector_bg_no_border->set_content_margin_all(2 * EDSCALE);
  1841. sub_inspector_bg_no_border->set_bg_color(p_config.dark_color_2.lerp(p_config.dark_color_3, 0.15));
  1842. p_theme->set_stylebox("sub_inspector_bg_no_border", EditorStringName(EditorStyles), sub_inspector_bg_no_border);
  1843. // EditorProperty background while it has a sub-inspector open.
  1844. Ref<StyleBoxFlat> bg_color = EditorThemeManager::make_flat_stylebox(p_config.dark_color_1.lerp(si_base_color, 0.15), 0, 0, 0, 0, p_config.corner_radius);
  1845. bg_color->set_anti_aliased(false);
  1846. bg_color->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1847. bg_color->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  1848. p_theme->set_stylebox("sub_inspector_property_bg0", EditorStringName(EditorStyles), bg_color);
  1849. p_theme->set_color("sub_inspector_property_color", EditorStringName(EditorStyles), p_config.dark_icon_and_font ? Color(1, 1, 1, 1) : Color(0, 0, 0, 1));
  1850. // Dictionary editor.
  1851. // Expand to the left and right by 4px to compensate for the dictionary editor margins.
  1852. Ref<StyleBoxFlat> style_dictionary_add_item = EditorThemeManager::make_flat_stylebox(prop_subsection_color, 0, 4, 0, 4, p_config.corner_radius);
  1853. style_dictionary_add_item->set_expand_margin(SIDE_LEFT, 2 * EDSCALE);
  1854. style_dictionary_add_item->set_expand_margin(SIDE_RIGHT, 2 * EDSCALE);
  1855. p_theme->set_stylebox("DictionaryAddItem0", EditorStringName(EditorStyles), style_dictionary_add_item);
  1856. }
  1857. // Animation Editor.
  1858. {
  1859. // Timeline general.
  1860. p_theme->set_constant("timeline_v_separation", "AnimationTrackEditor", 0);
  1861. p_theme->set_constant("track_v_separation", "AnimationTrackEditor", 0);
  1862. // AnimationTimelineEdit.
  1863. // "primary" is used for integer timeline values, "secondary" for decimals.
  1864. Ref<StyleBoxFlat> style_time_unavailable = EditorThemeManager::make_flat_stylebox(p_config.dark_color_3, 0, 0, 0, 0, 0);
  1865. Ref<StyleBoxFlat> style_time_available = EditorThemeManager::make_flat_stylebox(p_config.font_color * Color(1, 1, 1, 0.2), 0, 0, 0, 0, 0);
  1866. if (!p_config.dark_theme) {
  1867. style_time_unavailable = EditorThemeManager::make_flat_stylebox(p_config.font_color * Color(1, 1, 1, 0.2), 0, 0, 0, 0, 0);
  1868. style_time_available = EditorThemeManager::make_flat_stylebox(p_config.dark_color_3 * Color(1, 1, 1, 0.5), 0, 0, 0, 0, 0);
  1869. }
  1870. p_theme->set_stylebox("time_unavailable", "AnimationTimelineEdit", style_time_unavailable);
  1871. p_theme->set_stylebox("time_available", "AnimationTimelineEdit", style_time_available);
  1872. p_theme->set_color("v_line_primary_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.2));
  1873. p_theme->set_color("v_line_secondary_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.2));
  1874. p_theme->set_color("h_line_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.2));
  1875. p_theme->set_color("font_primary_color", "AnimationTimelineEdit", p_config.font_color);
  1876. p_theme->set_color("font_secondary_color", "AnimationTimelineEdit", p_config.font_color * Color(1, 1, 1, 0.5));
  1877. p_theme->set_constant("v_line_primary_margin", "AnimationTimelineEdit", 0);
  1878. p_theme->set_constant("v_line_secondary_margin", "AnimationTimelineEdit", 0);
  1879. p_theme->set_constant("v_line_primary_width", "AnimationTimelineEdit", 1 * EDSCALE);
  1880. p_theme->set_constant("v_line_secondary_width", "AnimationTimelineEdit", 1 * EDSCALE);
  1881. p_theme->set_constant("text_primary_margin", "AnimationTimelineEdit", 3 * EDSCALE);
  1882. p_theme->set_constant("text_secondary_margin", "AnimationTimelineEdit", 3 * EDSCALE);
  1883. // AnimationTrackEdit.
  1884. Ref<StyleBoxFlat> style_animation_track_odd = EditorThemeManager::make_flat_stylebox(Color(0.5, 0.5, 0.5, 0.05), 0, 0, 0, 0, p_config.corner_radius);
  1885. Ref<StyleBoxFlat> style_animation_track_hover = EditorThemeManager::make_flat_stylebox(Color(0.5, 0.5, 0.5, 0.1), 0, 0, 0, 0, p_config.corner_radius);
  1886. p_theme->set_stylebox("odd", "AnimationTrackEdit", style_animation_track_odd);
  1887. p_theme->set_stylebox(SceneStringName(hover), "AnimationTrackEdit", style_animation_track_hover);
  1888. p_theme->set_stylebox("focus", "AnimationTrackEdit", p_config.button_style_focus);
  1889. p_theme->set_color("h_line_color", "AnimationTrackEdit", p_config.font_color * Color(1, 1, 1, 0.2));
  1890. p_theme->set_constant("h_separation", "AnimationTrackEdit", (p_config.increased_margin + 2) * EDSCALE);
  1891. p_theme->set_constant("outer_margin", "AnimationTrackEdit", p_config.increased_margin * 6 * EDSCALE);
  1892. // AnimationTrackEditGroup.
  1893. Ref<StyleBoxFlat> style_animation_track_header = EditorThemeManager::make_flat_stylebox(p_config.dark_color_2 * Color(1, 1, 1, 0.6), p_config.increased_margin * 3, 0, 0, 0, p_config.corner_radius);
  1894. p_theme->set_stylebox("header", "AnimationTrackEditGroup", style_animation_track_header);
  1895. Ref<StyleBoxFlat> style_animation_track_group_hover = p_config.base_style->duplicate();
  1896. style_animation_track_group_hover->set_bg_color(p_config.highlight_color);
  1897. p_theme->set_stylebox(SceneStringName(hover), "AnimationTrackEditGroup", style_animation_track_group_hover);
  1898. p_theme->set_color("h_line_color", "AnimationTrackEditGroup", p_config.font_color * Color(1, 1, 1, 0.2));
  1899. p_theme->set_color("v_line_color", "AnimationTrackEditGroup", p_config.font_color * Color(1, 1, 1, 0.2));
  1900. p_theme->set_constant("h_separation", "AnimationTrackEditGroup", (p_config.increased_margin + 2) * EDSCALE);
  1901. p_theme->set_constant("v_separation", "AnimationTrackEditGroup", 0);
  1902. // AnimationBezierTrackEdit.
  1903. p_theme->set_color("focus_color", "AnimationBezierTrackEdit", p_config.accent_color * Color(1, 1, 1, 0.7));
  1904. p_theme->set_color("track_focus_color", "AnimationBezierTrackEdit", p_config.accent_color * Color(1, 1, 1, 0.5));
  1905. p_theme->set_color("h_line_color", "AnimationBezierTrackEdit", p_config.font_color * Color(1, 1, 1, 0.2));
  1906. p_theme->set_color("v_line_color", "AnimationBezierTrackEdit", p_config.font_color * Color(1, 1, 1, 0.2));
  1907. p_theme->set_constant("h_separation", "AnimationBezierTrackEdit", (p_config.increased_margin + 2) * EDSCALE);
  1908. p_theme->set_constant("v_separation", "AnimationBezierTrackEdit", p_config.forced_even_separation * EDSCALE);
  1909. }
  1910. // Editor help.
  1911. {
  1912. Ref<StyleBoxFlat> style_editor_help = p_config.base_style->duplicate();
  1913. style_editor_help->set_bg_color(p_config.dark_color_2);
  1914. style_editor_help->set_border_color(p_config.dark_color_3);
  1915. p_theme->set_stylebox("background", "EditorHelp", style_editor_help);
  1916. const Color kbd_color = p_config.font_color.lerp(Color(0.5, 0.5, 0.5), 0.5);
  1917. p_theme->set_color("title_color", "EditorHelp", p_config.accent_color);
  1918. p_theme->set_color("headline_color", "EditorHelp", p_config.mono_color_font);
  1919. p_theme->set_color("text_color", "EditorHelp", p_config.font_color);
  1920. p_theme->set_color("comment_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.6));
  1921. p_theme->set_color("symbol_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.6));
  1922. p_theme->set_color("value_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.6));
  1923. p_theme->set_color("qualifier_color", "EditorHelp", p_config.font_color * Color(1, 1, 1, 0.8));
  1924. p_theme->set_color("type_color", "EditorHelp", p_config.accent_color.lerp(p_config.font_color, 0.5));
  1925. p_theme->set_color("override_color", "EditorHelp", p_config.warning_color);
  1926. p_theme->set_color("selection_color", "EditorHelp", p_config.selection_color);
  1927. p_theme->set_color("link_color", "EditorHelp", p_config.accent_color.lerp(p_config.mono_color_font, 0.8));
  1928. p_theme->set_color("code_color", "EditorHelp", p_config.accent_color.lerp(p_config.mono_color_font, 0.6));
  1929. p_theme->set_color("kbd_color", "EditorHelp", p_config.accent_color.lerp(kbd_color, 0.6));
  1930. p_theme->set_color("code_bg_color", "EditorHelp", p_config.dark_color_3);
  1931. p_theme->set_color("kbd_bg_color", "EditorHelp", p_config.dark_color_1);
  1932. p_theme->set_color("param_bg_color", "EditorHelp", p_config.dark_color_1);
  1933. p_theme->set_constant(SceneStringName(line_separation), "EditorHelp", Math::round(6 * EDSCALE));
  1934. p_theme->set_constant("table_h_separation", "EditorHelp", 16 * EDSCALE);
  1935. p_theme->set_constant("table_v_separation", "EditorHelp", 6 * EDSCALE);
  1936. p_theme->set_constant("text_highlight_h_padding", "EditorHelp", 1 * EDSCALE);
  1937. p_theme->set_constant("text_highlight_v_padding", "EditorHelp", 2 * EDSCALE);
  1938. }
  1939. // EditorHelpBitTitle.
  1940. {
  1941. Ref<StyleBoxFlat> style = p_config.tree_panel_style->duplicate();
  1942. style->set_bg_color(p_config.dark_theme ? style->get_bg_color().lightened(0.04) : style->get_bg_color().darkened(0.04));
  1943. style->set_border_color(p_config.dark_theme ? style->get_border_color().lightened(0.04) : style->get_border_color().darkened(0.04));
  1944. if (p_config.draw_extra_borders) {
  1945. // A tooltip border is already drawn for all tooltips when Draw Extra Borders is enabled.
  1946. // Hide borders that don't serve in drawing a line between the title and content to prevent the border from being doubled.
  1947. style->set_border_width(SIDE_TOP, 0);
  1948. style->set_border_width(SIDE_LEFT, 0);
  1949. style->set_border_width(SIDE_RIGHT, 0);
  1950. }
  1951. style->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1952. style->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  1953. p_theme->set_type_variation("EditorHelpBitTitle", "RichTextLabel");
  1954. p_theme->set_stylebox(CoreStringName(normal), "EditorHelpBitTitle", style);
  1955. }
  1956. // EditorHelpBitContent.
  1957. {
  1958. Ref<StyleBoxFlat> style = p_config.tree_panel_style->duplicate();
  1959. if (p_config.draw_extra_borders) {
  1960. // A tooltip border is already drawn for all tooltips when Draw Extra Borders is enabled.
  1961. // Hide borders that don't serve in drawing a line between the title and content to prevent the border from being doubled.
  1962. style->set_border_width(SIDE_BOTTOM, 0);
  1963. style->set_border_width(SIDE_LEFT, 0);
  1964. style->set_border_width(SIDE_RIGHT, 0);
  1965. }
  1966. style->set_corner_radius(CORNER_TOP_LEFT, 0);
  1967. style->set_corner_radius(CORNER_TOP_RIGHT, 0);
  1968. p_theme->set_type_variation("EditorHelpBitContent", "RichTextLabel");
  1969. p_theme->set_stylebox(CoreStringName(normal), "EditorHelpBitContent", style);
  1970. }
  1971. // EditorHelpBit tooltip type variations.
  1972. {
  1973. p_theme->set_type_variation("EditorHelpBitTooltipTitle", "EditorHelpBitTitle");
  1974. p_theme->set_type_variation("EditorHelpBitTooltipContent", "EditorHelpBitContent");
  1975. }
  1976. // Asset Library.
  1977. p_theme->set_stylebox("bg", "AssetLib", p_config.base_empty_style);
  1978. p_theme->set_stylebox(SceneStringName(panel), "AssetLib", p_config.content_panel_style);
  1979. p_theme->set_stylebox("downloads", "AssetLib", p_theme->get_stylebox(SceneStringName(panel), SNAME("Tree")));
  1980. p_theme->set_color("status_color", "AssetLib", Color(0.5, 0.5, 0.5)); // FIXME: Use a defined color instead.
  1981. p_theme->set_icon("dismiss", "AssetLib", p_theme->get_icon(SNAME("Close"), EditorStringName(EditorIcons)));
  1982. // Debugger.
  1983. Ref<StyleBoxFlat> debugger_panel_style = p_config.content_panel_style->duplicate();
  1984. debugger_panel_style->set_border_width(SIDE_BOTTOM, 0);
  1985. p_theme->set_stylebox("DebuggerPanel", EditorStringName(EditorStyles), debugger_panel_style);
  1986. // ObjectDB.
  1987. {
  1988. Ref<StyleBoxFlat> style_content_wrapper = p_config.panel_container_style->duplicate();
  1989. style_content_wrapper->set_draw_center(true);
  1990. style_content_wrapper->set_bg_color(p_config.dark_color_2);
  1991. p_theme->set_stylebox("ObjectDBContentWrapper", EditorStringName(EditorStyles), style_content_wrapper);
  1992. Ref<StyleBoxFlat> style_title = style_content_wrapper->duplicate();
  1993. style_title->set_bg_color(p_config.dark_color_3);
  1994. p_theme->set_stylebox("ObjectDBTitle", EditorStringName(EditorStyles), style_title);
  1995. }
  1996. // Resource and node editors.
  1997. {
  1998. // TextureRegion editor.
  1999. Ref<StyleBoxFlat> style_texture_region_bg = p_config.tree_panel_style->duplicate();
  2000. style_texture_region_bg->set_content_margin_all(0);
  2001. p_theme->set_stylebox("TextureRegionPreviewBG", EditorStringName(EditorStyles), style_texture_region_bg);
  2002. p_theme->set_stylebox("TextureRegionPreviewFG", EditorStringName(EditorStyles), EditorThemeManager::make_empty_stylebox(0, 0, 0, 0));
  2003. // Theme editor.
  2004. {
  2005. p_theme->set_color("preview_picker_overlay_color", "ThemeEditor", Color(0.1, 0.1, 0.1, 0.25));
  2006. Color theme_preview_picker_bg_color = p_config.accent_color;
  2007. theme_preview_picker_bg_color.a = 0.2;
  2008. Ref<StyleBoxFlat> theme_preview_picker_sb = EditorThemeManager::make_flat_stylebox(theme_preview_picker_bg_color, 0, 0, 0, 0);
  2009. theme_preview_picker_sb->set_border_color(p_config.accent_color);
  2010. theme_preview_picker_sb->set_border_width_all(1.0 * EDSCALE);
  2011. p_theme->set_stylebox("preview_picker_overlay", "ThemeEditor", theme_preview_picker_sb);
  2012. Color theme_preview_picker_label_bg_color = p_config.accent_color;
  2013. theme_preview_picker_label_bg_color.set_v(0.5);
  2014. Ref<StyleBoxFlat> theme_preview_picker_label_sb = EditorThemeManager::make_flat_stylebox(theme_preview_picker_label_bg_color, 4.0, 1.0, 4.0, 3.0);
  2015. p_theme->set_stylebox("preview_picker_label", "ThemeEditor", theme_preview_picker_label_sb);
  2016. Ref<StyleBoxFlat> style_theme_preview_tab = p_theme->get_stylebox(SNAME("tab_selected"), SNAME("TabContainerOdd"))->duplicate();
  2017. style_theme_preview_tab->set_expand_margin(SIDE_BOTTOM, 5 * EDSCALE);
  2018. p_theme->set_stylebox("ThemeEditorPreviewFG", EditorStringName(EditorStyles), style_theme_preview_tab);
  2019. Ref<StyleBoxFlat> style_theme_preview_bg_tab = p_theme->get_stylebox(SNAME("tab_unselected"), SNAME("TabContainer"))->duplicate();
  2020. style_theme_preview_bg_tab->set_expand_margin(SIDE_BOTTOM, 2 * EDSCALE);
  2021. p_theme->set_stylebox("ThemeEditorPreviewBG", EditorStringName(EditorStyles), style_theme_preview_bg_tab);
  2022. }
  2023. // VisualShader editor.
  2024. p_theme->set_stylebox("label_style", "VShaderEditor", EditorThemeManager::make_empty_stylebox(4, 6, 4, 6));
  2025. // StateMachine graph.
  2026. {
  2027. p_theme->set_stylebox(SceneStringName(panel), "GraphStateMachine", p_config.tree_panel_style);
  2028. p_theme->set_stylebox("error_panel", "GraphStateMachine", p_config.tree_panel_style);
  2029. p_theme->set_color("error_color", "GraphStateMachine", p_config.error_color);
  2030. const int sm_margin_side = 10 * EDSCALE;
  2031. const int sm_margin_bottom = 2;
  2032. const Color sm_bg_color = p_config.dark_theme ? p_config.dark_color_3 : p_config.dark_color_1.lerp(p_config.mono_color, 0.09);
  2033. Ref<StyleBoxFlat> sm_node_style = EditorThemeManager::make_flat_stylebox(p_config.dark_color_3 * Color(1, 1, 1, 0.7), sm_margin_side, 24 * EDSCALE, sm_margin_side, sm_margin_bottom, p_config.corner_radius);
  2034. sm_node_style->set_border_width_all(p_config.border_width);
  2035. sm_node_style->set_border_color(sm_bg_color);
  2036. Ref<StyleBoxFlat> sm_node_selected_style = EditorThemeManager::make_flat_stylebox(sm_bg_color * Color(1, 1, 1, 0.9), sm_margin_side, 24 * EDSCALE, sm_margin_side, sm_margin_bottom, p_config.corner_radius);
  2037. sm_node_selected_style->set_border_width_all(2 * EDSCALE + p_config.border_width);
  2038. sm_node_selected_style->set_border_color(p_config.accent_color * Color(1, 1, 1, 0.9));
  2039. sm_node_selected_style->set_shadow_size(8 * EDSCALE);
  2040. sm_node_selected_style->set_shadow_color(p_config.shadow_color);
  2041. Ref<StyleBoxFlat> sm_node_playing_style = sm_node_selected_style->duplicate();
  2042. sm_node_playing_style->set_border_color(p_config.warning_color);
  2043. sm_node_playing_style->set_shadow_color(p_config.warning_color * Color(1, 1, 1, 0.2));
  2044. sm_node_playing_style->set_draw_center(false);
  2045. p_theme->set_stylebox("node_frame", "GraphStateMachine", sm_node_style);
  2046. p_theme->set_stylebox("node_frame_selected", "GraphStateMachine", sm_node_selected_style);
  2047. p_theme->set_stylebox("node_frame_playing", "GraphStateMachine", sm_node_playing_style);
  2048. Ref<StyleBoxFlat> sm_node_start_style = sm_node_style->duplicate();
  2049. sm_node_start_style->set_border_width_all(1 * EDSCALE);
  2050. sm_node_start_style->set_border_color(p_config.success_color.lightened(0.24));
  2051. p_theme->set_stylebox("node_frame_start", "GraphStateMachine", sm_node_start_style);
  2052. Ref<StyleBoxFlat> sm_node_end_style = sm_node_style->duplicate();
  2053. sm_node_end_style->set_border_width_all(1 * EDSCALE);
  2054. sm_node_end_style->set_border_color(p_config.error_color);
  2055. p_theme->set_stylebox("node_frame_end", "GraphStateMachine", sm_node_end_style);
  2056. p_theme->set_font("node_title_font", "GraphStateMachine", p_theme->get_font(SceneStringName(font), SNAME("Label")));
  2057. p_theme->set_font_size("node_title_font_size", "GraphStateMachine", p_theme->get_font_size(SceneStringName(font_size), SNAME("Label")));
  2058. p_theme->set_color("node_title_font_color", "GraphStateMachine", p_config.font_color);
  2059. p_theme->set_color("transition_color", "GraphStateMachine", p_config.font_color);
  2060. p_theme->set_color("transition_disabled_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.2));
  2061. p_theme->set_color("transition_icon_color", "GraphStateMachine", Color(1, 1, 1));
  2062. p_theme->set_color("transition_icon_disabled_color", "GraphStateMachine", Color(1, 1, 1, 0.2));
  2063. p_theme->set_color("highlight_color", "GraphStateMachine", p_config.accent_color);
  2064. p_theme->set_color("highlight_disabled_color", "GraphStateMachine", p_config.accent_color * Color(1, 1, 1, 0.6));
  2065. p_theme->set_color("focus_color", "GraphStateMachine", p_config.accent_color);
  2066. p_theme->set_color("guideline_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.3));
  2067. p_theme->set_color("playback_color", "GraphStateMachine", p_config.font_color);
  2068. p_theme->set_color("playback_background_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.3));
  2069. }
  2070. }
  2071. // TileSet editor.
  2072. p_theme->set_stylebox("expand_panel", "TileSetEditor", p_config.tree_panel_style);
  2073. }