editor_themes.cpp 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  1. /*************************************************************************/
  2. /* editor_themes.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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 "editor_themes.h"
  31. #include "core/error/error_macros.h"
  32. #include "core/io/resource_loader.h"
  33. #include "editor/editor_fonts.h"
  34. #include "editor/editor_icons.gen.h"
  35. #include "editor/editor_scale.h"
  36. #include "editor/editor_settings.h"
  37. #include "modules/modules_enabled.gen.h" // For svg.
  38. #ifdef MODULE_SVG_ENABLED
  39. #include "modules/svg/image_loader_svg.h"
  40. #endif
  41. HashMap<Color, Color> EditorColorMap::editor_color_map;
  42. void EditorColorMap::add_color_pair(const String p_from_color, const String p_to_color) {
  43. editor_color_map[Color::html(p_from_color)] = Color::html(p_to_color);
  44. }
  45. void EditorColorMap::create() {
  46. // Some of the colors below are listed for completeness sake.
  47. // This can be a basis for proper palette validation later.
  48. // Convert: FROM TO
  49. add_color_pair("#478cbf", "#478cbf"); // Godot Blue
  50. add_color_pair("#414042", "#414042"); // Godot Gray
  51. add_color_pair("#ffffff", "#414141"); // Pure white
  52. add_color_pair("#000000", "#bfbfbf"); // Pure black
  53. // Keep pure RGB colors as is, but list them for explicitly.
  54. add_color_pair("#ff0000", "#ff0000"); // Pure red
  55. add_color_pair("#00ff00", "#00ff00"); // Pure green
  56. add_color_pair("#0000ff", "#0000ff"); // Pure blue
  57. // GUI Colors
  58. add_color_pair("#e0e0e0", "#5a5a5a"); // Common icon color
  59. add_color_pair("#fefefe", "#fefefe"); // Forced light color
  60. add_color_pair("#808080", "#808080"); // GUI disabled color
  61. add_color_pair("#b3b3b3", "#363636"); // GUI disabled light color
  62. add_color_pair("#699ce8", "#699ce8"); // GUI highlight color
  63. add_color_pair("#f9f9f9", "#606060"); // Scrollbar grabber highlight color
  64. add_color_pair("#c38ef1", "#a85de9"); // Animation
  65. add_color_pair("#fc7f7f", "#cd3838"); // Spatial
  66. add_color_pair("#8da5f3", "#3d64dd"); // 2D
  67. add_color_pair("#4b70ea", "#1a3eac"); // 2D Dark
  68. add_color_pair("#8eef97", "#2fa139"); // Control
  69. add_color_pair("#5fb2ff", "#0079f0"); // Selection (blue)
  70. add_color_pair("#003e7a", "#2b74bb"); // Selection (darker blue)
  71. add_color_pair("#f7f5cf", "#615f3a"); // Gizmo (yellow)
  72. // Rainbow
  73. add_color_pair("#ff4545", "#ff2929"); // Red
  74. add_color_pair("#ffe345", "#ffe337"); // Yellow
  75. add_color_pair("#80ff45", "#74ff34"); // Green
  76. add_color_pair("#45ffa2", "#2cff98"); // Aqua
  77. add_color_pair("#45d7ff", "#22ccff"); // Blue
  78. add_color_pair("#8045ff", "#702aff"); // Purple
  79. add_color_pair("#ff4596", "#ff2781"); // Pink
  80. // Audio gradients
  81. add_color_pair("#e1da5b", "#d6cf4b"); // Yellow
  82. add_color_pair("#62aeff", "#1678e0"); // Frozen gradient top
  83. add_color_pair("#75d1e6", "#41acc5"); // Frozen gradient middle
  84. add_color_pair("#84ffee", "#49ccba"); // Frozen gradient bottom
  85. add_color_pair("#f70000", "#c91616"); // Color track red
  86. add_color_pair("#eec315", "#d58c0b"); // Color track orange
  87. add_color_pair("#dbee15", "#b7d10a"); // Color track yellow
  88. add_color_pair("#288027", "#218309"); // Color track green
  89. // Resource groups
  90. add_color_pair("#ffca5f", "#fea900"); // Mesh resource (orange)
  91. add_color_pair("#2998ff", "#68b6ff"); // Shape resource (blue)
  92. add_color_pair("#a2d2ff", "#4998e3"); // Shape resource (light blue)
  93. // Animation editor tracks
  94. // The property track icon color is set by the common icon color.
  95. add_color_pair("#ea7940", "#bd5e2c"); // 3D Position track
  96. add_color_pair("#ff2b88", "#bd165f"); // 3D Rotation track
  97. add_color_pair("#eac840", "#bd9d1f"); // 3D Scale track
  98. add_color_pair("#3cf34e", "#16a827"); // Call Method track
  99. add_color_pair("#2877f6", "#236be6"); // Bezier Curve track
  100. add_color_pair("#eae440", "#9f9722"); // Audio Playback track
  101. add_color_pair("#a448f0", "#9853ce"); // Animation Playback track
  102. add_color_pair("#5ad5c4", "#0a9c88"); // Blend Shape track
  103. // Control layouts
  104. add_color_pair("#d6d6d6", "#474747"); // Highlighted part
  105. add_color_pair("#474747", "#d6d6d6"); // Background part
  106. add_color_pair("#919191", "#6e6e6e"); // Border part
  107. // TileSet editor icons
  108. add_color_pair("#fce00e", "#aa8d24"); // New Single Tile
  109. add_color_pair("#0e71fc", "#0350bd"); // New Autotile
  110. add_color_pair("#c6ced4", "#828f9b"); // New Atlas
  111. // Visual script
  112. add_color_pair("#41ecad", "#25e3a0"); // VisualScript variant
  113. add_color_pair("#6f91f0", "#6d8eeb"); // VisualScript bool
  114. add_color_pair("#5abbef", "#4fb2e9"); // VisualScript int
  115. add_color_pair("#35d4f4", "#27ccf0"); // VisualScript float
  116. add_color_pair("#4593ec", "#4690e7"); // VisualScript String
  117. add_color_pair("#ac73f1", "#ad76ee"); // VisualScript Vector2
  118. add_color_pair("#f1738f", "#ee758e"); // VisualScript Rect2
  119. add_color_pair("#de66f0", "#dc6aed"); // VisualScript Vector3
  120. add_color_pair("#b9ec41", "#96ce1a"); // VisualScript Transform2D
  121. add_color_pair("#f74949", "#f77070"); // VisualScript Plane
  122. add_color_pair("#ec418e", "#ec69a3"); // VisualScript Quat
  123. add_color_pair("#ee5677", "#ee7991"); // VisualScript AABB
  124. add_color_pair("#e1ec41", "#b2bb19"); // VisualScript Basis
  125. add_color_pair("#f68f45", "#f49047"); // VisualScript Transform
  126. add_color_pair("#417aec", "#6993ec"); // VisualScript NodePath
  127. add_color_pair("#41ec80", "#2ce573"); // VisualScript RID
  128. add_color_pair("#55f3e3", "#12d5c3"); // VisualScript Object
  129. add_color_pair("#54ed9e", "#57e99f"); // VisualScript Dictionary
  130. // Visual shaders
  131. add_color_pair("#77ce57", "#67c046"); // Vector funcs
  132. add_color_pair("#ea686c", "#d95256"); // Vector transforms
  133. add_color_pair("#eac968", "#d9b64f"); // Textures and cubemaps
  134. add_color_pair("#cf68ea", "#c050dd"); // Functions and expressions
  135. }
  136. static Ref<StyleBoxTexture> make_stylebox(Ref<Texture2D> p_texture, float p_left, float p_top, float p_right, float p_bottom, float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1, bool p_draw_center = true) {
  137. Ref<StyleBoxTexture> style(memnew(StyleBoxTexture));
  138. style->set_texture(p_texture);
  139. style->set_margin_size(SIDE_LEFT, p_left * EDSCALE);
  140. style->set_margin_size(SIDE_RIGHT, p_right * EDSCALE);
  141. style->set_margin_size(SIDE_BOTTOM, p_bottom * EDSCALE);
  142. style->set_margin_size(SIDE_TOP, p_top * EDSCALE);
  143. style->set_default_margin(SIDE_LEFT, p_margin_left * EDSCALE);
  144. style->set_default_margin(SIDE_RIGHT, p_margin_right * EDSCALE);
  145. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * EDSCALE);
  146. style->set_default_margin(SIDE_TOP, p_margin_top * EDSCALE);
  147. style->set_draw_center(p_draw_center);
  148. return style;
  149. }
  150. static Ref<StyleBoxEmpty> make_empty_stylebox(float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1) {
  151. Ref<StyleBoxEmpty> style(memnew(StyleBoxEmpty));
  152. style->set_default_margin(SIDE_LEFT, p_margin_left * EDSCALE);
  153. style->set_default_margin(SIDE_RIGHT, p_margin_right * EDSCALE);
  154. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * EDSCALE);
  155. style->set_default_margin(SIDE_TOP, p_margin_top * EDSCALE);
  156. return style;
  157. }
  158. static Ref<StyleBoxFlat> make_flat_stylebox(Color p_color, float p_margin_left = -1, float p_margin_top = -1, float p_margin_right = -1, float p_margin_bottom = -1, int p_corner_width = 0) {
  159. Ref<StyleBoxFlat> style(memnew(StyleBoxFlat));
  160. style->set_bg_color(p_color);
  161. // Adjust level of detail based on the corners' effective sizes.
  162. style->set_corner_detail(Math::ceil(1.5 * p_corner_width * EDSCALE));
  163. style->set_corner_radius_all(p_corner_width * EDSCALE);
  164. style->set_default_margin(SIDE_LEFT, p_margin_left * EDSCALE);
  165. style->set_default_margin(SIDE_RIGHT, p_margin_right * EDSCALE);
  166. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * EDSCALE);
  167. style->set_default_margin(SIDE_TOP, p_margin_top * EDSCALE);
  168. // Work around issue about antialiased edges being blurrier (GH-35279).
  169. style->set_anti_aliased(false);
  170. return style;
  171. }
  172. static Ref<StyleBoxLine> make_line_stylebox(Color p_color, int p_thickness = 1, float p_grow_begin = 1, float p_grow_end = 1, bool p_vertical = false) {
  173. Ref<StyleBoxLine> style(memnew(StyleBoxLine));
  174. style->set_color(p_color);
  175. style->set_grow_begin(p_grow_begin);
  176. style->set_grow_end(p_grow_end);
  177. style->set_thickness(p_thickness);
  178. style->set_vertical(p_vertical);
  179. return style;
  180. }
  181. static Ref<Texture2D> flip_icon(Ref<Texture2D> p_texture, bool p_flip_y = false, bool p_flip_x = false) {
  182. if (!p_flip_y && !p_flip_x) {
  183. return p_texture;
  184. }
  185. Ref<Image> img = p_texture->get_image();
  186. ERR_FAIL_NULL_V(img, Ref<Texture2D>());
  187. img = img->duplicate();
  188. if (p_flip_y) {
  189. img->flip_y();
  190. }
  191. if (p_flip_x) {
  192. img->flip_x();
  193. }
  194. return ImageTexture::create_from_image(img);
  195. }
  196. #ifdef MODULE_SVG_ENABLED
  197. // See also `generate_icon()` in `scene/resources/default_theme.cpp`.
  198. static Ref<ImageTexture> editor_generate_icon(int p_index, float p_scale, float p_saturation, const HashMap<Color, Color> &p_convert_colors = HashMap<Color, Color>()) {
  199. Ref<Image> img = memnew(Image);
  200. // Upsample icon generation only if the editor scale isn't an integer multiplier.
  201. // Generating upsampled icons is slower, and the benefit is hardly visible
  202. // with integer editor scales.
  203. const bool upsample = !Math::is_equal_approx(Math::round(p_scale), p_scale);
  204. ImageLoaderSVG img_loader;
  205. img_loader.create_image_from_string(img, editor_icons_sources[p_index], p_scale, upsample, p_convert_colors);
  206. if (p_saturation != 1.0) {
  207. img->adjust_bcs(1.0, 1.0, p_saturation);
  208. }
  209. // In this case filter really helps.
  210. return ImageTexture::create_from_image(img);
  211. }
  212. #endif
  213. void editor_register_and_generate_icons(Ref<Theme> p_theme, bool p_dark_theme = true, int p_thumb_size = 32, bool p_only_thumbs = false, float p_icon_saturation = 1.0) {
  214. #ifdef MODULE_SVG_ENABLED
  215. HashMap<Color, Color> icon_color_map;
  216. // The names of the icons to never convert, even if one of their colors
  217. // are contained in the dictionary above.
  218. HashSet<StringName> exceptions;
  219. if (!p_dark_theme) {
  220. for (KeyValue<Color, Color> &E : EditorColorMap::get()) {
  221. icon_color_map[E.key] = E.value;
  222. }
  223. exceptions.insert("EditorPivot");
  224. exceptions.insert("EditorHandle");
  225. exceptions.insert("Editor3DHandle");
  226. exceptions.insert("EditorBoneHandle");
  227. exceptions.insert("Godot");
  228. exceptions.insert("Sky");
  229. exceptions.insert("EditorControlAnchor");
  230. exceptions.insert("DefaultProjectIcon");
  231. exceptions.insert("GuiChecked");
  232. exceptions.insert("GuiRadioChecked");
  233. exceptions.insert("GuiIndeterminate");
  234. exceptions.insert("GuiCloseCustomizable");
  235. exceptions.insert("GuiGraphNodePort");
  236. exceptions.insert("GuiResizer");
  237. exceptions.insert("ZoomMore");
  238. exceptions.insert("ZoomLess");
  239. exceptions.insert("ZoomReset");
  240. exceptions.insert("LockViewport");
  241. exceptions.insert("GroupViewport");
  242. exceptions.insert("StatusError");
  243. exceptions.insert("StatusSuccess");
  244. exceptions.insert("StatusWarning");
  245. exceptions.insert("OverbrightIndicator");
  246. exceptions.insert("GuiMiniCheckerboard");
  247. // Prevents Code Editor icons from changing
  248. exceptions.insert("GuiTab");
  249. exceptions.insert("GuiSpace");
  250. exceptions.insert("CodeFoldedRightArrow");
  251. exceptions.insert("CodeFoldDownArrow");
  252. exceptions.insert("TextEditorPlay");
  253. exceptions.insert("Breakpoint");
  254. }
  255. // These ones should be converted even if we are using a dark theme.
  256. const Color error_color = p_theme->get_color(SNAME("error_color"), SNAME("Editor"));
  257. const Color success_color = p_theme->get_color(SNAME("success_color"), SNAME("Editor"));
  258. const Color warning_color = p_theme->get_color(SNAME("warning_color"), SNAME("Editor"));
  259. icon_color_map[Color::html("#ff5f5f")] = error_color;
  260. icon_color_map[Color::html("#5fff97")] = success_color;
  261. icon_color_map[Color::html("#ffdd65")] = warning_color;
  262. // Use the accent color for some icons (checkbox, radio, toggle, etc.).
  263. HashMap<Color, Color> accent_color_map;
  264. HashSet<StringName> accent_color_icons;
  265. const Color accent_color = p_theme->get_color(SNAME("accent_color"), SNAME("Editor"));
  266. accent_color_map[Color::html("699ce8")] = accent_color;
  267. if (accent_color.get_luminance() > 0.75) {
  268. accent_color_map[Color::html("ffffff")] = Color(0.2, 0.2, 0.2);
  269. }
  270. accent_color_icons.insert("GuiChecked");
  271. accent_color_icons.insert("GuiRadioChecked");
  272. accent_color_icons.insert("GuiIndeterminate");
  273. accent_color_icons.insert("GuiToggleOn");
  274. accent_color_icons.insert("GuiToggleOnMirrored");
  275. accent_color_icons.insert("PlayOverlay");
  276. // Generate icons.
  277. if (!p_only_thumbs) {
  278. for (int i = 0; i < editor_icons_count; i++) {
  279. Ref<ImageTexture> icon;
  280. if (accent_color_icons.has(editor_icons_names[i])) {
  281. icon = editor_generate_icon(i, EDSCALE, 1.0, accent_color_map);
  282. } else {
  283. float saturation = p_icon_saturation;
  284. if (strcmp(editor_icons_names[i], "DefaultProjectIcon") == 0 || strcmp(editor_icons_names[i], "Godot") == 0 || strcmp(editor_icons_names[i], "Logo") == 0) {
  285. saturation = 1.0;
  286. }
  287. const int is_exception = exceptions.has(editor_icons_names[i]);
  288. if (is_exception) {
  289. icon = editor_generate_icon(i, EDSCALE, saturation);
  290. } else {
  291. icon = editor_generate_icon(i, EDSCALE, saturation, icon_color_map);
  292. }
  293. }
  294. p_theme->set_icon(editor_icons_names[i], SNAME("EditorIcons"), icon);
  295. }
  296. }
  297. // Generate thumbnail icons with the given thumbnail size.
  298. // We don't need filtering when generating at one of the default resolutions.
  299. const bool force_filter = p_thumb_size != 64 && p_thumb_size != 32;
  300. if (p_thumb_size >= 64) {
  301. const float scale = (float)p_thumb_size / 64.0 * EDSCALE;
  302. for (int i = 0; i < editor_bg_thumbs_count; i++) {
  303. const int index = editor_bg_thumbs_indices[i];
  304. const int is_exception = exceptions.has(editor_icons_names[index]);
  305. Ref<ImageTexture> icon;
  306. if (!p_dark_theme && !is_exception) {
  307. icon = editor_generate_icon(index, scale, force_filter, icon_color_map);
  308. } else {
  309. icon = editor_generate_icon(index, scale, force_filter);
  310. }
  311. p_theme->set_icon(editor_icons_names[index], SNAME("EditorIcons"), icon);
  312. }
  313. } else {
  314. const float scale = (float)p_thumb_size / 32.0 * EDSCALE;
  315. for (int i = 0; i < editor_md_thumbs_count; i++) {
  316. const int index = editor_md_thumbs_indices[i];
  317. const bool is_exception = exceptions.has(editor_icons_names[index]);
  318. Ref<ImageTexture> icon;
  319. if (!p_dark_theme && !is_exception) {
  320. icon = editor_generate_icon(index, scale, force_filter, icon_color_map);
  321. } else {
  322. icon = editor_generate_icon(index, scale, force_filter);
  323. }
  324. p_theme->set_icon(editor_icons_names[index], SNAME("EditorIcons"), icon);
  325. }
  326. }
  327. #else
  328. WARN_PRINT("SVG support disabled, editor icons won't be rendered.");
  329. #endif
  330. }
  331. Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
  332. Ref<Theme> theme = Ref<Theme>(memnew(Theme));
  333. // Controls may rely on the scale for their internal drawing logic.
  334. theme->set_default_base_scale(EDSCALE);
  335. // Theme settings
  336. Color accent_color = EDITOR_GET("interface/theme/accent_color");
  337. Color base_color = EDITOR_GET("interface/theme/base_color");
  338. float contrast = EDITOR_GET("interface/theme/contrast");
  339. float icon_saturation = EDITOR_GET("interface/theme/icon_saturation");
  340. float relationship_line_opacity = EDITOR_GET("interface/theme/relationship_line_opacity");
  341. String preset = EDITOR_GET("interface/theme/preset");
  342. int border_size = EDITOR_GET("interface/theme/border_size");
  343. int corner_radius = EDITOR_GET("interface/theme/corner_radius");
  344. Color preset_accent_color;
  345. Color preset_base_color;
  346. float preset_contrast = 0;
  347. const float default_contrast = 0.3;
  348. // Please use alphabetical order if you're adding a new theme here
  349. // (after "Custom")
  350. if (preset == "Custom") {
  351. accent_color = EDITOR_GET("interface/theme/accent_color");
  352. base_color = EDITOR_GET("interface/theme/base_color");
  353. contrast = EDITOR_GET("interface/theme/contrast");
  354. } else if (preset == "Breeze Dark") {
  355. preset_accent_color = Color(0.26, 0.76, 1.00);
  356. preset_base_color = Color(0.24, 0.26, 0.28);
  357. preset_contrast = default_contrast;
  358. } else if (preset == "Godot 2") {
  359. preset_accent_color = Color(0.53, 0.67, 0.89);
  360. preset_base_color = Color(0.24, 0.23, 0.27);
  361. preset_contrast = default_contrast;
  362. } else if (preset == "Gray") {
  363. preset_accent_color = Color(0.44, 0.73, 0.98);
  364. preset_base_color = Color(0.24, 0.24, 0.24);
  365. preset_contrast = default_contrast;
  366. } else if (preset == "Light") {
  367. preset_accent_color = Color(0.18, 0.50, 1.00);
  368. preset_base_color = Color(0.9, 0.9, 0.9);
  369. // A negative contrast rate looks better for light themes, since it better follows the natural order of UI "elevation".
  370. preset_contrast = -0.08;
  371. } else if (preset == "Solarized (Dark)") {
  372. preset_accent_color = Color(0.15, 0.55, 0.82);
  373. preset_base_color = Color(0.04, 0.23, 0.27);
  374. preset_contrast = default_contrast;
  375. } else if (preset == "Solarized (Light)") {
  376. preset_accent_color = Color(0.15, 0.55, 0.82);
  377. preset_base_color = Color(0.89, 0.86, 0.79);
  378. // A negative contrast rate looks better for light themes, since it better follows the natural order of UI "elevation".
  379. preset_contrast = -0.08;
  380. } else { // Default
  381. preset_accent_color = Color(0.44, 0.73, 0.98);
  382. preset_base_color = Color(0.21, 0.24, 0.29);
  383. preset_contrast = default_contrast;
  384. }
  385. if (preset != "Custom") {
  386. accent_color = preset_accent_color;
  387. base_color = preset_base_color;
  388. contrast = preset_contrast;
  389. EditorSettings::get_singleton()->set_initial_value("interface/theme/accent_color", accent_color);
  390. EditorSettings::get_singleton()->set_initial_value("interface/theme/base_color", base_color);
  391. EditorSettings::get_singleton()->set_initial_value("interface/theme/contrast", contrast);
  392. }
  393. EditorSettings::get_singleton()->set_manually("interface/theme/preset", preset);
  394. EditorSettings::get_singleton()->set_manually("interface/theme/accent_color", accent_color);
  395. EditorSettings::get_singleton()->set_manually("interface/theme/base_color", base_color);
  396. EditorSettings::get_singleton()->set_manually("interface/theme/contrast", contrast);
  397. // Colors
  398. bool dark_theme = EditorSettings::get_singleton()->is_dark_theme();
  399. // Ensure base colors are in the 0..1 luminance range to avoid 8-bit integer overflow or text rendering issues.
  400. // Some places in the editor use 8-bit integer colors.
  401. const Color dark_color_1 = base_color.lerp(Color(0, 0, 0, 1), contrast).clamp();
  402. const Color dark_color_2 = base_color.lerp(Color(0, 0, 0, 1), contrast * 1.5).clamp();
  403. const Color dark_color_3 = base_color.lerp(Color(0, 0, 0, 1), contrast * 2).clamp();
  404. const Color background_color = dark_color_2;
  405. // White (dark theme) or black (light theme), will be used to generate the rest of the colors
  406. const Color mono_color = dark_theme ? Color(1, 1, 1) : Color(0, 0, 0);
  407. const Color contrast_color_1 = base_color.lerp(mono_color, MAX(contrast, default_contrast));
  408. const Color contrast_color_2 = base_color.lerp(mono_color, MAX(contrast * 1.5, default_contrast * 1.5));
  409. const Color font_color = mono_color.lerp(base_color, 0.25);
  410. const Color font_hover_color = mono_color.lerp(base_color, 0.125);
  411. const Color font_focus_color = mono_color.lerp(base_color, 0.125);
  412. const Color font_hover_pressed_color = font_hover_color.lerp(accent_color, 0.74);
  413. const Color font_disabled_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.3);
  414. const Color font_readonly_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.65);
  415. const Color font_placeholder_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.6);
  416. const Color selection_color = accent_color * Color(1, 1, 1, 0.4);
  417. const Color disabled_color = mono_color.inverted().lerp(base_color, 0.7);
  418. const Color disabled_bg_color = mono_color.inverted().lerp(base_color, 0.9);
  419. const Color icon_normal_color = Color(1, 1, 1);
  420. Color icon_hover_color = icon_normal_color * (dark_theme ? 1.15 : 1.45);
  421. icon_hover_color.a = 1.0;
  422. Color icon_focus_color = icon_hover_color;
  423. Color icon_disabled_color = Color(icon_normal_color, 0.4);
  424. // Make the pressed icon color overbright because icons are not completely white on a dark theme.
  425. // On a light theme, icons are dark, so we need to modulate them with an even brighter color.
  426. Color icon_pressed_color = accent_color * (dark_theme ? 1.15 : 3.5);
  427. icon_pressed_color.a = 1.0;
  428. const Color separator_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.1);
  429. const Color highlight_color = Color(accent_color.r, accent_color.g, accent_color.b, 0.275);
  430. const Color disabled_highlight_color = highlight_color.lerp(dark_theme ? Color(0, 0, 0) : Color(1, 1, 1), 0.5);
  431. float prev_icon_saturation = theme->has_color(SNAME("icon_saturation"), SNAME("Editor")) ? theme->get_color(SNAME("icon_saturation"), SNAME("Editor")).r : 1.0;
  432. theme->set_color("icon_saturation", "Editor", Color(icon_saturation, icon_saturation, icon_saturation)); // can't save single float in theme, so using color
  433. theme->set_color("accent_color", "Editor", accent_color);
  434. theme->set_color("highlight_color", "Editor", highlight_color);
  435. theme->set_color("disabled_highlight_color", "Editor", disabled_highlight_color);
  436. theme->set_color("base_color", "Editor", base_color);
  437. theme->set_color("dark_color_1", "Editor", dark_color_1);
  438. theme->set_color("dark_color_2", "Editor", dark_color_2);
  439. theme->set_color("dark_color_3", "Editor", dark_color_3);
  440. theme->set_color("contrast_color_1", "Editor", contrast_color_1);
  441. theme->set_color("contrast_color_2", "Editor", contrast_color_2);
  442. theme->set_color("box_selection_fill_color", "Editor", accent_color * Color(1, 1, 1, 0.3));
  443. theme->set_color("box_selection_stroke_color", "Editor", accent_color * Color(1, 1, 1, 0.8));
  444. theme->set_color("axis_x_color", "Editor", Color(0.96, 0.20, 0.32));
  445. theme->set_color("axis_y_color", "Editor", Color(0.53, 0.84, 0.01));
  446. theme->set_color("axis_z_color", "Editor", Color(0.16, 0.55, 0.96));
  447. theme->set_color("axis_w_color", "Editor", Color(0.55, 0.55, 0.55));
  448. const float prop_color_saturation = accent_color.get_s() * 0.75;
  449. const float prop_color_value = accent_color.get_v();
  450. theme->set_color("property_color_x", "Editor", Color().from_hsv(0.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  451. theme->set_color("property_color_y", "Editor", Color().from_hsv(1.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  452. theme->set_color("property_color_z", "Editor", Color().from_hsv(2.0 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  453. theme->set_color("property_color_w", "Editor", Color().from_hsv(1.5 / 3.0 + 0.05, prop_color_saturation, prop_color_value));
  454. theme->set_color("font_color", "Editor", font_color);
  455. theme->set_color("highlighted_font_color", "Editor", font_hover_color);
  456. theme->set_color("disabled_font_color", "Editor", font_disabled_color);
  457. theme->set_color("readonly_font_color", "Editor", font_readonly_color);
  458. theme->set_color("mono_color", "Editor", mono_color);
  459. Color success_color = Color(0.45, 0.95, 0.5);
  460. Color warning_color = Color(1, 0.87, 0.4);
  461. Color error_color = Color(1, 0.47, 0.42);
  462. Color property_color = font_color.lerp(Color(0.5, 0.5, 0.5), 0.5);
  463. Color readonly_color = property_color.lerp(dark_theme ? Color(0, 0, 0) : Color(1, 1, 1), 0.25);
  464. Color readonly_warning_color = error_color.lerp(dark_theme ? Color(0, 0, 0) : Color(1, 1, 1), 0.25);
  465. if (!dark_theme) {
  466. // Darken some colors to be readable on a light background
  467. success_color = success_color.lerp(mono_color, 0.35);
  468. warning_color = warning_color.lerp(mono_color, 0.35);
  469. error_color = error_color.lerp(mono_color, 0.25);
  470. }
  471. theme->set_color("success_color", "Editor", success_color);
  472. theme->set_color("warning_color", "Editor", warning_color);
  473. theme->set_color("error_color", "Editor", error_color);
  474. theme->set_color("property_color", "Editor", property_color);
  475. theme->set_color("readonly_color", "Editor", readonly_color);
  476. if (!dark_theme) {
  477. theme->set_color("vulkan_color", "Editor", Color::hex(0xad1128ff));
  478. } else {
  479. theme->set_color("vulkan_color", "Editor", Color(1.0, 0.0, 0.0));
  480. }
  481. const int thumb_size = EDITOR_GET("filesystem/file_dialog/thumbnail_size");
  482. theme->set_constant("scale", "Editor", EDSCALE);
  483. theme->set_constant("thumb_size", "Editor", thumb_size);
  484. theme->set_constant("dark_theme", "Editor", dark_theme);
  485. theme->set_constant("color_picker_button_height", "Editor", 28 * EDSCALE);
  486. // Register icons + font
  487. // The editor scale, icon color (dark_theme bool), icon saturation, and accent color has not changed, so we do not regenerate the icons.
  488. if (p_theme != nullptr && fabs(p_theme->get_constant(SNAME("scale"), SNAME("Editor")) - EDSCALE) < 0.00001 && (bool)p_theme->get_constant(SNAME("dark_theme"), SNAME("Editor")) == dark_theme && prev_icon_saturation == icon_saturation && p_theme->get_color(SNAME("accent_color"), SNAME("Editor")) == accent_color) {
  489. // Register already generated icons.
  490. for (int i = 0; i < editor_icons_count; i++) {
  491. theme->set_icon(editor_icons_names[i], SNAME("EditorIcons"), p_theme->get_icon(editor_icons_names[i], SNAME("EditorIcons")));
  492. }
  493. } else {
  494. editor_register_and_generate_icons(theme, dark_theme, thumb_size, false, icon_saturation);
  495. }
  496. // Thumbnail size has changed, so we regenerate the medium sizes
  497. if (p_theme != nullptr && fabs((double)p_theme->get_constant(SNAME("thumb_size"), SNAME("Editor")) - thumb_size) > 0.00001) {
  498. editor_register_and_generate_icons(p_theme, dark_theme, thumb_size, true);
  499. }
  500. editor_register_fonts(theme);
  501. // Ensure borders are visible when using an editor scale below 100%.
  502. const int border_width = CLAMP(border_size, 0, 2) * MAX(1, EDSCALE);
  503. const int corner_width = CLAMP(corner_radius, 0, 6);
  504. const int default_margin_size = 4;
  505. const int margin_size_extra = default_margin_size + CLAMP(border_size, 0, 2);
  506. // Styleboxes
  507. // This is the most commonly used stylebox, variations should be made as duplicate of this
  508. Ref<StyleBoxFlat> style_default = make_flat_stylebox(base_color, default_margin_size, default_margin_size, default_margin_size, default_margin_size, corner_width);
  509. style_default->set_border_width_all(border_width);
  510. style_default->set_border_color(base_color);
  511. style_default->set_draw_center(true);
  512. // Button and widgets
  513. const float extra_spacing = EDITOR_GET("interface/theme/additional_spacing");
  514. const Vector2 widget_default_margin = Vector2(extra_spacing + 6, extra_spacing + default_margin_size + 1) * EDSCALE;
  515. Ref<StyleBoxFlat> style_widget = style_default->duplicate();
  516. style_widget->set_default_margin(SIDE_LEFT, widget_default_margin.x);
  517. style_widget->set_default_margin(SIDE_TOP, widget_default_margin.y);
  518. style_widget->set_default_margin(SIDE_RIGHT, widget_default_margin.x);
  519. style_widget->set_default_margin(SIDE_BOTTOM, widget_default_margin.y);
  520. style_widget->set_bg_color(dark_color_1);
  521. style_widget->set_border_color(dark_color_2);
  522. Ref<StyleBoxFlat> style_widget_disabled = style_widget->duplicate();
  523. style_widget_disabled->set_border_color(disabled_color);
  524. style_widget_disabled->set_bg_color(disabled_bg_color);
  525. Ref<StyleBoxFlat> style_widget_focus = style_widget->duplicate();
  526. style_widget_focus->set_draw_center(false);
  527. style_widget_focus->set_border_width_all(Math::round(2 * MAX(1, EDSCALE)));
  528. style_widget_focus->set_border_color(accent_color);
  529. Ref<StyleBoxFlat> style_widget_pressed = style_widget->duplicate();
  530. style_widget_pressed->set_bg_color(dark_color_1.darkened(0.125));
  531. Ref<StyleBoxFlat> style_widget_hover = style_widget->duplicate();
  532. style_widget_hover->set_bg_color(mono_color * Color(1, 1, 1, 0.11));
  533. style_widget_hover->set_border_color(mono_color * Color(1, 1, 1, 0.05));
  534. // Style for windows, popups, etc..
  535. Ref<StyleBoxFlat> style_popup = style_default->duplicate();
  536. const int popup_margin_size = default_margin_size * EDSCALE * 3;
  537. style_popup->set_default_margin(SIDE_LEFT, popup_margin_size);
  538. style_popup->set_default_margin(SIDE_TOP, popup_margin_size);
  539. style_popup->set_default_margin(SIDE_RIGHT, popup_margin_size);
  540. style_popup->set_default_margin(SIDE_BOTTOM, popup_margin_size);
  541. style_popup->set_border_color(contrast_color_1);
  542. const Color shadow_color = Color(0, 0, 0, dark_theme ? 0.3 : 0.1);
  543. style_popup->set_shadow_color(shadow_color);
  544. style_popup->set_shadow_size(4 * EDSCALE);
  545. Ref<StyleBoxLine> style_popup_separator(memnew(StyleBoxLine));
  546. style_popup_separator->set_color(separator_color);
  547. style_popup_separator->set_grow_begin(popup_margin_size - MAX(Math::round(EDSCALE), border_width));
  548. style_popup_separator->set_grow_end(popup_margin_size - MAX(Math::round(EDSCALE), border_width));
  549. style_popup_separator->set_thickness(MAX(Math::round(EDSCALE), border_width));
  550. Ref<StyleBoxLine> style_popup_labeled_separator_left(memnew(StyleBoxLine));
  551. style_popup_labeled_separator_left->set_grow_begin(popup_margin_size - MAX(Math::round(EDSCALE), border_width));
  552. style_popup_labeled_separator_left->set_color(separator_color);
  553. style_popup_labeled_separator_left->set_thickness(MAX(Math::round(EDSCALE), border_width));
  554. Ref<StyleBoxLine> style_popup_labeled_separator_right(memnew(StyleBoxLine));
  555. style_popup_labeled_separator_right->set_grow_end(popup_margin_size - MAX(Math::round(EDSCALE), border_width));
  556. style_popup_labeled_separator_right->set_color(separator_color);
  557. style_popup_labeled_separator_right->set_thickness(MAX(Math::round(EDSCALE), border_width));
  558. Ref<StyleBoxEmpty> style_empty = make_empty_stylebox(default_margin_size, default_margin_size, default_margin_size, default_margin_size);
  559. // TabBar
  560. Ref<StyleBoxFlat> style_tab_base = style_widget->duplicate();
  561. style_tab_base->set_border_width_all(0);
  562. // Don't round the top corners to avoid creating a small blank space between the tabs and the main panel.
  563. // This also makes the top highlight look better.
  564. style_tab_base->set_corner_detail(corner_width);
  565. style_tab_base->set_corner_radius_all(0);
  566. style_tab_base->set_corner_radius(CORNER_TOP_LEFT, corner_radius * EDSCALE);
  567. style_tab_base->set_corner_radius(CORNER_TOP_RIGHT, corner_radius * EDSCALE);
  568. // Prevent visible artifacts and cover the top-left rounded corner of the panel below the tab if selected
  569. // We can't prevent them with both rounded corners and non-zero border width, though
  570. style_tab_base->set_expand_margin_size(SIDE_BOTTOM, corner_width > 0 ? corner_width : border_width);
  571. // When using a border width greater than 0, visually line up the left of the selected tab with the underlying panel.
  572. style_tab_base->set_expand_margin_size(SIDE_LEFT, -border_width);
  573. style_tab_base->set_default_margin(SIDE_LEFT, widget_default_margin.x + 5 * EDSCALE);
  574. style_tab_base->set_default_margin(SIDE_RIGHT, widget_default_margin.x + 5 * EDSCALE);
  575. style_tab_base->set_default_margin(SIDE_BOTTOM, widget_default_margin.y);
  576. style_tab_base->set_default_margin(SIDE_TOP, widget_default_margin.y);
  577. Ref<StyleBoxFlat> style_tab_selected = style_tab_base->duplicate();
  578. style_tab_selected->set_bg_color(base_color);
  579. // Add a highlight line at the top of the selected tab.
  580. style_tab_selected->set_border_width(SIDE_TOP, Math::round(2 * EDSCALE));
  581. // Make the highlight line prominent, but not too prominent as to not be distracting.
  582. Color tab_highlight = dark_color_2.lerp(accent_color, 0.75);
  583. style_tab_selected->set_border_color(tab_highlight);
  584. style_tab_selected->set_corner_radius_all(0);
  585. Ref<StyleBoxFlat> style_tab_unselected = style_tab_base->duplicate();
  586. style_tab_unselected->set_expand_margin_size(SIDE_BOTTOM, 0);
  587. style_tab_unselected->set_bg_color(dark_color_1);
  588. // Add some spacing between unselected tabs to make them easier to distinguish from each other
  589. style_tab_unselected->set_border_color(Color(0, 0, 0, 0));
  590. Ref<StyleBoxFlat> style_tab_disabled = style_tab_base->duplicate();
  591. style_tab_disabled->set_expand_margin_size(SIDE_BOTTOM, 0);
  592. style_tab_disabled->set_bg_color(disabled_bg_color);
  593. style_tab_disabled->set_border_color(disabled_bg_color);
  594. // Editor background
  595. Color background_color_opaque = background_color;
  596. background_color_opaque.a = 1.0;
  597. theme->set_stylebox("Background", "EditorStyles", make_flat_stylebox(background_color_opaque, default_margin_size, default_margin_size, default_margin_size, default_margin_size));
  598. // Focus
  599. theme->set_stylebox("Focus", "EditorStyles", style_widget_focus);
  600. // Use a less opaque color to be less distracting for the 2D and 3D editor viewports.
  601. Ref<StyleBoxFlat> style_widget_focus_viewport = style_widget_focus->duplicate();
  602. style_widget_focus_viewport->set_border_color(accent_color * Color(1, 1, 1, 0.5));
  603. theme->set_stylebox("FocusViewport", "EditorStyles", style_widget_focus_viewport);
  604. // Menu
  605. Ref<StyleBoxFlat> style_menu = style_widget->duplicate();
  606. style_menu->set_draw_center(false);
  607. style_menu->set_border_width_all(0);
  608. theme->set_stylebox("panel", "PanelContainer", style_menu);
  609. theme->set_stylebox("MenuPanel", "EditorStyles", style_menu);
  610. // CanvasItem Editor
  611. Ref<StyleBoxFlat> style_canvas_editor_info = make_flat_stylebox(Color(0.0, 0.0, 0.0, 0.2));
  612. style_canvas_editor_info->set_expand_margin_size_all(4 * EDSCALE);
  613. theme->set_stylebox("CanvasItemInfoOverlay", "EditorStyles", style_canvas_editor_info);
  614. // 2D and 3D contextual toolbar.
  615. // Use a custom stylebox to make contextual menu items stand out from the rest.
  616. // This helps with editor usability as contextual menu items change when selecting nodes,
  617. // even though it may not be immediately obvious at first.
  618. Ref<StyleBoxFlat> toolbar_stylebox = memnew(StyleBoxFlat);
  619. toolbar_stylebox->set_bg_color(accent_color * Color(1, 1, 1, 0.1));
  620. toolbar_stylebox->set_corner_radius(CORNER_TOP_LEFT, corner_radius * EDSCALE);
  621. toolbar_stylebox->set_corner_radius(CORNER_TOP_RIGHT, corner_radius * EDSCALE);
  622. toolbar_stylebox->set_anti_aliased(false);
  623. // Add an underline to the StyleBox, but prevent its minimum vertical size from changing.
  624. toolbar_stylebox->set_border_color(accent_color);
  625. toolbar_stylebox->set_border_width(SIDE_BOTTOM, Math::round(2 * EDSCALE));
  626. toolbar_stylebox->set_default_margin(SIDE_BOTTOM, 0);
  627. theme->set_stylebox("ContextualToolbar", "EditorStyles", toolbar_stylebox);
  628. // Script Editor
  629. theme->set_stylebox("ScriptEditorPanel", "EditorStyles", make_empty_stylebox(default_margin_size, 0, default_margin_size, default_margin_size));
  630. theme->set_stylebox("ScriptEditor", "EditorStyles", make_empty_stylebox(0, 0, 0, 0));
  631. // Launch Pad and Play buttons
  632. Ref<StyleBoxFlat> style_launch_pad = make_flat_stylebox(dark_color_1, 2 * EDSCALE, 0, 2 * EDSCALE, 0, corner_width);
  633. style_launch_pad->set_corner_radius_all(corner_radius * EDSCALE);
  634. theme->set_stylebox("LaunchPadNormal", "EditorStyles", style_launch_pad);
  635. Ref<StyleBoxFlat> style_launch_pad_movie = style_launch_pad->duplicate();
  636. style_launch_pad_movie->set_bg_color(accent_color * Color(1, 1, 1, 0.1));
  637. style_launch_pad_movie->set_border_color(accent_color);
  638. style_launch_pad_movie->set_border_width_all(Math::round(2 * EDSCALE));
  639. theme->set_stylebox("LaunchPadMovieMode", "EditorStyles", style_launch_pad_movie);
  640. theme->set_stylebox("MovieWriterButtonNormal", "EditorStyles", make_empty_stylebox(0, 0, 0, 0));
  641. Ref<StyleBoxFlat> style_write_movie_button = style_widget_pressed->duplicate();
  642. style_write_movie_button->set_bg_color(accent_color);
  643. style_write_movie_button->set_corner_radius_all(corner_radius * EDSCALE);
  644. style_write_movie_button->set_default_margin(SIDE_TOP, 0);
  645. style_write_movie_button->set_default_margin(SIDE_BOTTOM, 0);
  646. style_write_movie_button->set_default_margin(SIDE_LEFT, 0);
  647. style_write_movie_button->set_default_margin(SIDE_RIGHT, 0);
  648. style_write_movie_button->set_expand_margin_size(SIDE_RIGHT, 2 * EDSCALE);
  649. theme->set_stylebox("MovieWriterButtonPressed", "EditorStyles", style_write_movie_button);
  650. theme->set_stylebox("normal", "MenuButton", style_menu);
  651. theme->set_stylebox("hover", "MenuButton", style_widget_hover);
  652. theme->set_stylebox("pressed", "MenuButton", style_menu);
  653. theme->set_stylebox("focus", "MenuButton", style_menu);
  654. theme->set_stylebox("disabled", "MenuButton", style_menu);
  655. theme->set_color("font_color", "MenuButton", font_color);
  656. theme->set_color("font_hover_color", "MenuButton", font_hover_color);
  657. theme->set_color("font_hover_pressed_color", "MenuButton", font_hover_pressed_color);
  658. theme->set_color("font_focus_color", "MenuButton", font_focus_color);
  659. theme->set_stylebox("MenuHover", "EditorStyles", style_widget_hover);
  660. // Buttons
  661. theme->set_stylebox("normal", "Button", style_widget);
  662. theme->set_stylebox("hover", "Button", style_widget_hover);
  663. theme->set_stylebox("pressed", "Button", style_widget_pressed);
  664. theme->set_stylebox("focus", "Button", style_widget_focus);
  665. theme->set_stylebox("disabled", "Button", style_widget_disabled);
  666. theme->set_color("font_color", "Button", font_color);
  667. theme->set_color("font_hover_color", "Button", font_hover_color);
  668. theme->set_color("font_hover_pressed_color", "Button", font_hover_pressed_color);
  669. theme->set_color("font_focus_color", "Button", font_focus_color);
  670. theme->set_color("font_pressed_color", "Button", accent_color);
  671. theme->set_color("font_disabled_color", "Button", font_disabled_color);
  672. theme->set_color("icon_normal_color", "Button", icon_normal_color);
  673. theme->set_color("icon_hover_color", "Button", icon_hover_color);
  674. theme->set_color("icon_focus_color", "Button", icon_focus_color);
  675. theme->set_color("icon_pressed_color", "Button", icon_pressed_color);
  676. theme->set_color("icon_disabled_color", "Button", icon_disabled_color);
  677. const float ACTION_BUTTON_EXTRA_MARGIN = 32 * EDSCALE;
  678. theme->set_type_variation("InspectorActionButton", "Button");
  679. Color color_inspector_action = dark_color_1.lerp(mono_color, 0.12);
  680. color_inspector_action.a = 0.5;
  681. Ref<StyleBoxFlat> style_inspector_action = style_widget->duplicate();
  682. style_inspector_action->set_bg_color(color_inspector_action);
  683. style_inspector_action->set_default_margin(SIDE_RIGHT, ACTION_BUTTON_EXTRA_MARGIN);
  684. theme->set_stylebox("normal", "InspectorActionButton", style_inspector_action);
  685. style_inspector_action = style_widget_hover->duplicate();
  686. style_inspector_action->set_default_margin(SIDE_RIGHT, ACTION_BUTTON_EXTRA_MARGIN);
  687. theme->set_stylebox("hover", "InspectorActionButton", style_inspector_action);
  688. style_inspector_action = style_widget_pressed->duplicate();
  689. style_inspector_action->set_default_margin(SIDE_RIGHT, ACTION_BUTTON_EXTRA_MARGIN);
  690. theme->set_stylebox("pressed", "InspectorActionButton", style_inspector_action);
  691. style_inspector_action = style_widget_disabled->duplicate();
  692. style_inspector_action->set_default_margin(SIDE_RIGHT, ACTION_BUTTON_EXTRA_MARGIN);
  693. theme->set_stylebox("disabled", "InspectorActionButton", style_inspector_action);
  694. theme->set_constant("h_separation", "InspectorActionButton", ACTION_BUTTON_EXTRA_MARGIN);
  695. // Variation for Editor Log filter buttons
  696. theme->set_type_variation("EditorLogFilterButton", "Button");
  697. // When pressed, don't tint the icons with the accent color, just leave them normal.
  698. theme->set_color("icon_pressed_color", "EditorLogFilterButton", icon_normal_color);
  699. // When unpressed, dim the icons.
  700. theme->set_color("icon_normal_color", "EditorLogFilterButton", icon_disabled_color);
  701. // When pressed, add a small bottom border to the buttons to better show their active state,
  702. // similar to active tabs.
  703. Ref<StyleBoxFlat> editor_log_button_pressed = style_widget_pressed->duplicate();
  704. editor_log_button_pressed->set_border_width(SIDE_BOTTOM, 2 * EDSCALE);
  705. editor_log_button_pressed->set_border_color(accent_color);
  706. theme->set_stylebox("pressed", "EditorLogFilterButton", editor_log_button_pressed);
  707. // MenuBar
  708. theme->set_stylebox("normal", "MenuBar", style_widget);
  709. theme->set_stylebox("hover", "MenuBar", style_widget_hover);
  710. theme->set_stylebox("pressed", "MenuBar", style_widget_pressed);
  711. theme->set_stylebox("focus", "MenuBar", style_widget_focus);
  712. theme->set_stylebox("disabled", "MenuBar", style_widget_disabled);
  713. theme->set_color("font_color", "MenuBar", font_color);
  714. theme->set_color("font_hover_color", "MenuBar", font_hover_color);
  715. theme->set_color("font_hover_pressed_color", "MenuBar", font_hover_pressed_color);
  716. theme->set_color("font_focus_color", "MenuBar", font_focus_color);
  717. theme->set_color("font_pressed_color", "MenuBar", accent_color);
  718. theme->set_color("font_disabled_color", "MenuBar", font_disabled_color);
  719. theme->set_color("icon_normal_color", "MenuBar", icon_normal_color);
  720. theme->set_color("icon_hover_color", "MenuBar", icon_hover_color);
  721. theme->set_color("icon_focus_color", "MenuBar", icon_focus_color);
  722. theme->set_color("icon_pressed_color", "MenuBar", icon_pressed_color);
  723. theme->set_color("icon_disabled_color", "MenuBar", icon_disabled_color);
  724. // OptionButton
  725. Ref<StyleBoxFlat> style_option_button_focus = style_widget_focus->duplicate();
  726. Ref<StyleBoxFlat> style_option_button_normal = style_widget->duplicate();
  727. Ref<StyleBoxFlat> style_option_button_hover = style_widget_hover->duplicate();
  728. Ref<StyleBoxFlat> style_option_button_pressed = style_widget_pressed->duplicate();
  729. Ref<StyleBoxFlat> style_option_button_disabled = style_widget_disabled->duplicate();
  730. style_option_button_focus->set_default_margin(SIDE_RIGHT, 4 * EDSCALE);
  731. style_option_button_normal->set_default_margin(SIDE_RIGHT, 4 * EDSCALE);
  732. style_option_button_hover->set_default_margin(SIDE_RIGHT, 4 * EDSCALE);
  733. style_option_button_pressed->set_default_margin(SIDE_RIGHT, 4 * EDSCALE);
  734. style_option_button_disabled->set_default_margin(SIDE_RIGHT, 4 * EDSCALE);
  735. theme->set_stylebox("focus", "OptionButton", style_option_button_focus);
  736. theme->set_stylebox("normal", "OptionButton", style_widget);
  737. theme->set_stylebox("hover", "OptionButton", style_widget_hover);
  738. theme->set_stylebox("pressed", "OptionButton", style_widget_pressed);
  739. theme->set_stylebox("disabled", "OptionButton", style_widget_disabled);
  740. theme->set_stylebox("normal_mirrored", "OptionButton", style_option_button_normal);
  741. theme->set_stylebox("hover_mirrored", "OptionButton", style_option_button_hover);
  742. theme->set_stylebox("pressed_mirrored", "OptionButton", style_option_button_pressed);
  743. theme->set_stylebox("disabled_mirrored", "OptionButton", style_option_button_disabled);
  744. theme->set_color("font_color", "OptionButton", font_color);
  745. theme->set_color("font_hover_color", "OptionButton", font_hover_color);
  746. theme->set_color("font_hover_pressed_color", "OptionButton", font_hover_pressed_color);
  747. theme->set_color("font_focus_color", "OptionButton", font_focus_color);
  748. theme->set_color("font_pressed_color", "OptionButton", accent_color);
  749. theme->set_color("font_disabled_color", "OptionButton", font_disabled_color);
  750. theme->set_color("icon_normal_color", "OptionButton", icon_normal_color);
  751. theme->set_color("icon_hover_color", "OptionButton", icon_hover_color);
  752. theme->set_color("icon_focus_color", "OptionButton", icon_focus_color);
  753. theme->set_color("icon_pressed_color", "OptionButton", icon_pressed_color);
  754. theme->set_color("icon_disabled_color", "OptionButton", icon_disabled_color);
  755. theme->set_icon("arrow", "OptionButton", theme->get_icon(SNAME("GuiOptionArrow"), SNAME("EditorIcons")));
  756. theme->set_constant("arrow_margin", "OptionButton", widget_default_margin.x - 2 * EDSCALE);
  757. theme->set_constant("modulate_arrow", "OptionButton", true);
  758. theme->set_constant("h_separation", "OptionButton", 4 * EDSCALE);
  759. // CheckButton
  760. theme->set_stylebox("normal", "CheckButton", style_menu);
  761. theme->set_stylebox("pressed", "CheckButton", style_menu);
  762. theme->set_stylebox("disabled", "CheckButton", style_menu);
  763. theme->set_stylebox("hover", "CheckButton", style_menu);
  764. theme->set_stylebox("hover_pressed", "CheckButton", style_menu);
  765. theme->set_icon("on", "CheckButton", theme->get_icon(SNAME("GuiToggleOn"), SNAME("EditorIcons")));
  766. theme->set_icon("on_disabled", "CheckButton", theme->get_icon(SNAME("GuiToggleOnDisabled"), SNAME("EditorIcons")));
  767. theme->set_icon("off", "CheckButton", theme->get_icon(SNAME("GuiToggleOff"), SNAME("EditorIcons")));
  768. theme->set_icon("off_disabled", "CheckButton", theme->get_icon(SNAME("GuiToggleOffDisabled"), SNAME("EditorIcons")));
  769. theme->set_icon("on_mirrored", "CheckButton", theme->get_icon(SNAME("GuiToggleOnMirrored"), SNAME("EditorIcons")));
  770. theme->set_icon("on_disabled_mirrored", "CheckButton", theme->get_icon(SNAME("GuiToggleOnDisabledMirrored"), SNAME("EditorIcons")));
  771. theme->set_icon("off_mirrored", "CheckButton", theme->get_icon(SNAME("GuiToggleOffMirrored"), SNAME("EditorIcons")));
  772. theme->set_icon("off_disabled_mirrored", "CheckButton", theme->get_icon(SNAME("GuiToggleOffDisabledMirrored"), SNAME("EditorIcons")));
  773. theme->set_color("font_color", "CheckButton", font_color);
  774. theme->set_color("font_hover_color", "CheckButton", font_hover_color);
  775. theme->set_color("font_hover_pressed_color", "CheckButton", font_hover_pressed_color);
  776. theme->set_color("font_focus_color", "CheckButton", font_focus_color);
  777. theme->set_color("font_pressed_color", "CheckButton", accent_color);
  778. theme->set_color("font_disabled_color", "CheckButton", font_disabled_color);
  779. theme->set_color("icon_normal_color", "CheckButton", icon_normal_color);
  780. theme->set_color("icon_hover_color", "CheckButton", icon_hover_color);
  781. theme->set_color("icon_focus_color", "CheckButton", icon_focus_color);
  782. theme->set_color("icon_pressed_color", "CheckButton", icon_pressed_color);
  783. theme->set_color("icon_disabled_color", "CheckButton", icon_disabled_color);
  784. theme->set_constant("h_separation", "CheckButton", 8 * EDSCALE);
  785. theme->set_constant("check_v_adjust", "CheckButton", 0 * EDSCALE);
  786. // Checkbox
  787. Ref<StyleBoxFlat> sb_checkbox = style_menu->duplicate();
  788. sb_checkbox->set_default_margin(SIDE_LEFT, default_margin_size * EDSCALE);
  789. sb_checkbox->set_default_margin(SIDE_RIGHT, default_margin_size * EDSCALE);
  790. sb_checkbox->set_default_margin(SIDE_TOP, default_margin_size * EDSCALE);
  791. sb_checkbox->set_default_margin(SIDE_BOTTOM, default_margin_size * EDSCALE);
  792. theme->set_stylebox("normal", "CheckBox", sb_checkbox);
  793. theme->set_stylebox("pressed", "CheckBox", sb_checkbox);
  794. theme->set_stylebox("disabled", "CheckBox", sb_checkbox);
  795. theme->set_stylebox("hover", "CheckBox", sb_checkbox);
  796. theme->set_stylebox("hover_pressed", "CheckBox", sb_checkbox);
  797. theme->set_icon("checked", "CheckBox", theme->get_icon(SNAME("GuiChecked"), SNAME("EditorIcons")));
  798. theme->set_icon("unchecked", "CheckBox", theme->get_icon(SNAME("GuiUnchecked"), SNAME("EditorIcons")));
  799. theme->set_icon("radio_checked", "CheckBox", theme->get_icon(SNAME("GuiRadioChecked"), SNAME("EditorIcons")));
  800. theme->set_icon("radio_unchecked", "CheckBox", theme->get_icon(SNAME("GuiRadioUnchecked"), SNAME("EditorIcons")));
  801. theme->set_icon("checked_disabled", "CheckBox", theme->get_icon(SNAME("GuiCheckedDisabled"), SNAME("EditorIcons")));
  802. theme->set_icon("unchecked_disabled", "CheckBox", theme->get_icon(SNAME("GuiUncheckedDisabled"), SNAME("EditorIcons")));
  803. theme->set_icon("radio_checked_disabled", "CheckBox", theme->get_icon(SNAME("GuiRadioCheckedDisabled"), SNAME("EditorIcons")));
  804. theme->set_icon("radio_unchecked_disabled", "CheckBox", theme->get_icon(SNAME("GuiRadioUncheckedDisabled"), SNAME("EditorIcons")));
  805. theme->set_color("font_color", "CheckBox", font_color);
  806. theme->set_color("font_hover_color", "CheckBox", font_hover_color);
  807. theme->set_color("font_hover_pressed_color", "CheckBox", font_hover_pressed_color);
  808. theme->set_color("font_focus_color", "CheckBox", font_focus_color);
  809. theme->set_color("font_pressed_color", "CheckBox", accent_color);
  810. theme->set_color("font_disabled_color", "CheckBox", font_disabled_color);
  811. theme->set_color("icon_normal_color", "CheckBox", icon_normal_color);
  812. theme->set_color("icon_hover_color", "CheckBox", icon_hover_color);
  813. theme->set_color("icon_focus_color", "CheckBox", icon_focus_color);
  814. theme->set_color("icon_pressed_color", "CheckBox", icon_pressed_color);
  815. theme->set_color("icon_disabled_color", "CheckBox", icon_disabled_color);
  816. theme->set_constant("h_separation", "CheckBox", 8 * EDSCALE);
  817. theme->set_constant("check_v_adjust", "CheckBox", 0 * EDSCALE);
  818. // PopupDialog
  819. theme->set_stylebox("panel", "PopupDialog", style_popup);
  820. // PopupMenu
  821. Ref<StyleBoxFlat> style_popup_menu = style_popup->duplicate();
  822. // Use 1 pixel for the sides, since if 0 is used, the highlight of hovered items is drawn
  823. // on top of the popup border. This causes a 'gap' in the panel border when an item is highlighted,
  824. // and it looks weird. 1px solves this.
  825. style_popup_menu->set_default_margin(SIDE_LEFT, EDSCALE);
  826. style_popup_menu->set_default_margin(SIDE_TOP, 2 * EDSCALE);
  827. style_popup_menu->set_default_margin(SIDE_RIGHT, EDSCALE);
  828. style_popup_menu->set_default_margin(SIDE_BOTTOM, 2 * EDSCALE);
  829. // Always display a border for PopupMenus so they can be distinguished from their background.
  830. style_popup_menu->set_border_width_all(EDSCALE);
  831. style_popup_menu->set_border_color(dark_color_2);
  832. // Popups are separate windows by default in the editor. Windows currently don't support per-pixel transparency
  833. // in 4.0, and even if it was, it may not always work in practice (e.g. running with compositing disabled).
  834. style_popup_menu->set_corner_radius_all(0);
  835. theme->set_stylebox("panel", "PopupMenu", style_popup_menu);
  836. Ref<StyleBoxFlat> style_menu_hover = style_widget_hover->duplicate();
  837. // Don't use rounded corners for hover highlights since the StyleBox touches the PopupMenu's edges.
  838. style_menu_hover->set_corner_radius_all(0);
  839. theme->set_stylebox("hover", "PopupMenu", style_menu_hover);
  840. theme->set_stylebox("separator", "PopupMenu", style_popup_separator);
  841. theme->set_stylebox("labeled_separator_left", "PopupMenu", style_popup_labeled_separator_left);
  842. theme->set_stylebox("labeled_separator_right", "PopupMenu", style_popup_labeled_separator_right);
  843. theme->set_color("font_color", "PopupMenu", font_color);
  844. theme->set_color("font_hover_color", "PopupMenu", font_hover_color);
  845. theme->set_color("font_accelerator_color", "PopupMenu", font_disabled_color);
  846. theme->set_color("font_disabled_color", "PopupMenu", font_disabled_color);
  847. theme->set_color("font_separator_color", "PopupMenu", font_disabled_color);
  848. theme->set_icon("checked", "PopupMenu", theme->get_icon(SNAME("GuiChecked"), SNAME("EditorIcons")));
  849. theme->set_icon("unchecked", "PopupMenu", theme->get_icon(SNAME("GuiUnchecked"), SNAME("EditorIcons")));
  850. theme->set_icon("radio_checked", "PopupMenu", theme->get_icon(SNAME("GuiRadioChecked"), SNAME("EditorIcons")));
  851. theme->set_icon("radio_unchecked", "PopupMenu", theme->get_icon(SNAME("GuiRadioUnchecked"), SNAME("EditorIcons")));
  852. theme->set_icon("checked_disabled", "PopupMenu", theme->get_icon(SNAME("GuiCheckedDisabled"), SNAME("EditorIcons")));
  853. theme->set_icon("unchecked_disabled", "PopupMenu", theme->get_icon(SNAME("GuiUncheckedDisabled"), SNAME("EditorIcons")));
  854. theme->set_icon("radio_checked_disabled", "PopupMenu", theme->get_icon(SNAME("GuiRadioCheckedDisabled"), SNAME("EditorIcons")));
  855. theme->set_icon("radio_unchecked_disabled", "PopupMenu", theme->get_icon(SNAME("GuiRadioUncheckedDisabled"), SNAME("EditorIcons")));
  856. theme->set_icon("submenu", "PopupMenu", theme->get_icon(SNAME("ArrowRight"), SNAME("EditorIcons")));
  857. theme->set_icon("submenu_mirrored", "PopupMenu", theme->get_icon(SNAME("ArrowLeft"), SNAME("EditorIcons")));
  858. theme->set_icon("visibility_hidden", "PopupMenu", theme->get_icon(SNAME("GuiVisibilityHidden"), SNAME("EditorIcons")));
  859. theme->set_icon("visibility_visible", "PopupMenu", theme->get_icon(SNAME("GuiVisibilityVisible"), SNAME("EditorIcons")));
  860. theme->set_icon("visibility_xray", "PopupMenu", theme->get_icon(SNAME("GuiVisibilityXray"), SNAME("EditorIcons")));
  861. // Force the v_separation to be even so that the spacing on top and bottom is even.
  862. // If the vsep is odd and cannot be split into 2 even groups (of pixels), then it will be lopsided.
  863. // We add 2 to the vsep to give it some extra spacing which looks a bit more modern (see Windows, for example).
  864. const int vsep_base = extra_spacing + default_margin_size + 6;
  865. const int force_even_vsep = vsep_base + (vsep_base % 2);
  866. theme->set_constant("v_separation", "PopupMenu", force_even_vsep * EDSCALE);
  867. theme->set_constant("item_start_padding", "PopupMenu", default_margin_size * 1.5 * EDSCALE);
  868. theme->set_constant("item_end_padding", "PopupMenu", default_margin_size * 1.5 * EDSCALE);
  869. // Sub-inspectors
  870. for (int i = 0; i < 16; i++) {
  871. Color si_base_color = accent_color;
  872. float hue_rotate = (i * 2 % 16) / 16.0;
  873. 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());
  874. si_base_color = accent_color.lerp(si_base_color, float(EDITOR_GET("docks/property_editor/subresource_hue_tint")));
  875. // Sub-inspector background.
  876. Ref<StyleBoxFlat> sub_inspector_bg = style_default->duplicate();
  877. sub_inspector_bg->set_bg_color(dark_color_1.lerp(si_base_color, 0.08));
  878. sub_inspector_bg->set_border_width_all(2 * EDSCALE);
  879. sub_inspector_bg->set_border_color(si_base_color * Color(0.7, 0.7, 0.7, 0.8));
  880. sub_inspector_bg->set_default_margin(SIDE_LEFT, 4 * EDSCALE);
  881. sub_inspector_bg->set_default_margin(SIDE_RIGHT, 4 * EDSCALE);
  882. sub_inspector_bg->set_default_margin(SIDE_BOTTOM, 4 * EDSCALE);
  883. sub_inspector_bg->set_default_margin(SIDE_TOP, 4 * EDSCALE);
  884. sub_inspector_bg->set_corner_radius(CORNER_TOP_LEFT, 0);
  885. sub_inspector_bg->set_corner_radius(CORNER_TOP_RIGHT, 0);
  886. theme->set_stylebox("sub_inspector_bg" + itos(i), "Editor", sub_inspector_bg);
  887. // EditorProperty background while it has a sub-inspector open.
  888. Ref<StyleBoxFlat> bg_color = make_flat_stylebox(si_base_color * Color(0.7, 0.7, 0.7, 0.8), 0, 0, 0, 0, corner_radius);
  889. bg_color->set_anti_aliased(false);
  890. bg_color->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  891. bg_color->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  892. theme->set_stylebox("sub_inspector_property_bg" + itos(i), "Editor", bg_color);
  893. }
  894. theme->set_color("sub_inspector_property_color", "Editor", dark_theme ? Color(1, 1, 1, 1) : Color(0, 0, 0, 1));
  895. // EditorSpinSlider.
  896. theme->set_color("label_color", "EditorSpinSlider", font_color);
  897. theme->set_color("read_only_label_color", "EditorSpinSlider", font_readonly_color);
  898. Ref<StyleBoxFlat> editor_spin_label_bg = style_default->duplicate();
  899. editor_spin_label_bg->set_bg_color(dark_color_3);
  900. editor_spin_label_bg->set_border_width_all(0);
  901. theme->set_stylebox("label_bg", "EditorSpinSlider", editor_spin_label_bg);
  902. // EditorProperty
  903. Ref<StyleBoxFlat> style_property_bg = style_default->duplicate();
  904. style_property_bg->set_bg_color(highlight_color);
  905. style_property_bg->set_border_width_all(0);
  906. Ref<StyleBoxFlat> style_property_child_bg = style_default->duplicate();
  907. style_property_child_bg->set_bg_color(dark_color_2);
  908. style_property_child_bg->set_border_width_all(0);
  909. theme->set_constant("font_offset", "EditorProperty", 8 * EDSCALE);
  910. theme->set_stylebox("bg_selected", "EditorProperty", style_property_bg);
  911. theme->set_stylebox("bg", "EditorProperty", Ref<StyleBoxEmpty>(memnew(StyleBoxEmpty)));
  912. theme->set_stylebox("child_bg", "EditorProperty", style_property_child_bg);
  913. theme->set_constant("v_separation", "EditorProperty", (extra_spacing + default_margin_size) * EDSCALE);
  914. theme->set_color("warning_color", "EditorProperty", warning_color);
  915. theme->set_color("property_color", "EditorProperty", property_color);
  916. theme->set_color("readonly_color", "EditorProperty", readonly_color);
  917. theme->set_color("readonly_warning_color", "EditorProperty", readonly_warning_color);
  918. Ref<StyleBoxFlat> style_property_group_note = style_default->duplicate();
  919. Color property_group_note_color = accent_color;
  920. property_group_note_color.a = 0.1;
  921. style_property_group_note->set_bg_color(property_group_note_color);
  922. theme->set_stylebox("bg_group_note", "EditorProperty", style_property_group_note);
  923. // EditorInspectorSection
  924. Color inspector_section_color = font_color.lerp(Color(0.5, 0.5, 0.5), 0.35);
  925. theme->set_color("font_color", "EditorInspectorSection", inspector_section_color);
  926. Color inspector_indent_color = accent_color;
  927. inspector_indent_color.a = 0.2;
  928. Ref<StyleBoxFlat> inspector_indent_style = make_flat_stylebox(inspector_indent_color, 2.0 * EDSCALE, 0, 2.0 * EDSCALE, 0);
  929. theme->set_stylebox("indent_box", "EditorInspectorSection", inspector_indent_style);
  930. theme->set_constant("indent_size", "EditorInspectorSection", 6.0 * EDSCALE);
  931. theme->set_constant("inspector_margin", "Editor", 12 * EDSCALE);
  932. // Tree & ItemList background
  933. Ref<StyleBoxFlat> style_tree_bg = style_default->duplicate();
  934. // Make Trees easier to distinguish from other controls by using a darker background color.
  935. style_tree_bg->set_bg_color(dark_color_1.lerp(dark_color_2, 0.5));
  936. style_tree_bg->set_border_color(dark_color_3);
  937. theme->set_stylebox("bg", "Tree", style_tree_bg);
  938. // Tree
  939. theme->set_icon("checked", "Tree", theme->get_icon(SNAME("GuiChecked"), SNAME("EditorIcons")));
  940. theme->set_icon("indeterminate", "Tree", theme->get_icon(SNAME("GuiIndeterminate"), SNAME("EditorIcons")));
  941. theme->set_icon("unchecked", "Tree", theme->get_icon(SNAME("GuiUnchecked"), SNAME("EditorIcons")));
  942. theme->set_icon("arrow", "Tree", theme->get_icon(SNAME("GuiTreeArrowDown"), SNAME("EditorIcons")));
  943. theme->set_icon("arrow_collapsed", "Tree", theme->get_icon(SNAME("GuiTreeArrowRight"), SNAME("EditorIcons")));
  944. theme->set_icon("arrow_collapsed_mirrored", "Tree", theme->get_icon(SNAME("GuiTreeArrowLeft"), SNAME("EditorIcons")));
  945. theme->set_icon("updown", "Tree", theme->get_icon(SNAME("GuiTreeUpdown"), SNAME("EditorIcons")));
  946. theme->set_icon("select_arrow", "Tree", theme->get_icon(SNAME("GuiDropdown"), SNAME("EditorIcons")));
  947. theme->set_stylebox("bg_focus", "Tree", style_widget_focus);
  948. theme->set_stylebox("custom_button", "Tree", make_empty_stylebox());
  949. theme->set_stylebox("custom_button_pressed", "Tree", make_empty_stylebox());
  950. theme->set_stylebox("custom_button_hover", "Tree", style_widget);
  951. theme->set_color("custom_button_font_highlight", "Tree", font_hover_color);
  952. theme->set_color("font_color", "Tree", font_color);
  953. theme->set_color("font_selected_color", "Tree", mono_color);
  954. theme->set_color("title_button_color", "Tree", font_color);
  955. theme->set_color("drop_position_color", "Tree", accent_color);
  956. theme->set_constant("v_separation", "Tree", widget_default_margin.y - EDSCALE);
  957. theme->set_constant("h_separation", "Tree", 6 * EDSCALE);
  958. theme->set_constant("guide_width", "Tree", border_width);
  959. theme->set_constant("item_margin", "Tree", 3 * default_margin_size * EDSCALE);
  960. theme->set_constant("button_margin", "Tree", default_margin_size * EDSCALE);
  961. theme->set_constant("scroll_border", "Tree", 40 * EDSCALE);
  962. theme->set_constant("scroll_speed", "Tree", 12);
  963. const Color guide_color = mono_color * Color(1, 1, 1, 0.05);
  964. Color relationship_line_color = mono_color * Color(1, 1, 1, relationship_line_opacity);
  965. theme->set_constant("draw_guides", "Tree", relationship_line_opacity < 0.01);
  966. theme->set_color("guide_color", "Tree", guide_color);
  967. int relationship_line_width = 1;
  968. Color parent_line_color = mono_color * Color(1, 1, 1, CLAMP(relationship_line_opacity + 0.45, 0.0, 1.0));
  969. Color children_line_color = mono_color * Color(1, 1, 1, CLAMP(relationship_line_opacity + 0.25, 0.0, 1.0));
  970. theme->set_constant("draw_relationship_lines", "Tree", relationship_line_opacity >= 0.01);
  971. theme->set_constant("relationship_line_width", "Tree", relationship_line_width);
  972. theme->set_constant("parent_hl_line_width", "Tree", relationship_line_width * 2);
  973. theme->set_constant("children_hl_line_width", "Tree", relationship_line_width);
  974. theme->set_constant("parent_hl_line_margin", "Tree", relationship_line_width * 3);
  975. theme->set_color("relationship_line_color", "Tree", relationship_line_color);
  976. theme->set_color("parent_hl_line_color", "Tree", parent_line_color);
  977. theme->set_color("children_hl_line_color", "Tree", children_line_color);
  978. Ref<StyleBoxFlat> style_tree_btn = style_default->duplicate();
  979. style_tree_btn->set_bg_color(highlight_color);
  980. style_tree_btn->set_border_width_all(0);
  981. theme->set_stylebox("button_pressed", "Tree", style_tree_btn);
  982. Ref<StyleBoxFlat> style_tree_hover = style_default->duplicate();
  983. style_tree_hover->set_bg_color(highlight_color * Color(1, 1, 1, 0.4));
  984. style_tree_hover->set_border_width_all(0);
  985. theme->set_stylebox("hover", "Tree", style_tree_hover);
  986. Ref<StyleBoxFlat> style_tree_focus = style_default->duplicate();
  987. style_tree_focus->set_bg_color(highlight_color);
  988. style_tree_focus->set_border_width_all(0);
  989. theme->set_stylebox("selected_focus", "Tree", style_tree_focus);
  990. Ref<StyleBoxFlat> style_tree_selected = style_tree_focus->duplicate();
  991. theme->set_stylebox("selected", "Tree", style_tree_selected);
  992. Ref<StyleBoxFlat> style_tree_cursor = style_default->duplicate();
  993. style_tree_cursor->set_draw_center(false);
  994. style_tree_cursor->set_border_width_all(MAX(1, border_width));
  995. style_tree_cursor->set_border_color(contrast_color_1);
  996. Ref<StyleBoxFlat> style_tree_title = style_default->duplicate();
  997. style_tree_title->set_bg_color(dark_color_3);
  998. style_tree_title->set_border_width_all(0);
  999. theme->set_stylebox("cursor", "Tree", style_tree_cursor);
  1000. theme->set_stylebox("cursor_unfocused", "Tree", style_tree_cursor);
  1001. theme->set_stylebox("title_button_normal", "Tree", style_tree_title);
  1002. theme->set_stylebox("title_button_hover", "Tree", style_tree_title);
  1003. theme->set_stylebox("title_button_pressed", "Tree", style_tree_title);
  1004. Color prop_category_color = dark_color_1.lerp(mono_color, 0.12);
  1005. Color prop_section_color = dark_color_1.lerp(mono_color, 0.09);
  1006. Color prop_subsection_color = dark_color_1.lerp(mono_color, 0.06);
  1007. theme->set_color("prop_category", "Editor", prop_category_color);
  1008. theme->set_color("prop_section", "Editor", prop_section_color);
  1009. theme->set_color("prop_subsection", "Editor", prop_subsection_color);
  1010. theme->set_color("drop_position_color", "Tree", accent_color);
  1011. // EditorInspectorCategory
  1012. Ref<StyleBoxFlat> category_bg = style_default->duplicate();
  1013. category_bg->set_bg_color(prop_category_color);
  1014. category_bg->set_border_color(prop_category_color);
  1015. theme->set_stylebox("bg", "EditorInspectorCategory", category_bg);
  1016. // ItemList
  1017. Ref<StyleBoxFlat> style_itemlist_bg = style_default->duplicate();
  1018. style_itemlist_bg->set_bg_color(dark_color_1);
  1019. style_itemlist_bg->set_border_width_all(border_width);
  1020. style_itemlist_bg->set_border_color(dark_color_3);
  1021. Ref<StyleBoxFlat> style_itemlist_cursor = style_default->duplicate();
  1022. style_itemlist_cursor->set_draw_center(false);
  1023. style_itemlist_cursor->set_border_width_all(border_width);
  1024. style_itemlist_cursor->set_border_color(highlight_color);
  1025. theme->set_stylebox("cursor", "ItemList", style_itemlist_cursor);
  1026. theme->set_stylebox("cursor_unfocused", "ItemList", style_itemlist_cursor);
  1027. theme->set_stylebox("selected_focus", "ItemList", style_tree_focus);
  1028. theme->set_stylebox("selected", "ItemList", style_tree_selected);
  1029. theme->set_stylebox("bg_focus", "ItemList", style_widget_focus);
  1030. theme->set_stylebox("bg", "ItemList", style_itemlist_bg);
  1031. theme->set_color("font_color", "ItemList", font_color);
  1032. theme->set_color("font_selected_color", "ItemList", mono_color);
  1033. theme->set_color("guide_color", "ItemList", guide_color);
  1034. theme->set_constant("v_separation", "ItemList", widget_default_margin.y - EDSCALE);
  1035. theme->set_constant("h_separation", "ItemList", 6 * EDSCALE);
  1036. theme->set_constant("icon_margin", "ItemList", 6 * EDSCALE);
  1037. theme->set_constant("line_separation", "ItemList", 3 * EDSCALE);
  1038. // TabBar & TabContainer
  1039. Ref<StyleBoxFlat> style_tabbar_background = make_flat_stylebox(dark_color_1, 0, 0, 0, 0);
  1040. style_tabbar_background->set_expand_margin_size(SIDE_BOTTOM, corner_width > 0 ? corner_width : border_width);
  1041. style_tabbar_background->set_corner_detail(corner_width);
  1042. style_tabbar_background->set_corner_radius(CORNER_TOP_LEFT, corner_radius * EDSCALE);
  1043. style_tabbar_background->set_corner_radius(CORNER_TOP_RIGHT, corner_radius * EDSCALE);
  1044. theme->set_stylebox("tabbar_background", "TabContainer", style_tabbar_background);
  1045. theme->set_stylebox("tab_selected", "TabContainer", style_tab_selected);
  1046. theme->set_stylebox("tab_unselected", "TabContainer", style_tab_unselected);
  1047. theme->set_stylebox("tab_disabled", "TabContainer", style_tab_disabled);
  1048. theme->set_stylebox("tab_selected", "TabBar", style_tab_selected);
  1049. theme->set_stylebox("tab_unselected", "TabBar", style_tab_unselected);
  1050. theme->set_stylebox("tab_disabled", "TabBar", style_tab_disabled);
  1051. theme->set_stylebox("button_pressed", "TabBar", style_menu);
  1052. theme->set_stylebox("button_highlight", "TabBar", style_menu);
  1053. theme->set_stylebox("SceneTabFG", "EditorStyles", style_tab_selected);
  1054. theme->set_stylebox("SceneTabBG", "EditorStyles", style_tab_unselected);
  1055. theme->set_color("font_selected_color", "TabContainer", font_color);
  1056. theme->set_color("font_unselected_color", "TabContainer", font_disabled_color);
  1057. theme->set_color("font_selected_color", "TabBar", font_color);
  1058. theme->set_color("font_unselected_color", "TabBar", font_disabled_color);
  1059. theme->set_color("drop_mark_color", "TabContainer", tab_highlight);
  1060. theme->set_color("drop_mark_color", "TabBar", tab_highlight);
  1061. theme->set_icon("menu", "TabContainer", theme->get_icon(SNAME("GuiTabMenu"), SNAME("EditorIcons")));
  1062. theme->set_icon("menu_highlight", "TabContainer", theme->get_icon(SNAME("GuiTabMenuHl"), SNAME("EditorIcons")));
  1063. theme->set_icon("close", "TabBar", theme->get_icon(SNAME("GuiClose"), SNAME("EditorIcons")));
  1064. theme->set_icon("increment", "TabContainer", theme->get_icon(SNAME("GuiScrollArrowRight"), SNAME("EditorIcons")));
  1065. theme->set_icon("decrement", "TabContainer", theme->get_icon(SNAME("GuiScrollArrowLeft"), SNAME("EditorIcons")));
  1066. theme->set_icon("increment", "TabBar", theme->get_icon(SNAME("GuiScrollArrowRight"), SNAME("EditorIcons")));
  1067. theme->set_icon("decrement", "TabBar", theme->get_icon(SNAME("GuiScrollArrowLeft"), SNAME("EditorIcons")));
  1068. theme->set_icon("increment_highlight", "TabBar", theme->get_icon(SNAME("GuiScrollArrowRightHl"), SNAME("EditorIcons")));
  1069. theme->set_icon("decrement_highlight", "TabBar", theme->get_icon(SNAME("GuiScrollArrowLeftHl"), SNAME("EditorIcons")));
  1070. theme->set_icon("increment_highlight", "TabContainer", theme->get_icon(SNAME("GuiScrollArrowRightHl"), SNAME("EditorIcons")));
  1071. theme->set_icon("decrement_highlight", "TabContainer", theme->get_icon(SNAME("GuiScrollArrowLeftHl"), SNAME("EditorIcons")));
  1072. theme->set_icon("drop_mark", "TabContainer", theme->get_icon(SNAME("GuiTabDropMark"), SNAME("EditorIcons")));
  1073. theme->set_icon("drop_mark", "TabBar", theme->get_icon(SNAME("GuiTabDropMark"), SNAME("EditorIcons")));
  1074. theme->set_constant("h_separation", "TabBar", 4 * EDSCALE);
  1075. // Content of each tab
  1076. Ref<StyleBoxFlat> style_content_panel = style_default->duplicate();
  1077. style_content_panel->set_border_color(dark_color_3);
  1078. style_content_panel->set_border_width_all(border_width);
  1079. style_content_panel->set_border_width(Side::SIDE_TOP, 0);
  1080. style_content_panel->set_corner_radius(CORNER_TOP_LEFT, 0);
  1081. style_content_panel->set_corner_radius(CORNER_TOP_RIGHT, 0);
  1082. // compensate the border
  1083. style_content_panel->set_default_margin(SIDE_TOP, (2 + margin_size_extra) * EDSCALE);
  1084. style_content_panel->set_default_margin(SIDE_RIGHT, margin_size_extra * EDSCALE);
  1085. style_content_panel->set_default_margin(SIDE_BOTTOM, margin_size_extra * EDSCALE);
  1086. style_content_panel->set_default_margin(SIDE_LEFT, margin_size_extra * EDSCALE);
  1087. theme->set_stylebox("panel", "TabContainer", style_content_panel);
  1088. // TabContainerOdd can be used on tabs against the base color background (e.g. nested tabs).
  1089. theme->set_type_variation("TabContainerOdd", "TabContainer");
  1090. Ref<StyleBoxFlat> style_tab_selected_odd = style_tab_selected->duplicate();
  1091. style_tab_selected_odd->set_bg_color(disabled_bg_color);
  1092. theme->set_stylebox("tab_selected", "TabContainerOdd", style_tab_selected_odd);
  1093. Ref<StyleBoxFlat> style_content_panel_odd = style_content_panel->duplicate();
  1094. style_content_panel_odd->set_bg_color(disabled_bg_color);
  1095. theme->set_stylebox("panel", "TabContainerOdd", style_content_panel_odd);
  1096. // This stylebox is used in 3d and 2d viewports (no borders).
  1097. Ref<StyleBoxFlat> style_content_panel_vp = style_content_panel->duplicate();
  1098. style_content_panel_vp->set_default_margin(SIDE_LEFT, border_width * 2);
  1099. style_content_panel_vp->set_default_margin(SIDE_TOP, default_margin_size * EDSCALE);
  1100. style_content_panel_vp->set_default_margin(SIDE_RIGHT, border_width * 2);
  1101. style_content_panel_vp->set_default_margin(SIDE_BOTTOM, border_width * 2);
  1102. theme->set_stylebox("Content", "EditorStyles", style_content_panel_vp);
  1103. // This stylebox is used by preview tabs in the Theme Editor.
  1104. Ref<StyleBoxFlat> style_theme_preview_tab = style_tab_selected_odd->duplicate();
  1105. style_theme_preview_tab->set_expand_margin_size(SIDE_BOTTOM, 5 * EDSCALE);
  1106. theme->set_stylebox("ThemeEditorPreviewFG", "EditorStyles", style_theme_preview_tab);
  1107. Ref<StyleBoxFlat> style_theme_preview_bg_tab = style_tab_unselected->duplicate();
  1108. style_theme_preview_bg_tab->set_expand_margin_size(SIDE_BOTTOM, 2 * EDSCALE);
  1109. theme->set_stylebox("ThemeEditorPreviewBG", "EditorStyles", style_theme_preview_bg_tab);
  1110. // Separators
  1111. theme->set_stylebox("separator", "HSeparator", make_line_stylebox(separator_color, MAX(Math::round(EDSCALE), border_width)));
  1112. theme->set_stylebox("separator", "VSeparator", make_line_stylebox(separator_color, MAX(Math::round(EDSCALE), border_width), 0, 0, true));
  1113. // Debugger
  1114. Ref<StyleBoxFlat> style_panel_debugger = style_content_panel->duplicate();
  1115. style_panel_debugger->set_border_width(SIDE_BOTTOM, 0);
  1116. theme->set_stylebox("DebuggerPanel", "EditorStyles", style_panel_debugger);
  1117. Ref<StyleBoxFlat> style_panel_invisible_top = style_content_panel->duplicate();
  1118. int stylebox_offset = theme->get_font(SNAME("tab_selected"), SNAME("TabContainer"))->get_height(theme->get_font_size(SNAME("tab_selected"), SNAME("TabContainer"))) + theme->get_stylebox(SNAME("tab_selected"), SNAME("TabContainer"))->get_minimum_size().height + theme->get_stylebox(SNAME("panel"), SNAME("TabContainer"))->get_default_margin(SIDE_TOP);
  1119. style_panel_invisible_top->set_expand_margin_size(SIDE_TOP, -stylebox_offset);
  1120. style_panel_invisible_top->set_default_margin(SIDE_TOP, 0);
  1121. theme->set_stylebox("BottomPanelDebuggerOverride", "EditorStyles", style_panel_invisible_top);
  1122. // LineEdit
  1123. Ref<StyleBoxFlat> style_line_edit = style_widget->duplicate();
  1124. // The original style_widget style has an extra 1 pixel offset that makes LineEdits not align with Buttons,
  1125. // so this compensates for that.
  1126. style_line_edit->set_default_margin(SIDE_TOP, style_line_edit->get_default_margin(SIDE_TOP) - 1 * EDSCALE);
  1127. // Add a bottom line to make LineEdits more visible, especially in sectioned inspectors
  1128. // such as the Project Settings.
  1129. style_line_edit->set_border_width(SIDE_BOTTOM, Math::round(2 * EDSCALE));
  1130. style_line_edit->set_border_color(dark_color_2);
  1131. // Don't round the bottom corner to make the line look sharper.
  1132. style_tab_selected->set_corner_radius(CORNER_BOTTOM_LEFT, 0);
  1133. style_tab_selected->set_corner_radius(CORNER_BOTTOM_RIGHT, 0);
  1134. Ref<StyleBoxFlat> style_line_edit_disabled = style_line_edit->duplicate();
  1135. style_line_edit_disabled->set_border_color(disabled_color);
  1136. style_line_edit_disabled->set_bg_color(disabled_bg_color);
  1137. theme->set_stylebox("normal", "LineEdit", style_line_edit);
  1138. theme->set_stylebox("focus", "LineEdit", style_widget_focus);
  1139. theme->set_stylebox("read_only", "LineEdit", style_line_edit_disabled);
  1140. theme->set_icon("clear", "LineEdit", theme->get_icon(SNAME("GuiClose"), SNAME("EditorIcons")));
  1141. theme->set_color("font_color", "LineEdit", font_color);
  1142. theme->set_color("font_selected_color", "LineEdit", mono_color);
  1143. theme->set_color("font_uneditable_color", "LineEdit", font_readonly_color);
  1144. theme->set_color("font_placeholder_color", "LineEdit", font_placeholder_color);
  1145. theme->set_color("caret_color", "LineEdit", font_color);
  1146. theme->set_color("selection_color", "LineEdit", selection_color);
  1147. theme->set_color("clear_button_color", "LineEdit", font_color);
  1148. theme->set_color("clear_button_color_pressed", "LineEdit", accent_color);
  1149. // TextEdit
  1150. theme->set_stylebox("normal", "TextEdit", style_line_edit);
  1151. theme->set_stylebox("focus", "TextEdit", style_widget_focus);
  1152. theme->set_stylebox("read_only", "TextEdit", style_line_edit_disabled);
  1153. theme->set_constant("side_margin", "TabContainer", 0);
  1154. theme->set_icon("tab", "TextEdit", theme->get_icon(SNAME("GuiTab"), SNAME("EditorIcons")));
  1155. theme->set_icon("space", "TextEdit", theme->get_icon(SNAME("GuiSpace"), SNAME("EditorIcons")));
  1156. theme->set_color("font_color", "TextEdit", font_color);
  1157. theme->set_color("font_readonly_color", "TextEdit", font_readonly_color);
  1158. theme->set_color("font_placeholder_color", "TextEdit", font_placeholder_color);
  1159. theme->set_color("caret_color", "TextEdit", font_color);
  1160. theme->set_color("selection_color", "TextEdit", selection_color);
  1161. theme->set_constant("line_spacing", "TextEdit", 4 * EDSCALE);
  1162. theme->set_icon("grabber", "VSplitContainer", theme->get_icon(SNAME("GuiVsplitter"), SNAME("EditorIcons")));
  1163. theme->set_icon("grabber", "HSplitContainer", theme->get_icon(SNAME("GuiHsplitter"), SNAME("EditorIcons")));
  1164. theme->set_constant("separation", "HSplitContainer", default_margin_size * 2 * EDSCALE);
  1165. theme->set_constant("separation", "VSplitContainer", default_margin_size * 2 * EDSCALE);
  1166. // Containers
  1167. theme->set_constant("separation", "BoxContainer", default_margin_size * EDSCALE);
  1168. theme->set_constant("separation", "HBoxContainer", default_margin_size * EDSCALE);
  1169. theme->set_constant("separation", "VBoxContainer", default_margin_size * EDSCALE);
  1170. theme->set_constant("margin_left", "MarginContainer", 0);
  1171. theme->set_constant("margin_top", "MarginContainer", 0);
  1172. theme->set_constant("margin_right", "MarginContainer", 0);
  1173. theme->set_constant("margin_bottom", "MarginContainer", 0);
  1174. theme->set_constant("h_separation", "GridContainer", default_margin_size * EDSCALE);
  1175. theme->set_constant("v_separation", "GridContainer", default_margin_size * EDSCALE);
  1176. theme->set_constant("h_separation", "FlowContainer", default_margin_size * EDSCALE);
  1177. theme->set_constant("v_separation", "FlowContainer", default_margin_size * EDSCALE);
  1178. theme->set_constant("h_separation", "HFlowContainer", default_margin_size * EDSCALE);
  1179. theme->set_constant("v_separation", "HFlowContainer", default_margin_size * EDSCALE);
  1180. theme->set_constant("h_separation", "VFlowContainer", default_margin_size * EDSCALE);
  1181. theme->set_constant("v_separation", "VFlowContainer", default_margin_size * EDSCALE);
  1182. // Custom theme type for MarginContainer with 4px margins.
  1183. theme->set_type_variation("MarginContainer4px", "MarginContainer");
  1184. theme->set_constant("margin_left", "MarginContainer4px", 4 * EDSCALE);
  1185. theme->set_constant("margin_top", "MarginContainer4px", 4 * EDSCALE);
  1186. theme->set_constant("margin_right", "MarginContainer4px", 4 * EDSCALE);
  1187. theme->set_constant("margin_bottom", "MarginContainer4px", 4 * EDSCALE);
  1188. // Window
  1189. // Prevent corner artifacts between window title and body.
  1190. Ref<StyleBoxFlat> style_window_title = style_default->duplicate();
  1191. style_window_title->set_corner_radius(CORNER_TOP_LEFT, 0);
  1192. style_window_title->set_corner_radius(CORNER_TOP_RIGHT, 0);
  1193. // Prevent visible line between window title and body.
  1194. style_window_title->set_expand_margin_size(SIDE_BOTTOM, 2 * EDSCALE);
  1195. Ref<StyleBoxFlat> style_window = style_popup->duplicate();
  1196. style_window->set_border_color(base_color);
  1197. style_window->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1198. style_window->set_expand_margin_size(SIDE_TOP, 24 * EDSCALE);
  1199. theme->set_stylebox("embedded_border", "Window", style_window);
  1200. theme->set_color("title_color", "Window", font_color);
  1201. theme->set_icon("close", "Window", theme->get_icon(SNAME("GuiClose"), SNAME("EditorIcons")));
  1202. theme->set_icon("close_pressed", "Window", theme->get_icon(SNAME("GuiClose"), SNAME("EditorIcons")));
  1203. theme->set_constant("close_h_offset", "Window", 22 * EDSCALE);
  1204. theme->set_constant("close_v_offset", "Window", 20 * EDSCALE);
  1205. theme->set_constant("title_height", "Window", 24 * EDSCALE);
  1206. theme->set_constant("resize_margin", "Window", 4 * EDSCALE);
  1207. theme->set_font("title_font", "Window", theme->get_font(SNAME("title"), SNAME("EditorFonts")));
  1208. theme->set_font_size("title_font_size", "Window", theme->get_font_size(SNAME("title_size"), SNAME("EditorFonts")));
  1209. // Complex window (currently only Editor Settings and Project Settings)
  1210. Ref<StyleBoxFlat> style_complex_window = style_window->duplicate();
  1211. style_complex_window->set_bg_color(dark_color_2);
  1212. style_complex_window->set_border_color(dark_color_2);
  1213. theme->set_stylebox("panel", "EditorSettingsDialog", style_complex_window);
  1214. theme->set_stylebox("panel", "ProjectSettingsEditor", style_complex_window);
  1215. theme->set_stylebox("panel", "EditorAbout", style_complex_window);
  1216. // AcceptDialog
  1217. theme->set_stylebox("panel", "AcceptDialog", style_window_title);
  1218. // HScrollBar
  1219. Ref<Texture2D> empty_icon = memnew(ImageTexture);
  1220. theme->set_stylebox("scroll", "HScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollBg"), SNAME("EditorIcons")), 5, 5, 5, 5, 0, 0, 0, 0));
  1221. theme->set_stylebox("scroll_focus", "HScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollBg"), SNAME("EditorIcons")), 5, 5, 5, 5, 0, 0, 0, 0));
  1222. theme->set_stylebox("grabber", "HScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollGrabber"), SNAME("EditorIcons")), 6, 6, 6, 6, 2, 2, 2, 2));
  1223. theme->set_stylebox("grabber_highlight", "HScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollGrabberHl"), SNAME("EditorIcons")), 5, 5, 5, 5, 2, 2, 2, 2));
  1224. theme->set_stylebox("grabber_pressed", "HScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollGrabberPressed"), SNAME("EditorIcons")), 6, 6, 6, 6, 2, 2, 2, 2));
  1225. theme->set_icon("increment", "HScrollBar", empty_icon);
  1226. theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
  1227. theme->set_icon("increment_pressed", "HScrollBar", empty_icon);
  1228. theme->set_icon("decrement", "HScrollBar", empty_icon);
  1229. theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
  1230. theme->set_icon("decrement_pressed", "HScrollBar", empty_icon);
  1231. // VScrollBar
  1232. theme->set_stylebox("scroll", "VScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollBg"), SNAME("EditorIcons")), 5, 5, 5, 5, 0, 0, 0, 0));
  1233. theme->set_stylebox("scroll_focus", "VScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollBg"), SNAME("EditorIcons")), 5, 5, 5, 5, 0, 0, 0, 0));
  1234. theme->set_stylebox("grabber", "VScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollGrabber"), SNAME("EditorIcons")), 6, 6, 6, 6, 2, 2, 2, 2));
  1235. theme->set_stylebox("grabber_highlight", "VScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollGrabberHl"), SNAME("EditorIcons")), 5, 5, 5, 5, 2, 2, 2, 2));
  1236. theme->set_stylebox("grabber_pressed", "VScrollBar", make_stylebox(theme->get_icon(SNAME("GuiScrollGrabberPressed"), SNAME("EditorIcons")), 6, 6, 6, 6, 2, 2, 2, 2));
  1237. theme->set_icon("increment", "VScrollBar", empty_icon);
  1238. theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
  1239. theme->set_icon("increment_pressed", "VScrollBar", empty_icon);
  1240. theme->set_icon("decrement", "VScrollBar", empty_icon);
  1241. theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
  1242. theme->set_icon("decrement_pressed", "VScrollBar", empty_icon);
  1243. // HSlider
  1244. theme->set_icon("grabber_highlight", "HSlider", theme->get_icon(SNAME("GuiSliderGrabberHl"), SNAME("EditorIcons")));
  1245. theme->set_icon("grabber", "HSlider", theme->get_icon(SNAME("GuiSliderGrabber"), SNAME("EditorIcons")));
  1246. theme->set_stylebox("slider", "HSlider", make_flat_stylebox(dark_color_3, 0, default_margin_size / 2, 0, default_margin_size / 2, corner_width));
  1247. theme->set_stylebox("grabber_area", "HSlider", make_flat_stylebox(contrast_color_1, 0, default_margin_size / 2, 0, default_margin_size / 2, corner_width));
  1248. theme->set_stylebox("grabber_area_highlight", "HSlider", make_flat_stylebox(contrast_color_1, 0, default_margin_size / 2, 0, default_margin_size / 2));
  1249. // VSlider
  1250. theme->set_icon("grabber", "VSlider", theme->get_icon(SNAME("GuiSliderGrabber"), SNAME("EditorIcons")));
  1251. theme->set_icon("grabber_highlight", "VSlider", theme->get_icon(SNAME("GuiSliderGrabberHl"), SNAME("EditorIcons")));
  1252. theme->set_stylebox("slider", "VSlider", make_flat_stylebox(dark_color_3, default_margin_size / 2, 0, default_margin_size / 2, 0, corner_width));
  1253. theme->set_stylebox("grabber_area", "VSlider", make_flat_stylebox(contrast_color_1, default_margin_size / 2, 0, default_margin_size / 2, 0, corner_width));
  1254. theme->set_stylebox("grabber_area_highlight", "VSlider", make_flat_stylebox(contrast_color_1, default_margin_size / 2, 0, default_margin_size / 2, 0));
  1255. // RichTextLabel
  1256. theme->set_color("default_color", "RichTextLabel", font_color);
  1257. theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
  1258. theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * EDSCALE);
  1259. theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * EDSCALE);
  1260. theme->set_constant("shadow_outline_size", "RichTextLabel", 1 * EDSCALE);
  1261. theme->set_stylebox("focus", "RichTextLabel", make_empty_stylebox());
  1262. theme->set_stylebox("normal", "RichTextLabel", style_tree_bg);
  1263. // Editor help.
  1264. theme->set_color("title_color", "EditorHelp", accent_color);
  1265. theme->set_color("headline_color", "EditorHelp", mono_color);
  1266. theme->set_color("text_color", "EditorHelp", font_color);
  1267. theme->set_color("comment_color", "EditorHelp", font_color * Color(1, 1, 1, 0.6));
  1268. theme->set_color("symbol_color", "EditorHelp", font_color * Color(1, 1, 1, 0.6));
  1269. theme->set_color("value_color", "EditorHelp", font_color * Color(1, 1, 1, 0.6));
  1270. theme->set_color("qualifier_color", "EditorHelp", font_color * Color(1, 1, 1, 0.8));
  1271. theme->set_color("type_color", "EditorHelp", accent_color.lerp(font_color, 0.5));
  1272. theme->set_color("selection_color", "EditorHelp", accent_color * Color(1, 1, 1, 0.4));
  1273. theme->set_color("link_color", "EditorHelp", accent_color.lerp(mono_color, 0.8));
  1274. theme->set_color("code_color", "EditorHelp", accent_color.lerp(mono_color, 0.6));
  1275. theme->set_color("kbd_color", "EditorHelp", accent_color.lerp(property_color, 0.6));
  1276. theme->set_constant("line_separation", "EditorHelp", Math::round(6 * EDSCALE));
  1277. theme->set_constant("table_h_separation", "EditorHelp", 16 * EDSCALE);
  1278. theme->set_constant("table_v_separation", "EditorHelp", 6 * EDSCALE);
  1279. // Panel
  1280. theme->set_stylebox("panel", "Panel", make_flat_stylebox(dark_color_1, 6, 4, 6, 4, corner_width));
  1281. theme->set_stylebox("PanelForeground", "EditorStyles", style_default);
  1282. // Label
  1283. theme->set_stylebox("normal", "Label", style_empty);
  1284. theme->set_color("font_color", "Label", font_color);
  1285. theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
  1286. theme->set_constant("shadow_offset_x", "Label", 1 * EDSCALE);
  1287. theme->set_constant("shadow_offset_y", "Label", 1 * EDSCALE);
  1288. theme->set_constant("shadow_outline_size", "Label", 1 * EDSCALE);
  1289. theme->set_constant("line_spacing", "Label", 3 * EDSCALE);
  1290. // LinkButton
  1291. theme->set_stylebox("focus", "LinkButton", style_empty);
  1292. theme->set_color("font_color", "LinkButton", font_color);
  1293. theme->set_color("font_hover_color", "LinkButton", font_hover_color);
  1294. theme->set_color("font_hover_pressed_color", "LinkButton", font_hover_pressed_color);
  1295. theme->set_color("font_focus_color", "LinkButton", font_focus_color);
  1296. theme->set_color("font_pressed_color", "LinkButton", accent_color);
  1297. theme->set_color("font_disabled_color", "LinkButton", font_disabled_color);
  1298. // TooltipPanel + TooltipLabel
  1299. // TooltipPanel is also used for custom tooltips, while TooltipLabel
  1300. // is only relevant for default tooltips.
  1301. Ref<StyleBoxFlat> style_tooltip = style_popup->duplicate();
  1302. style_tooltip->set_shadow_size(0);
  1303. style_tooltip->set_default_margin(SIDE_LEFT, default_margin_size * EDSCALE * 0.5);
  1304. style_tooltip->set_default_margin(SIDE_TOP, default_margin_size * EDSCALE * 0.5);
  1305. style_tooltip->set_default_margin(SIDE_RIGHT, default_margin_size * EDSCALE * 0.5);
  1306. style_tooltip->set_default_margin(SIDE_BOTTOM, default_margin_size * EDSCALE * 0.5);
  1307. style_tooltip->set_bg_color(dark_color_3 * Color(0.8, 0.8, 0.8, 0.9));
  1308. style_tooltip->set_border_width_all(0);
  1309. theme->set_color("font_color", "TooltipLabel", font_hover_color);
  1310. theme->set_color("font_shadow_color", "TooltipLabel", Color(0, 0, 0, 0));
  1311. theme->set_stylebox("panel", "TooltipPanel", style_tooltip);
  1312. // PopupPanel
  1313. theme->set_stylebox("panel", "PopupPanel", style_popup);
  1314. Ref<StyleBoxFlat> control_editor_popup_style = style_popup->duplicate();
  1315. control_editor_popup_style->set_shadow_size(0);
  1316. control_editor_popup_style->set_default_margin(SIDE_LEFT, default_margin_size * EDSCALE);
  1317. control_editor_popup_style->set_default_margin(SIDE_TOP, default_margin_size * EDSCALE);
  1318. control_editor_popup_style->set_default_margin(SIDE_RIGHT, default_margin_size * EDSCALE);
  1319. control_editor_popup_style->set_default_margin(SIDE_BOTTOM, default_margin_size * EDSCALE);
  1320. control_editor_popup_style->set_border_width_all(0);
  1321. theme->set_stylebox("panel", "ControlEditorPopupPanel", control_editor_popup_style);
  1322. theme->set_type_variation("ControlEditorPopupPanel", "PopupPanel");
  1323. // SpinBox
  1324. theme->set_icon("updown", "SpinBox", theme->get_icon(SNAME("GuiSpinboxUpdown"), SNAME("EditorIcons")));
  1325. theme->set_icon("updown_disabled", "SpinBox", theme->get_icon(SNAME("GuiSpinboxUpdownDisabled"), SNAME("EditorIcons")));
  1326. // ProgressBar
  1327. theme->set_stylebox("bg", "ProgressBar", make_stylebox(theme->get_icon(SNAME("GuiProgressBar"), SNAME("EditorIcons")), 4, 4, 4, 4, 0, 0, 0, 0));
  1328. theme->set_stylebox("fg", "ProgressBar", make_stylebox(theme->get_icon(SNAME("GuiProgressFill"), SNAME("EditorIcons")), 6, 6, 6, 6, 2, 1, 2, 1));
  1329. theme->set_color("font_color", "ProgressBar", font_color);
  1330. // GraphEdit
  1331. theme->set_stylebox("bg", "GraphEdit", style_tree_bg);
  1332. if (dark_theme) {
  1333. theme->set_color("grid_major", "GraphEdit", Color(1.0, 1.0, 1.0, 0.15));
  1334. theme->set_color("grid_minor", "GraphEdit", Color(1.0, 1.0, 1.0, 0.07));
  1335. } else {
  1336. theme->set_color("grid_major", "GraphEdit", Color(0.0, 0.0, 0.0, 0.15));
  1337. theme->set_color("grid_minor", "GraphEdit", Color(0.0, 0.0, 0.0, 0.07));
  1338. }
  1339. theme->set_color("selection_fill", "GraphEdit", theme->get_color(SNAME("box_selection_fill_color"), SNAME("Editor")));
  1340. theme->set_color("selection_stroke", "GraphEdit", theme->get_color(SNAME("box_selection_stroke_color"), SNAME("Editor")));
  1341. theme->set_color("activity", "GraphEdit", accent_color);
  1342. theme->set_icon("minus", "GraphEdit", theme->get_icon(SNAME("ZoomLess"), SNAME("EditorIcons")));
  1343. theme->set_icon("more", "GraphEdit", theme->get_icon(SNAME("ZoomMore"), SNAME("EditorIcons")));
  1344. theme->set_icon("reset", "GraphEdit", theme->get_icon(SNAME("ZoomReset"), SNAME("EditorIcons")));
  1345. theme->set_icon("snap", "GraphEdit", theme->get_icon(SNAME("SnapGrid"), SNAME("EditorIcons")));
  1346. theme->set_icon("minimap", "GraphEdit", theme->get_icon(SNAME("GridMinimap"), SNAME("EditorIcons")));
  1347. theme->set_icon("layout", "GraphEdit", theme->get_icon(SNAME("GridLayout"), SNAME("EditorIcons")));
  1348. // GraphEditMinimap
  1349. Ref<StyleBoxFlat> style_minimap_bg = make_flat_stylebox(dark_color_1, 0, 0, 0, 0);
  1350. style_minimap_bg->set_border_color(dark_color_3);
  1351. style_minimap_bg->set_border_width_all(1);
  1352. theme->set_stylebox("bg", "GraphEditMinimap", style_minimap_bg);
  1353. Ref<StyleBoxFlat> style_minimap_camera;
  1354. Ref<StyleBoxFlat> style_minimap_node;
  1355. if (dark_theme) {
  1356. style_minimap_camera = make_flat_stylebox(Color(0.65, 0.65, 0.65, 0.2), 0, 0, 0, 0);
  1357. style_minimap_camera->set_border_color(Color(0.65, 0.65, 0.65, 0.45));
  1358. style_minimap_node = make_flat_stylebox(Color(1, 1, 1), 0, 0, 0, 0);
  1359. } else {
  1360. style_minimap_camera = make_flat_stylebox(Color(0.38, 0.38, 0.38, 0.2), 0, 0, 0, 0);
  1361. style_minimap_camera->set_border_color(Color(0.38, 0.38, 0.38, 0.45));
  1362. style_minimap_node = make_flat_stylebox(Color(0, 0, 0), 0, 0, 0, 0);
  1363. }
  1364. style_minimap_camera->set_border_width_all(1);
  1365. theme->set_stylebox("camera", "GraphEditMinimap", style_minimap_camera);
  1366. theme->set_stylebox("node", "GraphEditMinimap", style_minimap_node);
  1367. Ref<Texture2D> minimap_resizer_icon = theme->get_icon(SNAME("GuiResizer"), SNAME("EditorIcons"));
  1368. Color minimap_resizer_color;
  1369. if (dark_theme) {
  1370. minimap_resizer_color = Color(1, 1, 1, 0.65);
  1371. } else {
  1372. minimap_resizer_color = Color(0, 0, 0, 0.65);
  1373. }
  1374. theme->set_icon("resizer", "GraphEditMinimap", flip_icon(minimap_resizer_icon, true, true));
  1375. theme->set_color("resizer_color", "GraphEditMinimap", minimap_resizer_color);
  1376. // GraphNode
  1377. const int gn_margin_side = 2;
  1378. const int gn_margin_bottom = 2;
  1379. // StateMachine
  1380. const int sm_margin_side = 10;
  1381. Color graphnode_bg = dark_color_3;
  1382. if (!dark_theme) {
  1383. graphnode_bg = prop_section_color;
  1384. }
  1385. Ref<StyleBoxFlat> graphsb = make_flat_stylebox(graphnode_bg.lerp(style_tree_bg->get_bg_color(), 0.3), gn_margin_side, 24, gn_margin_side, gn_margin_bottom, corner_width);
  1386. graphsb->set_border_width_all(border_width);
  1387. graphsb->set_border_color(graphnode_bg);
  1388. Ref<StyleBoxFlat> graphsbselected = make_flat_stylebox(graphnode_bg * Color(1, 1, 1, 1), gn_margin_side, 24, gn_margin_side, gn_margin_bottom, corner_width);
  1389. graphsbselected->set_border_width_all(2 * EDSCALE + border_width);
  1390. graphsbselected->set_border_color(Color(accent_color.r, accent_color.g, accent_color.b, 0.6));
  1391. Ref<StyleBoxFlat> graphsbcomment = make_flat_stylebox(graphnode_bg * Color(1, 1, 1, 0.3), gn_margin_side, 24, gn_margin_side, gn_margin_bottom, corner_width);
  1392. graphsbcomment->set_border_width_all(border_width);
  1393. graphsbcomment->set_border_color(graphnode_bg);
  1394. Ref<StyleBoxFlat> graphsbcommentselected = make_flat_stylebox(graphnode_bg * Color(1, 1, 1, 0.4), gn_margin_side, 24, gn_margin_side, gn_margin_bottom, corner_width);
  1395. graphsbcommentselected->set_border_width_all(border_width);
  1396. graphsbcommentselected->set_border_color(graphnode_bg);
  1397. Ref<StyleBoxFlat> graphsbbreakpoint = graphsbselected->duplicate();
  1398. graphsbbreakpoint->set_draw_center(false);
  1399. graphsbbreakpoint->set_border_color(warning_color);
  1400. graphsbbreakpoint->set_shadow_color(warning_color * Color(1.0, 1.0, 1.0, 0.1));
  1401. Ref<StyleBoxFlat> graphsbposition = graphsbselected->duplicate();
  1402. graphsbposition->set_draw_center(false);
  1403. graphsbposition->set_border_color(error_color);
  1404. graphsbposition->set_shadow_color(error_color * Color(1.0, 1.0, 1.0, 0.2));
  1405. Ref<StyleBoxEmpty> graphsbslot = make_empty_stylebox(12, 0, 12, 0);
  1406. Ref<StyleBoxFlat> smgraphsb = make_flat_stylebox(dark_color_3 * Color(1, 1, 1, 0.7), sm_margin_side, 24, sm_margin_side, gn_margin_bottom, corner_width);
  1407. smgraphsb->set_border_width_all(border_width);
  1408. smgraphsb->set_border_color(graphnode_bg);
  1409. Ref<StyleBoxFlat> smgraphsbselected = make_flat_stylebox(graphnode_bg * Color(1, 1, 1, 0.9), sm_margin_side, 24, sm_margin_side, gn_margin_bottom, corner_width);
  1410. smgraphsbselected->set_border_width_all(2 * EDSCALE + border_width);
  1411. smgraphsbselected->set_border_color(Color(accent_color.r, accent_color.g, accent_color.b, 0.9));
  1412. smgraphsbselected->set_shadow_size(8 * EDSCALE);
  1413. smgraphsbselected->set_shadow_color(shadow_color);
  1414. graphsb->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1415. graphsbselected->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1416. graphsbcomment->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1417. graphsbcommentselected->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1418. theme->set_stylebox("frame", "GraphNode", graphsb);
  1419. theme->set_stylebox("selected_frame", "GraphNode", graphsbselected);
  1420. theme->set_stylebox("comment", "GraphNode", graphsbcomment);
  1421. theme->set_stylebox("comment_focus", "GraphNode", graphsbcommentselected);
  1422. theme->set_stylebox("breakpoint", "GraphNode", graphsbbreakpoint);
  1423. theme->set_stylebox("position", "GraphNode", graphsbposition);
  1424. theme->set_stylebox("slot", "GraphNode", graphsbslot);
  1425. theme->set_stylebox("state_machine_frame", "GraphNode", smgraphsb);
  1426. theme->set_stylebox("state_machine_selected_frame", "GraphNode", smgraphsbselected);
  1427. Color node_decoration_color = dark_color_1.inverted();
  1428. theme->set_color("title_color", "GraphNode", node_decoration_color);
  1429. node_decoration_color.a = 0.7;
  1430. theme->set_color("close_color", "GraphNode", node_decoration_color);
  1431. theme->set_color("resizer_color", "GraphNode", node_decoration_color);
  1432. theme->set_constant("port_offset", "GraphNode", 0);
  1433. theme->set_constant("title_h_offset", "GraphNode", 12 * EDSCALE);
  1434. theme->set_constant("title_offset", "GraphNode", 21 * EDSCALE);
  1435. theme->set_constant("close_h_offset", "GraphNode", -2 * EDSCALE);
  1436. theme->set_constant("close_offset", "GraphNode", 20 * EDSCALE);
  1437. theme->set_constant("separation", "GraphNode", 1 * EDSCALE);
  1438. theme->set_icon("close", "GraphNode", theme->get_icon(SNAME("GuiCloseCustomizable"), SNAME("EditorIcons")));
  1439. theme->set_icon("resizer", "GraphNode", theme->get_icon(SNAME("GuiResizer"), SNAME("EditorIcons")));
  1440. theme->set_icon("port", "GraphNode", theme->get_icon(SNAME("GuiGraphNodePort"), SNAME("EditorIcons")));
  1441. theme->set_font("title_font", "GraphNode", theme->get_font(SNAME("main_bold_msdf"), SNAME("EditorFonts")));
  1442. // GridContainer
  1443. theme->set_constant("v_separation", "GridContainer", Math::round(widget_default_margin.y - 2 * EDSCALE));
  1444. // FileDialog
  1445. theme->set_icon("folder", "FileDialog", theme->get_icon(SNAME("Folder"), SNAME("EditorIcons")));
  1446. theme->set_icon("parent_folder", "FileDialog", theme->get_icon(SNAME("ArrowUp"), SNAME("EditorIcons")));
  1447. theme->set_icon("back_folder", "FileDialog", theme->get_icon(SNAME("Back"), SNAME("EditorIcons")));
  1448. theme->set_icon("forward_folder", "FileDialog", theme->get_icon(SNAME("Forward"), SNAME("EditorIcons")));
  1449. theme->set_icon("reload", "FileDialog", theme->get_icon(SNAME("Reload"), SNAME("EditorIcons")));
  1450. theme->set_icon("toggle_hidden", "FileDialog", theme->get_icon(SNAME("GuiVisibilityVisible"), SNAME("EditorIcons")));
  1451. // Use a different color for folder icons to make them easier to distinguish from files.
  1452. // On a light theme, the icon will be dark, so we need to lighten it before blending it with the accent color.
  1453. theme->set_color("folder_icon_modulate", "FileDialog", (dark_theme ? Color(1, 1, 1) : Color(4.25, 4.25, 4.25)).lerp(accent_color, 0.7));
  1454. theme->set_color("files_disabled", "FileDialog", font_disabled_color);
  1455. // ColorPicker
  1456. theme->set_constant("margin", "ColorPicker", popup_margin_size);
  1457. theme->set_constant("sv_width", "ColorPicker", 256 * EDSCALE);
  1458. theme->set_constant("sv_height", "ColorPicker", 256 * EDSCALE);
  1459. theme->set_constant("h_width", "ColorPicker", 30 * EDSCALE);
  1460. theme->set_constant("label_width", "ColorPicker", 10 * EDSCALE);
  1461. theme->set_icon("screen_picker", "ColorPicker", theme->get_icon(SNAME("ColorPick"), SNAME("EditorIcons")));
  1462. theme->set_icon("add_preset", "ColorPicker", theme->get_icon(SNAME("Add"), SNAME("EditorIcons")));
  1463. theme->set_icon("sample_bg", "ColorPicker", theme->get_icon(SNAME("GuiMiniCheckerboard"), SNAME("EditorIcons")));
  1464. theme->set_icon("overbright_indicator", "ColorPicker", theme->get_icon(SNAME("OverbrightIndicator"), SNAME("EditorIcons")));
  1465. theme->set_icon("bar_arrow", "ColorPicker", theme->get_icon(SNAME("ColorPickerBarArrow"), SNAME("EditorIcons")));
  1466. theme->set_icon("picker_cursor", "ColorPicker", theme->get_icon(SNAME("PickerCursor"), SNAME("EditorIcons")));
  1467. // ColorPickerButton
  1468. theme->set_icon("bg", "ColorPickerButton", theme->get_icon(SNAME("GuiMiniCheckerboard"), SNAME("EditorIcons")));
  1469. // ColorPresetButton
  1470. Ref<StyleBoxFlat> preset_sb = make_flat_stylebox(Color(1, 1, 1), 2, 2, 2, 2, 2);
  1471. theme->set_stylebox("preset_fg", "ColorPresetButton", preset_sb);
  1472. theme->set_icon("preset_bg", "ColorPresetButton", theme->get_icon(SNAME("GuiMiniCheckerboard"), SNAME("EditorIcons")));
  1473. theme->set_icon("overbright_indicator", "ColorPresetButton", theme->get_icon(SNAME("OverbrightIndicator"), SNAME("EditorIcons")));
  1474. // Information on 3D viewport
  1475. Ref<StyleBoxFlat> style_info_3d_viewport = style_default->duplicate();
  1476. style_info_3d_viewport->set_bg_color(style_info_3d_viewport->get_bg_color() * Color(1, 1, 1, 0.5));
  1477. style_info_3d_viewport->set_border_width_all(0);
  1478. theme->set_stylebox("Information3dViewport", "EditorStyles", style_info_3d_viewport);
  1479. // Asset Library.
  1480. theme->set_stylebox("bg", "AssetLib", style_empty);
  1481. theme->set_stylebox("panel", "AssetLib", style_content_panel);
  1482. theme->set_color("status_color", "AssetLib", Color(0.5, 0.5, 0.5));
  1483. theme->set_icon("dismiss", "AssetLib", theme->get_icon(SNAME("Close"), SNAME("EditorIcons")));
  1484. // Theme editor.
  1485. theme->set_color("preview_picker_overlay_color", "ThemeEditor", Color(0.1, 0.1, 0.1, 0.25));
  1486. Color theme_preview_picker_bg_color = accent_color;
  1487. theme_preview_picker_bg_color.a = 0.2;
  1488. Ref<StyleBoxFlat> theme_preview_picker_sb = make_flat_stylebox(theme_preview_picker_bg_color, 0, 0, 0, 0);
  1489. theme_preview_picker_sb->set_border_color(accent_color);
  1490. theme_preview_picker_sb->set_border_width_all(1.0 * EDSCALE);
  1491. theme->set_stylebox("preview_picker_overlay", "ThemeEditor", theme_preview_picker_sb);
  1492. Color theme_preview_picker_label_bg_color = accent_color;
  1493. theme_preview_picker_label_bg_color.set_v(0.5);
  1494. Ref<StyleBoxFlat> theme_preview_picker_label_sb = make_flat_stylebox(theme_preview_picker_label_bg_color, 4.0, 1.0, 4.0, 3.0);
  1495. theme->set_stylebox("preview_picker_label", "ThemeEditor", theme_preview_picker_label_sb);
  1496. // Dictionary editor add item.
  1497. // Expand to the left and right by 4px to compensate for the dictionary editor margins.
  1498. Ref<StyleBoxFlat> style_dictionary_add_item = make_flat_stylebox(prop_subsection_color, 0, 4, 0, 4, corner_radius);
  1499. style_dictionary_add_item->set_expand_margin_size(SIDE_LEFT, 4 * EDSCALE);
  1500. style_dictionary_add_item->set_expand_margin_size(SIDE_RIGHT, 4 * EDSCALE);
  1501. theme->set_stylebox("DictionaryAddItem", "EditorStyles", style_dictionary_add_item);
  1502. Ref<StyleBoxEmpty> vshader_label_style = make_empty_stylebox(2, 1, 2, 1);
  1503. theme->set_stylebox("label_style", "VShaderEditor", vshader_label_style);
  1504. // adaptive script theme constants
  1505. // for comments and elements with lower relevance
  1506. const Color dim_color = Color(font_color.r, font_color.g, font_color.b, 0.5);
  1507. const float mono_value = mono_color.r;
  1508. const Color alpha1 = Color(mono_value, mono_value, mono_value, 0.07);
  1509. const Color alpha2 = Color(mono_value, mono_value, mono_value, 0.14);
  1510. const Color alpha3 = Color(mono_value, mono_value, mono_value, 0.27);
  1511. const Color symbol_color = dark_theme ? Color(0.67, 0.79, 1) : Color(0, 0, 0.61);
  1512. const Color keyword_color = dark_theme ? Color(1.0, 0.44, 0.52) : Color(0.9, 0.135, 0.51);
  1513. const Color control_flow_keyword_color = dark_theme ? Color(1.0, 0.55, 0.8) : Color(0.743, 0.12, 0.8);
  1514. const Color base_type_color = dark_theme ? Color(0.26, 1.0, 0.76) : Color(0, 0.6, 0.2);
  1515. const Color engine_type_color = dark_theme ? Color(0.56, 1, 0.86) : Color(0.11, 0.55, 0.4);
  1516. const Color user_type_color = dark_theme ? Color(0.78, 1, 0.93) : Color(0.18, 0.45, 0.4);
  1517. const Color comment_color = dark_theme ? dim_color : Color(0.08, 0.08, 0.08, 0.5);
  1518. const Color string_color = dark_theme ? Color(1, 0.93, 0.63) : Color(0.6, 0.42, 0);
  1519. // Use the brightest background color on a light theme (which generally uses a negative contrast rate).
  1520. const Color te_background_color = dark_theme ? background_color : dark_color_3;
  1521. const Color completion_background_color = dark_theme ? base_color : background_color;
  1522. const Color completion_selected_color = alpha1;
  1523. const Color completion_existing_color = alpha2;
  1524. // Same opacity as the scroll grabber editor icon.
  1525. const Color completion_scroll_color = Color(mono_value, mono_value, mono_value, 0.29);
  1526. const Color completion_scroll_hovered_color = Color(mono_value, mono_value, mono_value, 0.4);
  1527. const Color completion_font_color = font_color;
  1528. const Color text_color = font_color;
  1529. const Color line_number_color = dim_color;
  1530. const Color safe_line_number_color = dark_theme ? (dim_color * Color(1, 1.2, 1, 1.5)) : Color(0, 0.4, 0, 0.75);
  1531. const Color caret_color = mono_color;
  1532. const Color caret_background_color = mono_color.inverted();
  1533. const Color text_selected_color = dark_color_3;
  1534. const Color brace_mismatch_color = dark_theme ? error_color : Color(1, 0.08, 0, 1);
  1535. const Color current_line_color = alpha1;
  1536. const Color line_length_guideline_color = dark_theme ? base_color : background_color;
  1537. const Color word_highlighted_color = alpha1;
  1538. const Color number_color = dark_theme ? Color(0.63, 1, 0.88) : Color(0, 0.55, 0.28, 1);
  1539. const Color function_color = dark_theme ? Color(0.34, 0.7, 1.0) : Color(0, 0.225, 0.9, 1);
  1540. const Color member_variable_color = dark_theme ? Color(0.34, 0.7, 1.0).lerp(mono_color, 0.6) : Color(0, 0.4, 0.68, 1);
  1541. const Color mark_color = Color(error_color.r, error_color.g, error_color.b, 0.3);
  1542. const Color bookmark_color = Color(0.08, 0.49, 0.98);
  1543. const Color breakpoint_color = dark_theme ? error_color : Color(1, 0.27, 0.2, 1);
  1544. const Color executing_line_color = Color(0.98, 0.89, 0.27);
  1545. const Color code_folding_color = alpha3;
  1546. const Color search_result_color = alpha1;
  1547. const Color search_result_border_color = dark_theme ? Color(0.41, 0.61, 0.91, 0.38) : Color(0, 0.4, 1, 0.38);
  1548. EditorSettings *setting = EditorSettings::get_singleton();
  1549. String text_editor_color_theme = setting->get("text_editor/theme/color_theme");
  1550. if (text_editor_color_theme == "Default") {
  1551. setting->set_initial_value("text_editor/theme/highlighting/symbol_color", symbol_color, true);
  1552. setting->set_initial_value("text_editor/theme/highlighting/keyword_color", keyword_color, true);
  1553. setting->set_initial_value("text_editor/theme/highlighting/control_flow_keyword_color", control_flow_keyword_color, true);
  1554. setting->set_initial_value("text_editor/theme/highlighting/base_type_color", base_type_color, true);
  1555. setting->set_initial_value("text_editor/theme/highlighting/engine_type_color", engine_type_color, true);
  1556. setting->set_initial_value("text_editor/theme/highlighting/user_type_color", user_type_color, true);
  1557. setting->set_initial_value("text_editor/theme/highlighting/comment_color", comment_color, true);
  1558. setting->set_initial_value("text_editor/theme/highlighting/string_color", string_color, true);
  1559. setting->set_initial_value("text_editor/theme/highlighting/background_color", te_background_color, true);
  1560. setting->set_initial_value("text_editor/theme/highlighting/completion_background_color", completion_background_color, true);
  1561. setting->set_initial_value("text_editor/theme/highlighting/completion_selected_color", completion_selected_color, true);
  1562. setting->set_initial_value("text_editor/theme/highlighting/completion_existing_color", completion_existing_color, true);
  1563. setting->set_initial_value("text_editor/theme/highlighting/completion_scroll_color", completion_scroll_color, true);
  1564. setting->set_initial_value("text_editor/theme/highlighting/completion_scroll_hovered_color", completion_scroll_hovered_color, true);
  1565. setting->set_initial_value("text_editor/theme/highlighting/completion_font_color", completion_font_color, true);
  1566. setting->set_initial_value("text_editor/theme/highlighting/text_color", text_color, true);
  1567. setting->set_initial_value("text_editor/theme/highlighting/line_number_color", line_number_color, true);
  1568. setting->set_initial_value("text_editor/theme/highlighting/safe_line_number_color", safe_line_number_color, true);
  1569. setting->set_initial_value("text_editor/theme/highlighting/caret_color", caret_color, true);
  1570. setting->set_initial_value("text_editor/theme/highlighting/caret_background_color", caret_background_color, true);
  1571. setting->set_initial_value("text_editor/theme/highlighting/text_selected_color", text_selected_color, true);
  1572. setting->set_initial_value("text_editor/theme/highlighting/selection_color", selection_color, true);
  1573. setting->set_initial_value("text_editor/theme/highlighting/brace_mismatch_color", brace_mismatch_color, true);
  1574. setting->set_initial_value("text_editor/theme/highlighting/current_line_color", current_line_color, true);
  1575. setting->set_initial_value("text_editor/theme/highlighting/line_length_guideline_color", line_length_guideline_color, true);
  1576. setting->set_initial_value("text_editor/theme/highlighting/word_highlighted_color", word_highlighted_color, true);
  1577. setting->set_initial_value("text_editor/theme/highlighting/number_color", number_color, true);
  1578. setting->set_initial_value("text_editor/theme/highlighting/function_color", function_color, true);
  1579. setting->set_initial_value("text_editor/theme/highlighting/member_variable_color", member_variable_color, true);
  1580. setting->set_initial_value("text_editor/theme/highlighting/mark_color", mark_color, true);
  1581. setting->set_initial_value("text_editor/theme/highlighting/bookmark_color", bookmark_color, true);
  1582. setting->set_initial_value("text_editor/theme/highlighting/breakpoint_color", breakpoint_color, true);
  1583. setting->set_initial_value("text_editor/theme/highlighting/executing_line_color", executing_line_color, true);
  1584. setting->set_initial_value("text_editor/theme/highlighting/code_folding_color", code_folding_color, true);
  1585. setting->set_initial_value("text_editor/theme/highlighting/search_result_color", search_result_color, true);
  1586. setting->set_initial_value("text_editor/theme/highlighting/search_result_border_color", search_result_border_color, true);
  1587. } else if (text_editor_color_theme == "Godot 2") {
  1588. setting->load_text_editor_theme();
  1589. }
  1590. // Now theme is loaded, apply it to CodeEdit.
  1591. theme->set_font("font", "CodeEdit", theme->get_font(SNAME("source"), SNAME("EditorFonts")));
  1592. theme->set_font_size("font_size", "CodeEdit", theme->get_font_size(SNAME("source_size"), SNAME("EditorFonts")));
  1593. Ref<StyleBoxFlat> code_edit_stylebox = make_flat_stylebox(EDITOR_GET("text_editor/theme/highlighting/background_color"), widget_default_margin.x, widget_default_margin.y, widget_default_margin.x, widget_default_margin.y, corner_radius);
  1594. theme->set_stylebox("normal", "CodeEdit", code_edit_stylebox);
  1595. theme->set_stylebox("read_only", "CodeEdit", code_edit_stylebox);
  1596. theme->set_stylebox("focus", "CodeEdit", Ref<StyleBoxEmpty>(memnew(StyleBoxEmpty)));
  1597. theme->set_icon("tab", "CodeEdit", theme->get_icon(SNAME("GuiTab"), SNAME("EditorIcons")));
  1598. theme->set_icon("space", "CodeEdit", theme->get_icon(SNAME("GuiSpace"), SNAME("EditorIcons")));
  1599. theme->set_icon("folded", "CodeEdit", theme->get_icon(SNAME("CodeFoldedRightArrow"), SNAME("EditorIcons")));
  1600. theme->set_icon("can_fold", "CodeEdit", theme->get_icon(SNAME("CodeFoldDownArrow"), SNAME("EditorIcons")));
  1601. theme->set_icon("executing_line", "CodeEdit", theme->get_icon(SNAME("TextEditorPlay"), SNAME("EditorIcons")));
  1602. theme->set_icon("breakpoint", "CodeEdit", theme->get_icon(SNAME("Breakpoint"), SNAME("EditorIcons")));
  1603. theme->set_constant("line_spacing", "CodeEdit", EDITOR_GET("text_editor/appearance/whitespace/line_spacing"));
  1604. theme->set_color("background_color", "CodeEdit", Color(0, 0, 0, 0));
  1605. theme->set_color("completion_background_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/completion_background_color"));
  1606. theme->set_color("completion_selected_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/completion_selected_color"));
  1607. theme->set_color("completion_existing_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/completion_existing_color"));
  1608. theme->set_color("completion_scroll_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/completion_scroll_color"));
  1609. theme->set_color("completion_scroll_hovered_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/completion_scroll_hovered_color"));
  1610. theme->set_color("completion_font_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/completion_font_color"));
  1611. theme->set_color("font_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/text_color"));
  1612. theme->set_color("line_number_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/line_number_color"));
  1613. theme->set_color("caret_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/caret_color"));
  1614. theme->set_color("font_selected_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/text_selected_color"));
  1615. theme->set_color("selection_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/selection_color"));
  1616. theme->set_color("brace_mismatch_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/brace_mismatch_color"));
  1617. theme->set_color("current_line_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/current_line_color"));
  1618. theme->set_color("line_length_guideline_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/line_length_guideline_color"));
  1619. theme->set_color("word_highlighted_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/word_highlighted_color"));
  1620. theme->set_color("bookmark_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/bookmark_color"));
  1621. theme->set_color("breakpoint_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/breakpoint_color"));
  1622. theme->set_color("executing_line_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/executing_line_color"));
  1623. theme->set_color("code_folding_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/code_folding_color"));
  1624. theme->set_color("search_result_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/search_result_color"));
  1625. theme->set_color("search_result_border_color", "CodeEdit", EDITOR_GET("text_editor/theme/highlighting/search_result_border_color"));
  1626. return theme;
  1627. }
  1628. Ref<Theme> create_custom_theme(const Ref<Theme> p_theme) {
  1629. Ref<Theme> theme = create_editor_theme(p_theme);
  1630. const String custom_theme_path = EditorSettings::get_singleton()->get("interface/theme/custom_theme");
  1631. if (!custom_theme_path.is_empty()) {
  1632. Ref<Theme> custom_theme = ResourceLoader::load(custom_theme_path);
  1633. if (custom_theme.is_valid()) {
  1634. theme->merge_with(custom_theme);
  1635. }
  1636. }
  1637. return theme;
  1638. }
  1639. /**
  1640. * Returns the SVG code for the default project icon.
  1641. */
  1642. String get_default_project_icon() {
  1643. for (int i = 0; i < editor_icons_count; i++) {
  1644. if (strcmp(editor_icons_names[i], "DefaultProjectIcon") == 0) {
  1645. return String(editor_icons_sources[i]);
  1646. }
  1647. }
  1648. return String();
  1649. }