editor_themes.cpp 76 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399
  1. /*************************************************************************/
  2. /* editor_themes.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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/io/resource_loader.h"
  32. #include "editor_fonts.h"
  33. #include "editor_icons.gen.h"
  34. #include "editor_scale.h"
  35. #include "editor_settings.h"
  36. #include "modules/modules_enabled.gen.h"
  37. #ifdef MODULE_SVG_ENABLED
  38. #include "modules/svg/image_loader_svg.h"
  39. #endif
  40. 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) {
  41. Ref<StyleBoxTexture> style(memnew(StyleBoxTexture));
  42. style->set_texture(p_texture);
  43. style->set_margin_size(SIDE_LEFT, p_left * EDSCALE);
  44. style->set_margin_size(SIDE_RIGHT, p_right * EDSCALE);
  45. style->set_margin_size(SIDE_BOTTOM, p_bottom * EDSCALE);
  46. style->set_margin_size(SIDE_TOP, p_top * EDSCALE);
  47. style->set_default_margin(SIDE_LEFT, p_margin_left * EDSCALE);
  48. style->set_default_margin(SIDE_RIGHT, p_margin_right * EDSCALE);
  49. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * EDSCALE);
  50. style->set_default_margin(SIDE_TOP, p_margin_top * EDSCALE);
  51. style->set_draw_center(p_draw_center);
  52. return style;
  53. }
  54. 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) {
  55. Ref<StyleBoxEmpty> style(memnew(StyleBoxEmpty));
  56. style->set_default_margin(SIDE_LEFT, p_margin_left * EDSCALE);
  57. style->set_default_margin(SIDE_RIGHT, p_margin_right * EDSCALE);
  58. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * EDSCALE);
  59. style->set_default_margin(SIDE_TOP, p_margin_top * EDSCALE);
  60. return style;
  61. }
  62. 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) {
  63. Ref<StyleBoxFlat> style(memnew(StyleBoxFlat));
  64. style->set_bg_color(p_color);
  65. style->set_default_margin(SIDE_LEFT, p_margin_left * EDSCALE);
  66. style->set_default_margin(SIDE_RIGHT, p_margin_right * EDSCALE);
  67. style->set_default_margin(SIDE_BOTTOM, p_margin_bottom * EDSCALE);
  68. style->set_default_margin(SIDE_TOP, p_margin_top * EDSCALE);
  69. return style;
  70. }
  71. 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) {
  72. Ref<StyleBoxLine> style(memnew(StyleBoxLine));
  73. style->set_color(p_color);
  74. style->set_grow_begin(p_grow_begin);
  75. style->set_grow_end(p_grow_end);
  76. style->set_thickness(p_thickness);
  77. style->set_vertical(p_vertical);
  78. return style;
  79. }
  80. static Ref<Texture2D> flip_icon(Ref<Texture2D> p_texture, bool p_flip_y = false, bool p_flip_x = false) {
  81. if (!p_flip_y && !p_flip_x) {
  82. return p_texture;
  83. }
  84. Ref<ImageTexture> texture(memnew(ImageTexture));
  85. Ref<Image> img = p_texture->get_data();
  86. img = img->duplicate();
  87. if (p_flip_y) {
  88. img->flip_y();
  89. }
  90. if (p_flip_x) {
  91. img->flip_x();
  92. }
  93. texture->create_from_image(img);
  94. return texture;
  95. }
  96. #ifdef MODULE_SVG_ENABLED
  97. static Ref<ImageTexture> editor_generate_icon(int p_index, bool p_convert_color, float p_scale = EDSCALE, float p_saturation = 1.0) {
  98. Ref<ImageTexture> icon = memnew(ImageTexture);
  99. Ref<Image> img = memnew(Image);
  100. // Upsample icon generation only if the editor scale isn't an integer multiplier.
  101. // Generating upsampled icons is slower, and the benefit is hardly visible
  102. // with integer editor scales.
  103. const bool upsample = !Math::is_equal_approx(Math::round(p_scale), p_scale);
  104. ImageLoaderSVG::create_image_from_string(img, editor_icons_sources[p_index], p_scale, upsample, p_convert_color);
  105. if (p_saturation != 1.0) {
  106. img->adjust_bcs(1.0, 1.0, p_saturation);
  107. }
  108. icon->create_from_image(img); // in this case filter really helps
  109. return icon;
  110. }
  111. #endif
  112. #ifndef ADD_CONVERT_COLOR
  113. #define ADD_CONVERT_COLOR(dictionary, old_color, new_color) dictionary[Color::html(old_color)] = Color::html(new_color)
  114. #endif
  115. 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) {
  116. #ifdef MODULE_SVG_ENABLED
  117. // The default icon theme is designed to be used for a dark theme.
  118. // This dictionary stores color codes to convert to other colors
  119. // for better readability on a light theme.
  120. Dictionary dark_icon_color_dictionary;
  121. // The names of the icons to never convert, even if one of their colors
  122. // are contained in the dictionary above.
  123. Set<StringName> exceptions;
  124. if (!p_dark_theme) {
  125. // convert color: FROM TO
  126. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e0e0e0", "#5a5a5a"); // common icon color
  127. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ffffff", "#414141"); // white
  128. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#b4b4b4", "#363636"); // script darker color
  129. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f9f9f9", "#606060"); // scrollbar grabber highlight color
  130. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#cea4f1", "#a85de9"); // animation
  131. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#fc9c9c", "#cd3838"); // spatial
  132. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#a5b7f3", "#3d64dd"); // 2d
  133. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#708cea", "#1a3eac"); // 2d dark
  134. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#a5efac", "#2fa139"); // control
  135. // rainbow
  136. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff7070", "#ff2929"); // red
  137. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ffeb70", "#ffe337"); // yellow
  138. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#9dff70", "#74ff34"); // green
  139. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#70ffb9", "#2cff98"); // aqua
  140. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#70deff", "#22ccff"); // blue
  141. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#9f70ff", "#702aff"); // purple
  142. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff70ac", "#ff2781"); // pink
  143. // audio gradient
  144. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff8484", "#ff4040"); // red
  145. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e1dc7a", "#d6cf4b"); // yellow
  146. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#84ffb1", "#00f010"); // green
  147. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ffd684", "#fea900"); // mesh (orange)
  148. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#40a2ff", "#68b6ff"); // shape (blue)
  149. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ff8484", "#ff3333"); // remove (red)
  150. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#84ffb1", "#00db50"); // add (green)
  151. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#84c2ff", "#5caeff"); // selection (blue)
  152. // Animation editor tracks
  153. // The property track icon color is set by the common icon color
  154. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ea9568", "#bd5e2c"); // 3D Transform track
  155. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#66f376", "#16a827"); // Call Method track
  156. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#5792f6", "#236be6"); // Bezier Curve track
  157. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#eae668", "#9f9722"); // Audio Playback track
  158. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#b76ef0", "#9853ce"); // Animation Playback track
  159. // TileSet editor icons
  160. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#fce844", "#aa8d24"); // New Single Tile
  161. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#4490fc", "#0350bd"); // New Autotile
  162. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#c9cfd4", "#828f9b"); // New Atlas
  163. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#69ecbd", "#25e3a0"); // VS variant
  164. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#8da6f0", "#6d8eeb"); // VS bool
  165. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#7dc6ef", "#4fb2e9"); // VS int
  166. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#61daf4", "#27ccf0"); // VS float
  167. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#6ba7ec", "#4690e7"); // VS string
  168. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#bd91f1", "#ad76ee"); // VS vector2
  169. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f191a5", "#ee758e"); // VS rect
  170. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e286f0", "#dc6aed"); // VS vector3
  171. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#c4ec69", "#96ce1a"); // VS transform2D
  172. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f77070", "#f77070"); // VS plane
  173. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ec69a3", "#ec69a3"); // VS quat
  174. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#ee7991", "#ee7991"); // VS aabb
  175. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#e3ec69", "#b2bb19"); // VS basis
  176. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#f6a86e", "#f49047"); // VS transform
  177. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#6993ec", "#6993ec"); // VS path
  178. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#69ec9a", "#2ce573"); // VS rid
  179. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#79f3e8", "#12d5c3"); // VS object
  180. ADD_CONVERT_COLOR(dark_icon_color_dictionary, "#77edb1", "#57e99f"); // VS dict
  181. exceptions.insert("EditorPivot");
  182. exceptions.insert("EditorHandle");
  183. exceptions.insert("Editor3DHandle");
  184. exceptions.insert("Godot");
  185. exceptions.insert("Sky");
  186. exceptions.insert("EditorControlAnchor");
  187. exceptions.insert("DefaultProjectIcon");
  188. exceptions.insert("GuiCloseCustomizable");
  189. exceptions.insert("GuiGraphNodePort");
  190. exceptions.insert("GuiResizer");
  191. exceptions.insert("ZoomMore");
  192. exceptions.insert("ZoomLess");
  193. exceptions.insert("ZoomReset");
  194. exceptions.insert("LockViewport");
  195. exceptions.insert("GroupViewport");
  196. exceptions.insert("StatusError");
  197. exceptions.insert("StatusSuccess");
  198. exceptions.insert("StatusWarning");
  199. exceptions.insert("NodeWarning");
  200. exceptions.insert("OverbrightIndicator");
  201. }
  202. // These ones should be converted even if we are using a dark theme.
  203. const Color error_color = p_theme->get_color("error_color", "Editor");
  204. const Color success_color = p_theme->get_color("success_color", "Editor");
  205. const Color warning_color = p_theme->get_color("warning_color", "Editor");
  206. dark_icon_color_dictionary[Color::html("#ff0000")] = error_color;
  207. dark_icon_color_dictionary[Color::html("#45ff8b")] = success_color;
  208. dark_icon_color_dictionary[Color::html("#dbab09")] = warning_color;
  209. ImageLoaderSVG::set_convert_colors(&dark_icon_color_dictionary);
  210. // Generate icons.
  211. if (!p_only_thumbs) {
  212. for (int i = 0; i < editor_icons_count; i++) {
  213. float icon_scale = EDSCALE;
  214. float saturation = p_icon_saturation;
  215. // Always keep the DefaultProjectIcon at the default size
  216. if (strcmp(editor_icons_names[i], "DefaultProjectIcon") == 0) {
  217. icon_scale = 1.0f;
  218. }
  219. if (strcmp(editor_icons_names[i], "DefaultProjectIcon") == 0 || strcmp(editor_icons_names[i], "Godot") == 0 || strcmp(editor_icons_names[i], "Logo") == 0) {
  220. saturation = 1.0;
  221. }
  222. const int is_exception = exceptions.has(editor_icons_names[i]);
  223. const Ref<ImageTexture> icon = editor_generate_icon(i, !is_exception, icon_scale, saturation);
  224. p_theme->set_icon(editor_icons_names[i], "EditorIcons", icon);
  225. }
  226. }
  227. // Generate thumbnail icons with the given thumbnail size.
  228. // We don't need filtering when generating at one of the default resolutions.
  229. const bool force_filter = p_thumb_size != 64 && p_thumb_size != 32;
  230. if (p_thumb_size >= 64) {
  231. const float scale = (float)p_thumb_size / 64.0 * EDSCALE;
  232. for (int i = 0; i < editor_bg_thumbs_count; i++) {
  233. const int index = editor_bg_thumbs_indices[i];
  234. const int is_exception = exceptions.has(editor_icons_names[index]);
  235. const Ref<ImageTexture> icon = editor_generate_icon(index, !p_dark_theme && !is_exception, scale, force_filter);
  236. p_theme->set_icon(editor_icons_names[index], "EditorIcons", icon);
  237. }
  238. } else {
  239. const float scale = (float)p_thumb_size / 32.0 * EDSCALE;
  240. for (int i = 0; i < editor_md_thumbs_count; i++) {
  241. const int index = editor_md_thumbs_indices[i];
  242. const bool is_exception = exceptions.has(editor_icons_names[index]);
  243. const Ref<ImageTexture> icon = editor_generate_icon(index, !p_dark_theme && !is_exception, scale, force_filter);
  244. p_theme->set_icon(editor_icons_names[index], "EditorIcons", icon);
  245. }
  246. }
  247. ImageLoaderSVG::set_convert_colors(nullptr);
  248. #else
  249. WARN_PRINT("SVG support disabled, editor icons won't be rendered.");
  250. #endif
  251. }
  252. Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
  253. Ref<Theme> theme = Ref<Theme>(memnew(Theme));
  254. const float default_contrast = 0.25;
  255. //Theme settings
  256. Color accent_color = EDITOR_GET("interface/theme/accent_color");
  257. Color base_color = EDITOR_GET("interface/theme/base_color");
  258. float contrast = EDITOR_GET("interface/theme/contrast");
  259. float icon_saturation = EDITOR_GET("interface/theme/icon_saturation");
  260. float relationship_line_opacity = EDITOR_GET("interface/theme/relationship_line_opacity");
  261. String preset = EDITOR_GET("interface/theme/preset");
  262. bool highlight_tabs = EDITOR_GET("interface/theme/highlight_tabs");
  263. int border_size = EDITOR_GET("interface/theme/border_size");
  264. bool use_gn_headers = EDITOR_GET("interface/theme/use_graph_node_headers");
  265. Color preset_accent_color;
  266. Color preset_base_color;
  267. float preset_contrast = 0;
  268. // Please, use alphabet order if you've added new theme here(After "Default" and "Custom")
  269. if (preset == "Default") {
  270. preset_accent_color = Color(0.41, 0.61, 0.91);
  271. preset_base_color = Color(0.2, 0.23, 0.31);
  272. preset_contrast = default_contrast;
  273. } else if (preset == "Custom") {
  274. accent_color = EDITOR_GET("interface/theme/accent_color");
  275. base_color = EDITOR_GET("interface/theme/base_color");
  276. contrast = EDITOR_GET("interface/theme/contrast");
  277. } else if (preset == "Alien") {
  278. preset_accent_color = Color(0.11, 1.0, 0.6);
  279. preset_base_color = Color(0.18, 0.22, 0.25);
  280. preset_contrast = 0.25;
  281. } else if (preset == "Arc") {
  282. preset_accent_color = Color(0.32, 0.58, 0.89);
  283. preset_base_color = Color(0.22, 0.24, 0.29);
  284. preset_contrast = 0.25;
  285. } else if (preset == "Godot 2") {
  286. preset_accent_color = Color(0.53, 0.67, 0.89);
  287. preset_base_color = Color(0.24, 0.23, 0.27);
  288. preset_contrast = 0.25;
  289. } else if (preset == "Grey") {
  290. preset_accent_color = Color(0.72, 0.89, 1.0);
  291. preset_base_color = Color(0.24, 0.24, 0.24);
  292. preset_contrast = 0.2;
  293. } else if (preset == "Light") {
  294. preset_accent_color = Color(0.13, 0.44, 1.0);
  295. preset_base_color = Color(1, 1, 1);
  296. preset_contrast = 0.08;
  297. } else if (preset == "Solarized (Dark)") {
  298. preset_accent_color = Color(0.15, 0.55, 0.82);
  299. preset_base_color = Color(0.03, 0.21, 0.26);
  300. preset_contrast = 0.23;
  301. } else if (preset == "Solarized (Light)") {
  302. preset_accent_color = Color(0.15, 0.55, 0.82);
  303. preset_base_color = Color(0.99, 0.96, 0.89);
  304. preset_contrast = 0.06;
  305. } else { // Default
  306. preset_accent_color = Color(0.41, 0.61, 0.91);
  307. preset_base_color = Color(0.2, 0.23, 0.31);
  308. preset_contrast = default_contrast;
  309. }
  310. if (preset != "Custom") {
  311. accent_color = preset_accent_color;
  312. base_color = preset_base_color;
  313. contrast = preset_contrast;
  314. EditorSettings::get_singleton()->set_initial_value("interface/theme/accent_color", accent_color);
  315. EditorSettings::get_singleton()->set_initial_value("interface/theme/base_color", base_color);
  316. EditorSettings::get_singleton()->set_initial_value("interface/theme/contrast", contrast);
  317. }
  318. EditorSettings::get_singleton()->set_manually("interface/theme/preset", preset);
  319. EditorSettings::get_singleton()->set_manually("interface/theme/accent_color", accent_color);
  320. EditorSettings::get_singleton()->set_manually("interface/theme/base_color", base_color);
  321. EditorSettings::get_singleton()->set_manually("interface/theme/contrast", contrast);
  322. //Colors
  323. bool dark_theme = EditorSettings::get_singleton()->is_dark_theme();
  324. const Color dark_color_1 = base_color.lerp(Color(0, 0, 0, 1), contrast);
  325. const Color dark_color_2 = base_color.lerp(Color(0, 0, 0, 1), contrast * 1.5);
  326. const Color dark_color_3 = base_color.lerp(Color(0, 0, 0, 1), contrast * 2);
  327. const Color background_color = dark_color_2;
  328. // white (dark theme) or black (light theme), will be used to generate the rest of the colors
  329. const Color mono_color = dark_theme ? Color(1, 1, 1) : Color(0, 0, 0);
  330. const Color contrast_color_1 = base_color.lerp(mono_color, MAX(contrast, default_contrast));
  331. const Color contrast_color_2 = base_color.lerp(mono_color, MAX(contrast * 1.5, default_contrast * 1.5));
  332. const Color font_color = mono_color.lerp(base_color, 0.25);
  333. const Color font_hover_color = mono_color.lerp(base_color, 0.15);
  334. const Color font_disabled_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.3);
  335. const Color selection_color = accent_color * Color(1, 1, 1, 0.4);
  336. const Color disabled_color = mono_color.inverted().lerp(base_color, 0.7);
  337. const Color disabled_bg_color = mono_color.inverted().lerp(base_color, 0.9);
  338. Color icon_hover_color = Color(1, 1, 1) * (dark_theme ? 1.15 : 1.45);
  339. icon_hover_color.a = 1.0;
  340. // Make the pressed icon color overbright because icons are not completely white on a dark theme.
  341. // On a light theme, icons are dark, so we need to modulate them with an even brighter color.
  342. Color icon_pressed_color = accent_color * (dark_theme ? 1.15 : 3.5);
  343. icon_pressed_color.a = 1.0;
  344. const Color separator_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.1);
  345. const Color highlight_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.2);
  346. float prev_icon_saturation = theme->has_color("icon_saturation", "Editor") ? theme->get_color("icon_saturation", "Editor").r : 1.0;
  347. theme->set_color("icon_saturation", "Editor", Color(icon_saturation, icon_saturation, icon_saturation)); //can't save single float in theme, so using color
  348. theme->set_color("accent_color", "Editor", accent_color);
  349. theme->set_color("highlight_color", "Editor", highlight_color);
  350. theme->set_color("base_color", "Editor", base_color);
  351. theme->set_color("dark_color_1", "Editor", dark_color_1);
  352. theme->set_color("dark_color_2", "Editor", dark_color_2);
  353. theme->set_color("dark_color_3", "Editor", dark_color_3);
  354. theme->set_color("contrast_color_1", "Editor", contrast_color_1);
  355. theme->set_color("contrast_color_2", "Editor", contrast_color_2);
  356. theme->set_color("box_selection_fill_color", "Editor", accent_color * Color(1, 1, 1, 0.3));
  357. theme->set_color("box_selection_stroke_color", "Editor", accent_color * Color(1, 1, 1, 0.8));
  358. theme->set_color("axis_x_color", "Editor", Color(0.96, 0.20, 0.32));
  359. theme->set_color("axis_y_color", "Editor", Color(0.53, 0.84, 0.01));
  360. theme->set_color("axis_z_color", "Editor", Color(0.16, 0.55, 0.96));
  361. theme->set_color("font_color", "Editor", font_color);
  362. theme->set_color("highlighted_font_color", "Editor", font_hover_color);
  363. theme->set_color("disabled_font_color", "Editor", font_disabled_color);
  364. theme->set_color("mono_color", "Editor", mono_color);
  365. Color success_color = Color(0.45, 0.95, 0.5);
  366. Color warning_color = Color(1, 0.87, 0.4);
  367. Color error_color = Color(1, 0.47, 0.42);
  368. Color property_color = font_color.lerp(Color(0.5, 0.5, 0.5), 0.5);
  369. if (!dark_theme) {
  370. // Darken some colors to be readable on a light background
  371. success_color = success_color.lerp(mono_color, 0.35);
  372. warning_color = warning_color.lerp(mono_color, 0.35);
  373. error_color = error_color.lerp(mono_color, 0.25);
  374. }
  375. theme->set_color("success_color", "Editor", success_color);
  376. theme->set_color("warning_color", "Editor", warning_color);
  377. theme->set_color("error_color", "Editor", error_color);
  378. theme->set_color("property_color", "Editor", property_color);
  379. if (!dark_theme) {
  380. theme->set_color("vulkan_color", "Editor", Color::hex(0xad1128ff));
  381. } else {
  382. theme->set_color("vulkan_color", "Editor", Color(1.0, 0.0, 0.0));
  383. }
  384. const int thumb_size = EDITOR_GET("filesystem/file_dialog/thumbnail_size");
  385. theme->set_constant("scale", "Editor", EDSCALE);
  386. theme->set_constant("thumb_size", "Editor", thumb_size);
  387. theme->set_constant("dark_theme", "Editor", dark_theme);
  388. //Register icons + font
  389. // the resolution and the icon color (dark_theme bool) has not changed, so we do not regenerate the icons
  390. if (p_theme != nullptr && fabs(p_theme->get_constant("scale", "Editor") - EDSCALE) < 0.00001 && (bool)p_theme->get_constant("dark_theme", "Editor") == dark_theme && prev_icon_saturation == icon_saturation) {
  391. // register already generated icons
  392. for (int i = 0; i < editor_icons_count; i++) {
  393. theme->set_icon(editor_icons_names[i], "EditorIcons", p_theme->get_icon(editor_icons_names[i], "EditorIcons"));
  394. }
  395. } else {
  396. editor_register_and_generate_icons(theme, dark_theme, thumb_size, false, icon_saturation);
  397. }
  398. // thumbnail size has changed, so we regenerate the medium sizes
  399. if (p_theme != nullptr && fabs((double)p_theme->get_constant("thumb_size", "Editor") - thumb_size) > 0.00001) {
  400. editor_register_and_generate_icons(p_theme, dark_theme, thumb_size, true);
  401. }
  402. editor_register_fonts(theme);
  403. // Highlighted tabs and border width
  404. Color tab_color = highlight_tabs ? base_color.lerp(font_color, contrast) : base_color;
  405. // Ensure borders are visible when using an editor scale below 100%.
  406. const int border_width = CLAMP(border_size, 0, 3) * MAX(1, EDSCALE);
  407. const int default_margin_size = 4;
  408. const int margin_size_extra = default_margin_size + CLAMP(border_size, 0, 3);
  409. // styleboxes
  410. // this is the most commonly used stylebox, variations should be made as duplicate of this
  411. Ref<StyleBoxFlat> style_default = make_flat_stylebox(base_color, default_margin_size, default_margin_size, default_margin_size, default_margin_size);
  412. style_default->set_border_width_all(border_width);
  413. style_default->set_border_color(base_color);
  414. style_default->set_draw_center(true);
  415. // Button and widgets
  416. const float extra_spacing = EDITOR_GET("interface/theme/additional_spacing");
  417. Ref<StyleBoxFlat> style_widget = style_default->duplicate();
  418. style_widget->set_default_margin(SIDE_LEFT, (extra_spacing + 6) * EDSCALE);
  419. style_widget->set_default_margin(SIDE_TOP, (extra_spacing + default_margin_size) * EDSCALE);
  420. style_widget->set_default_margin(SIDE_RIGHT, (extra_spacing + 6) * EDSCALE);
  421. style_widget->set_default_margin(SIDE_BOTTOM, (extra_spacing + default_margin_size) * EDSCALE);
  422. style_widget->set_bg_color(dark_color_1);
  423. style_widget->set_border_color(dark_color_2);
  424. Ref<StyleBoxFlat> style_widget_disabled = style_widget->duplicate();
  425. style_widget_disabled->set_border_color(disabled_color);
  426. style_widget_disabled->set_bg_color(disabled_bg_color);
  427. Ref<StyleBoxFlat> style_widget_focus = style_widget->duplicate();
  428. style_widget_focus->set_border_color(accent_color);
  429. Ref<StyleBoxFlat> style_widget_pressed = style_widget->duplicate();
  430. style_widget_pressed->set_border_color(accent_color);
  431. Ref<StyleBoxFlat> style_widget_hover = style_widget->duplicate();
  432. style_widget_hover->set_border_color(contrast_color_1);
  433. // style for windows, popups, etc..
  434. Ref<StyleBoxFlat> style_popup = style_default->duplicate();
  435. const int popup_margin_size = default_margin_size * EDSCALE * 2;
  436. style_popup->set_default_margin(SIDE_LEFT, popup_margin_size);
  437. style_popup->set_default_margin(SIDE_TOP, popup_margin_size);
  438. style_popup->set_default_margin(SIDE_RIGHT, popup_margin_size);
  439. style_popup->set_default_margin(SIDE_BOTTOM, popup_margin_size);
  440. style_popup->set_border_color(contrast_color_1);
  441. style_popup->set_border_width_all(MAX(EDSCALE, border_width));
  442. const Color shadow_color = Color(0, 0, 0, dark_theme ? 0.3 : 0.1);
  443. style_popup->set_shadow_color(shadow_color);
  444. style_popup->set_shadow_size(4 * EDSCALE);
  445. Ref<StyleBoxLine> style_popup_separator(memnew(StyleBoxLine));
  446. style_popup_separator->set_color(separator_color);
  447. style_popup_separator->set_grow_begin(popup_margin_size - MAX(EDSCALE, border_width));
  448. style_popup_separator->set_grow_end(popup_margin_size - MAX(EDSCALE, border_width));
  449. style_popup_separator->set_thickness(MAX(EDSCALE, border_width));
  450. Ref<StyleBoxLine> style_popup_labeled_separator_left(memnew(StyleBoxLine));
  451. style_popup_labeled_separator_left->set_grow_begin(popup_margin_size - MAX(EDSCALE, border_width));
  452. style_popup_labeled_separator_left->set_color(separator_color);
  453. style_popup_labeled_separator_left->set_thickness(MAX(EDSCALE, border_width));
  454. Ref<StyleBoxLine> style_popup_labeled_separator_right(memnew(StyleBoxLine));
  455. style_popup_labeled_separator_right->set_grow_end(popup_margin_size - MAX(EDSCALE, border_width));
  456. style_popup_labeled_separator_right->set_color(separator_color);
  457. style_popup_labeled_separator_right->set_thickness(MAX(EDSCALE, border_width));
  458. Ref<StyleBoxEmpty> style_empty = make_empty_stylebox(default_margin_size, default_margin_size, default_margin_size, default_margin_size);
  459. // Tabs
  460. const int tab_default_margin_side = 10 * EDSCALE + extra_spacing * EDSCALE;
  461. const int tab_default_margin_vertical = 5 * EDSCALE + extra_spacing * EDSCALE;
  462. Ref<StyleBoxFlat> style_tab_selected = style_widget->duplicate();
  463. style_tab_selected->set_border_width_all(border_width);
  464. style_tab_selected->set_border_width(SIDE_BOTTOM, 0);
  465. style_tab_selected->set_border_color(dark_color_3);
  466. style_tab_selected->set_expand_margin_size(SIDE_BOTTOM, border_width);
  467. style_tab_selected->set_default_margin(SIDE_LEFT, tab_default_margin_side);
  468. style_tab_selected->set_default_margin(SIDE_RIGHT, tab_default_margin_side);
  469. style_tab_selected->set_default_margin(SIDE_BOTTOM, tab_default_margin_vertical);
  470. style_tab_selected->set_default_margin(SIDE_TOP, tab_default_margin_vertical);
  471. style_tab_selected->set_bg_color(tab_color);
  472. Ref<StyleBoxFlat> style_tab_unselected = style_tab_selected->duplicate();
  473. style_tab_unselected->set_bg_color(dark_color_1);
  474. style_tab_unselected->set_border_color(dark_color_2);
  475. Ref<StyleBoxFlat> style_tab_disabled = style_tab_selected->duplicate();
  476. style_tab_disabled->set_bg_color(disabled_bg_color);
  477. style_tab_disabled->set_border_color(disabled_color);
  478. // Editor background
  479. theme->set_stylebox("Background", "EditorStyles", make_flat_stylebox(background_color, default_margin_size, default_margin_size, default_margin_size, default_margin_size));
  480. // Focus
  481. Ref<StyleBoxFlat> style_focus = style_default->duplicate();
  482. style_focus->set_draw_center(false);
  483. style_focus->set_border_color(contrast_color_2);
  484. theme->set_stylebox("Focus", "EditorStyles", style_focus);
  485. // Menu
  486. Ref<StyleBoxFlat> style_menu = style_widget->duplicate();
  487. style_menu->set_draw_center(false);
  488. style_menu->set_border_width_all(0);
  489. theme->set_stylebox("panel", "PanelContainer", style_menu);
  490. theme->set_stylebox("MenuPanel", "EditorStyles", style_menu);
  491. // Script Editor
  492. theme->set_stylebox("ScriptEditorPanel", "EditorStyles", make_empty_stylebox(default_margin_size, 0, default_margin_size, default_margin_size));
  493. theme->set_stylebox("ScriptEditor", "EditorStyles", make_empty_stylebox(0, 0, 0, 0));
  494. // Play button group
  495. theme->set_stylebox("PlayButtonPanel", "EditorStyles", style_empty);
  496. //MenuButton
  497. Ref<StyleBoxFlat> style_menu_hover_border = style_widget->duplicate();
  498. style_menu_hover_border->set_draw_center(false);
  499. style_menu_hover_border->set_border_width_all(0);
  500. style_menu_hover_border->set_border_width(SIDE_BOTTOM, border_width);
  501. style_menu_hover_border->set_border_color(accent_color);
  502. Ref<StyleBoxFlat> style_menu_hover_bg = style_widget->duplicate();
  503. style_menu_hover_bg->set_border_width_all(0);
  504. style_menu_hover_bg->set_bg_color(dark_color_1);
  505. theme->set_stylebox("normal", "MenuButton", style_menu);
  506. theme->set_stylebox("hover", "MenuButton", style_menu);
  507. theme->set_stylebox("pressed", "MenuButton", style_menu);
  508. theme->set_stylebox("focus", "MenuButton", style_menu);
  509. theme->set_stylebox("disabled", "MenuButton", style_menu);
  510. theme->set_stylebox("normal", "PopupMenu", style_menu);
  511. theme->set_stylebox("hover", "PopupMenu", style_menu_hover_bg);
  512. theme->set_stylebox("pressed", "PopupMenu", style_menu);
  513. theme->set_stylebox("focus", "PopupMenu", style_menu);
  514. theme->set_stylebox("disabled", "PopupMenu", style_menu);
  515. theme->set_color("font_color", "MenuButton", font_color);
  516. theme->set_color("font_hover_color", "MenuButton", font_hover_color);
  517. theme->set_stylebox("MenuHover", "EditorStyles", style_menu_hover_border);
  518. // Buttons
  519. theme->set_stylebox("normal", "Button", style_widget);
  520. theme->set_stylebox("hover", "Button", style_widget_hover);
  521. theme->set_stylebox("pressed", "Button", style_widget_pressed);
  522. theme->set_stylebox("focus", "Button", style_widget_focus);
  523. theme->set_stylebox("disabled", "Button", style_widget_disabled);
  524. theme->set_color("font_color", "Button", font_color);
  525. theme->set_color("font_hover_color", "Button", font_hover_color);
  526. theme->set_color("font_pressed_color", "Button", accent_color);
  527. theme->set_color("font_disabled_color", "Button", font_disabled_color);
  528. theme->set_color("icon_hover_color", "Button", icon_hover_color);
  529. theme->set_color("icon_pressed_color", "Button", icon_pressed_color);
  530. // OptionButton
  531. theme->set_stylebox("focus", "OptionButton", style_widget_focus);
  532. theme->set_stylebox("normal", "OptionButton", style_widget);
  533. theme->set_stylebox("hover", "OptionButton", style_widget_hover);
  534. theme->set_stylebox("pressed", "OptionButton", style_widget_pressed);
  535. theme->set_stylebox("disabled", "OptionButton", style_widget_disabled);
  536. theme->set_stylebox("normal_mirrored", "OptionButton", style_widget);
  537. theme->set_stylebox("hover_mirrored", "OptionButton", style_widget_hover);
  538. theme->set_stylebox("pressed_mirrored", "OptionButton", style_widget_pressed);
  539. theme->set_stylebox("disabled_mirrored", "OptionButton", style_widget_disabled);
  540. theme->set_color("font_color", "OptionButton", font_color);
  541. theme->set_color("font_hover_color", "OptionButton", font_hover_color);
  542. theme->set_color("font_pressed_color", "OptionButton", accent_color);
  543. theme->set_color("font_disabled_color", "OptionButton", font_disabled_color);
  544. theme->set_color("icon_hover_color", "OptionButton", icon_hover_color);
  545. theme->set_icon("arrow", "OptionButton", theme->get_icon("GuiOptionArrow", "EditorIcons"));
  546. theme->set_constant("arrow_margin", "OptionButton", default_margin_size * EDSCALE);
  547. theme->set_constant("modulate_arrow", "OptionButton", true);
  548. theme->set_constant("hseparation", "OptionButton", 4 * EDSCALE);
  549. // CheckButton
  550. theme->set_stylebox("normal", "CheckButton", style_menu);
  551. theme->set_stylebox("pressed", "CheckButton", style_menu);
  552. theme->set_stylebox("disabled", "CheckButton", style_menu);
  553. theme->set_stylebox("hover", "CheckButton", style_menu);
  554. theme->set_icon("on", "CheckButton", theme->get_icon("GuiToggleOn", "EditorIcons"));
  555. theme->set_icon("on_disabled", "CheckButton", theme->get_icon("GuiToggleOnDisabled", "EditorIcons"));
  556. theme->set_icon("off", "CheckButton", theme->get_icon("GuiToggleOff", "EditorIcons"));
  557. theme->set_icon("off_disabled", "CheckButton", theme->get_icon("GuiToggleOffDisabled", "EditorIcons"));
  558. theme->set_icon("on_mirrored", "CheckButton", theme->get_icon("GuiToggleOnMirrored", "EditorIcons"));
  559. theme->set_icon("on_disabled_mirrored", "CheckButton", theme->get_icon("GuiToggleOnDisabledMirrored", "EditorIcons"));
  560. theme->set_icon("off_mirrored", "CheckButton", theme->get_icon("GuiToggleOffMirrored", "EditorIcons"));
  561. theme->set_icon("off_disabled_mirrored", "CheckButton", theme->get_icon("GuiToggleOffDisabledMirrored", "EditorIcons"));
  562. theme->set_color("font_color", "CheckButton", font_color);
  563. theme->set_color("font_hover_color", "CheckButton", font_hover_color);
  564. theme->set_color("font_pressed_color", "CheckButton", accent_color);
  565. theme->set_color("font_disabled_color", "CheckButton", font_disabled_color);
  566. theme->set_color("icon_hover_color", "CheckButton", icon_hover_color);
  567. theme->set_constant("hseparation", "CheckButton", 4 * EDSCALE);
  568. theme->set_constant("check_vadjust", "CheckButton", 0 * EDSCALE);
  569. // Checkbox
  570. Ref<StyleBoxFlat> sb_checkbox = style_menu->duplicate();
  571. sb_checkbox->set_default_margin(SIDE_LEFT, default_margin_size * EDSCALE);
  572. sb_checkbox->set_default_margin(SIDE_RIGHT, default_margin_size * EDSCALE);
  573. sb_checkbox->set_default_margin(SIDE_TOP, default_margin_size * EDSCALE);
  574. sb_checkbox->set_default_margin(SIDE_BOTTOM, default_margin_size * EDSCALE);
  575. theme->set_stylebox("normal", "CheckBox", sb_checkbox);
  576. theme->set_stylebox("pressed", "CheckBox", sb_checkbox);
  577. theme->set_stylebox("disabled", "CheckBox", sb_checkbox);
  578. theme->set_stylebox("hover", "CheckBox", sb_checkbox);
  579. theme->set_icon("checked", "CheckBox", theme->get_icon("GuiChecked", "EditorIcons"));
  580. theme->set_icon("unchecked", "CheckBox", theme->get_icon("GuiUnchecked", "EditorIcons"));
  581. theme->set_icon("radio_checked", "CheckBox", theme->get_icon("GuiRadioChecked", "EditorIcons"));
  582. theme->set_icon("radio_unchecked", "CheckBox", theme->get_icon("GuiRadioUnchecked", "EditorIcons"));
  583. theme->set_color("font_color", "CheckBox", font_color);
  584. theme->set_color("font_hover_color", "CheckBox", font_hover_color);
  585. theme->set_color("font_pressed_color", "CheckBox", accent_color);
  586. theme->set_color("font_disabled_color", "CheckBox", font_disabled_color);
  587. theme->set_color("icon_hover_color", "CheckBox", icon_hover_color);
  588. theme->set_constant("hseparation", "CheckBox", 4 * EDSCALE);
  589. theme->set_constant("check_vadjust", "CheckBox", 0 * EDSCALE);
  590. // PopupDialog
  591. theme->set_stylebox("panel", "PopupDialog", style_popup);
  592. // PopupMenu
  593. const int popup_menu_margin_size = default_margin_size * 1.5 * EDSCALE;
  594. Ref<StyleBoxFlat> style_popup_menu = style_popup->duplicate();
  595. // Use 1 pixel for the sides, since if 0 is used, the highlight of hovered items is drawn
  596. // on top of the popup border. This causes a 'gap' in the panel border when an item is highlighted,
  597. // and it looks weird. 1px solves this.
  598. style_popup_menu->set_default_margin(SIDE_LEFT, 1 * EDSCALE);
  599. style_popup_menu->set_default_margin(SIDE_TOP, popup_menu_margin_size);
  600. style_popup_menu->set_default_margin(SIDE_RIGHT, 1 * EDSCALE);
  601. style_popup_menu->set_default_margin(SIDE_BOTTOM, popup_menu_margin_size);
  602. theme->set_stylebox("panel", "PopupMenu", style_popup_menu);
  603. theme->set_stylebox("separator", "PopupMenu", style_popup_separator);
  604. theme->set_stylebox("labeled_separator_left", "PopupMenu", style_popup_labeled_separator_left);
  605. theme->set_stylebox("labeled_separator_right", "PopupMenu", style_popup_labeled_separator_right);
  606. theme->set_color("font_color", "PopupMenu", font_color);
  607. theme->set_color("font_hover_color", "PopupMenu", font_hover_color);
  608. theme->set_color("font_accelerator_color", "PopupMenu", font_disabled_color);
  609. theme->set_color("font_disabled_color", "PopupMenu", font_disabled_color);
  610. theme->set_color("font_separator_color", "PopupMenu", font_disabled_color);
  611. theme->set_icon("checked", "PopupMenu", theme->get_icon("GuiChecked", "EditorIcons"));
  612. theme->set_icon("unchecked", "PopupMenu", theme->get_icon("GuiUnchecked", "EditorIcons"));
  613. theme->set_icon("radio_checked", "PopupMenu", theme->get_icon("GuiRadioChecked", "EditorIcons"));
  614. theme->set_icon("radio_unchecked", "PopupMenu", theme->get_icon("GuiRadioUnchecked", "EditorIcons"));
  615. theme->set_icon("submenu", "PopupMenu", theme->get_icon("ArrowRight", "EditorIcons"));
  616. theme->set_icon("submenu_mirrored", "PopupMenu", theme->get_icon("ArrowLeft", "EditorIcons"));
  617. theme->set_icon("visibility_hidden", "PopupMenu", theme->get_icon("GuiVisibilityHidden", "EditorIcons"));
  618. theme->set_icon("visibility_visible", "PopupMenu", theme->get_icon("GuiVisibilityVisible", "EditorIcons"));
  619. theme->set_icon("visibility_xray", "PopupMenu", theme->get_icon("GuiVisibilityXray", "EditorIcons"));
  620. theme->set_constant("vseparation", "PopupMenu", (extra_spacing + default_margin_size + 1) * EDSCALE);
  621. theme->set_constant("item_start_padding", "PopupMenu", popup_menu_margin_size * EDSCALE);
  622. theme->set_constant("item_end_padding", "PopupMenu", popup_menu_margin_size * EDSCALE);
  623. for (int i = 0; i < 16; i++) {
  624. Color si_base_color = accent_color;
  625. float hue_rotate = (i * 2 % 16) / 16.0;
  626. 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());
  627. si_base_color = accent_color.lerp(si_base_color, float(EDITOR_GET("docks/property_editor/subresource_hue_tint")));
  628. Ref<StyleBoxFlat> sub_inspector_bg;
  629. sub_inspector_bg = make_flat_stylebox(dark_color_1.lerp(si_base_color, 0.08), 2, 0, 2, 2);
  630. sub_inspector_bg->set_border_width(SIDE_LEFT, 2);
  631. sub_inspector_bg->set_border_width(SIDE_RIGHT, 2);
  632. sub_inspector_bg->set_border_width(SIDE_BOTTOM, 2);
  633. sub_inspector_bg->set_border_width(SIDE_TOP, 2);
  634. sub_inspector_bg->set_default_margin(SIDE_LEFT, 3);
  635. sub_inspector_bg->set_default_margin(SIDE_RIGHT, 3);
  636. sub_inspector_bg->set_default_margin(SIDE_BOTTOM, 10);
  637. sub_inspector_bg->set_default_margin(SIDE_TOP, 5);
  638. sub_inspector_bg->set_border_color(si_base_color * Color(0.7, 0.7, 0.7, 0.8));
  639. sub_inspector_bg->set_draw_center(true);
  640. theme->set_stylebox("sub_inspector_bg" + itos(i), "Editor", sub_inspector_bg);
  641. Ref<StyleBoxFlat> bg_color;
  642. bg_color.instance();
  643. bg_color->set_bg_color(si_base_color * Color(0.7, 0.7, 0.7, 0.8));
  644. bg_color->set_border_width_all(0);
  645. Ref<StyleBoxFlat> bg_color_selected;
  646. bg_color_selected.instance();
  647. bg_color_selected->set_border_width_all(0);
  648. bg_color_selected->set_bg_color(si_base_color * Color(0.8, 0.8, 0.8, 0.8));
  649. theme->set_stylebox("sub_inspector_property_bg" + itos(i), "Editor", bg_color);
  650. theme->set_stylebox("sub_inspector_property_bg_selected" + itos(i), "Editor", bg_color_selected);
  651. }
  652. theme->set_color("sub_inspector_property_color", "Editor", dark_theme ? Color(1, 1, 1, 1) : Color(0, 0, 0, 1));
  653. theme->set_constant("sub_inspector_font_offset", "Editor", 4 * EDSCALE);
  654. Ref<StyleBoxFlat> style_property_bg = style_default->duplicate();
  655. style_property_bg->set_bg_color(highlight_color);
  656. style_property_bg->set_border_width_all(0);
  657. theme->set_constant("font_offset", "EditorProperty", 1 * EDSCALE);
  658. theme->set_stylebox("bg_selected", "EditorProperty", style_property_bg);
  659. theme->set_stylebox("bg", "EditorProperty", Ref<StyleBoxEmpty>(memnew(StyleBoxEmpty)));
  660. theme->set_constant("vseparation", "EditorProperty", (extra_spacing + default_margin_size) * EDSCALE);
  661. theme->set_color("error_color", "EditorProperty", error_color);
  662. theme->set_color("property_color", "EditorProperty", property_color);
  663. theme->set_constant("inspector_margin", "Editor", 8 * EDSCALE);
  664. // Tree & ItemList background
  665. Ref<StyleBoxFlat> style_tree_bg = style_default->duplicate();
  666. style_tree_bg->set_bg_color(dark_color_1);
  667. style_tree_bg->set_border_color(dark_color_3);
  668. theme->set_stylebox("bg", "Tree", style_tree_bg);
  669. const Color guide_color = Color(mono_color.r, mono_color.g, mono_color.b, 0.05);
  670. Color relationship_line_color = Color(mono_color.r, mono_color.g, mono_color.b, relationship_line_opacity);
  671. // Tree
  672. theme->set_icon("checked", "Tree", theme->get_icon("GuiChecked", "EditorIcons"));
  673. theme->set_icon("unchecked", "Tree", theme->get_icon("GuiUnchecked", "EditorIcons"));
  674. theme->set_icon("arrow", "Tree", theme->get_icon("GuiTreeArrowDown", "EditorIcons"));
  675. theme->set_icon("arrow_collapsed", "Tree", theme->get_icon("GuiTreeArrowRight", "EditorIcons"));
  676. theme->set_icon("arrow_collapsed_mirrored", "Tree", theme->get_icon("GuiTreeArrowLeft", "EditorIcons"));
  677. theme->set_icon("updown", "Tree", theme->get_icon("GuiTreeUpdown", "EditorIcons"));
  678. theme->set_icon("select_arrow", "Tree", theme->get_icon("GuiDropdown", "EditorIcons"));
  679. theme->set_stylebox("bg_focus", "Tree", style_focus);
  680. theme->set_stylebox("custom_button", "Tree", make_empty_stylebox());
  681. theme->set_stylebox("custom_button_pressed", "Tree", make_empty_stylebox());
  682. theme->set_stylebox("custom_button_hover", "Tree", style_widget);
  683. theme->set_color("custom_button_font_highlight", "Tree", font_hover_color);
  684. theme->set_color("font_color", "Tree", font_color);
  685. theme->set_color("font_selected_color", "Tree", mono_color);
  686. theme->set_color("title_button_color", "Tree", font_color);
  687. theme->set_color("guide_color", "Tree", guide_color);
  688. theme->set_color("relationship_line_color", "Tree", relationship_line_color);
  689. theme->set_color("drop_position_color", "Tree", accent_color);
  690. theme->set_constant("vseparation", "Tree", (extra_spacing + default_margin_size) * EDSCALE);
  691. theme->set_constant("hseparation", "Tree", (extra_spacing + default_margin_size) * EDSCALE);
  692. theme->set_constant("item_margin", "Tree", 3 * default_margin_size * EDSCALE);
  693. theme->set_constant("button_margin", "Tree", default_margin_size * EDSCALE);
  694. theme->set_constant("draw_relationship_lines", "Tree", relationship_line_opacity >= 0.01);
  695. theme->set_constant("draw_guides", "Tree", relationship_line_opacity < 0.01);
  696. theme->set_constant("scroll_border", "Tree", 40 * EDSCALE);
  697. theme->set_constant("scroll_speed", "Tree", 12);
  698. Ref<StyleBoxFlat> style_tree_btn = style_default->duplicate();
  699. style_tree_btn->set_bg_color(contrast_color_1);
  700. style_tree_btn->set_border_width_all(0);
  701. theme->set_stylebox("button_pressed", "Tree", style_tree_btn);
  702. Ref<StyleBoxFlat> style_tree_hover = style_default->duplicate();
  703. style_tree_hover->set_bg_color(highlight_color * Color(1, 1, 1, 0.4));
  704. style_tree_hover->set_border_width_all(0);
  705. theme->set_stylebox("hover", "Tree", style_tree_hover);
  706. Ref<StyleBoxFlat> style_tree_focus = style_default->duplicate();
  707. style_tree_focus->set_bg_color(highlight_color);
  708. style_tree_focus->set_border_width_all(0);
  709. theme->set_stylebox("selected_focus", "Tree", style_tree_focus);
  710. Ref<StyleBoxFlat> style_tree_selected = style_tree_focus->duplicate();
  711. theme->set_stylebox("selected", "Tree", style_tree_selected);
  712. Ref<StyleBoxFlat> style_tree_cursor = style_default->duplicate();
  713. style_tree_cursor->set_draw_center(false);
  714. style_tree_cursor->set_border_width_all(border_width);
  715. style_tree_cursor->set_border_color(contrast_color_1);
  716. Ref<StyleBoxFlat> style_tree_title = style_default->duplicate();
  717. style_tree_title->set_bg_color(dark_color_3);
  718. style_tree_title->set_border_width_all(0);
  719. theme->set_stylebox("cursor", "Tree", style_tree_cursor);
  720. theme->set_stylebox("cursor_unfocused", "Tree", style_tree_cursor);
  721. theme->set_stylebox("title_button_normal", "Tree", style_tree_title);
  722. theme->set_stylebox("title_button_hover", "Tree", style_tree_title);
  723. theme->set_stylebox("title_button_pressed", "Tree", style_tree_title);
  724. Color prop_category_color = dark_color_1.lerp(mono_color, 0.12);
  725. Color prop_section_color = dark_color_1.lerp(mono_color, 0.09);
  726. Color prop_subsection_color = dark_color_1.lerp(mono_color, 0.06);
  727. theme->set_color("prop_category", "Editor", prop_category_color);
  728. theme->set_color("prop_section", "Editor", prop_section_color);
  729. theme->set_color("prop_subsection", "Editor", prop_subsection_color);
  730. theme->set_color("drop_position_color", "Tree", accent_color);
  731. // ItemList
  732. Ref<StyleBoxFlat> style_itemlist_bg = style_default->duplicate();
  733. style_itemlist_bg->set_bg_color(dark_color_1);
  734. style_itemlist_bg->set_border_width_all(border_width);
  735. style_itemlist_bg->set_border_color(dark_color_3);
  736. Ref<StyleBoxFlat> style_itemlist_cursor = style_default->duplicate();
  737. style_itemlist_cursor->set_draw_center(false);
  738. style_itemlist_cursor->set_border_width_all(border_width);
  739. style_itemlist_cursor->set_border_color(highlight_color);
  740. theme->set_stylebox("cursor", "ItemList", style_itemlist_cursor);
  741. theme->set_stylebox("cursor_unfocused", "ItemList", style_itemlist_cursor);
  742. theme->set_stylebox("selected_focus", "ItemList", style_tree_focus);
  743. theme->set_stylebox("selected", "ItemList", style_tree_selected);
  744. theme->set_stylebox("bg_focus", "ItemList", style_focus);
  745. theme->set_stylebox("bg", "ItemList", style_itemlist_bg);
  746. theme->set_color("font_color", "ItemList", font_color);
  747. theme->set_color("font_selected_color", "ItemList", mono_color);
  748. theme->set_color("guide_color", "ItemList", guide_color);
  749. theme->set_constant("vseparation", "ItemList", 3 * EDSCALE);
  750. theme->set_constant("hseparation", "ItemList", 3 * EDSCALE);
  751. theme->set_constant("icon_margin", "ItemList", default_margin_size * EDSCALE);
  752. theme->set_constant("line_separation", "ItemList", 3 * EDSCALE);
  753. // Tabs & TabContainer
  754. theme->set_stylebox("tab_selected", "TabContainer", style_tab_selected);
  755. theme->set_stylebox("tab_unselected", "TabContainer", style_tab_unselected);
  756. theme->set_stylebox("tab_disabled", "TabContainer", style_tab_disabled);
  757. theme->set_stylebox("tab_selected", "Tabs", style_tab_selected);
  758. theme->set_stylebox("tab_unselected", "Tabs", style_tab_unselected);
  759. theme->set_stylebox("tab_disabled", "Tabs", style_tab_disabled);
  760. theme->set_color("font_selected_color", "TabContainer", font_color);
  761. theme->set_color("font_unselected_color", "TabContainer", font_disabled_color);
  762. theme->set_color("font_selected_color", "Tabs", font_color);
  763. theme->set_color("font_unselected_color", "Tabs", font_disabled_color);
  764. theme->set_icon("menu", "TabContainer", theme->get_icon("GuiTabMenu", "EditorIcons"));
  765. theme->set_icon("menu_highlight", "TabContainer", theme->get_icon("GuiTabMenuHl", "EditorIcons"));
  766. theme->set_stylebox("SceneTabFG", "EditorStyles", style_tab_selected);
  767. theme->set_stylebox("SceneTabBG", "EditorStyles", style_tab_unselected);
  768. theme->set_icon("close", "Tabs", theme->get_icon("GuiClose", "EditorIcons"));
  769. theme->set_stylebox("button_pressed", "Tabs", style_menu);
  770. theme->set_stylebox("button", "Tabs", style_menu);
  771. theme->set_icon("increment", "TabContainer", theme->get_icon("GuiScrollArrowRight", "EditorIcons"));
  772. theme->set_icon("decrement", "TabContainer", theme->get_icon("GuiScrollArrowLeft", "EditorIcons"));
  773. theme->set_icon("increment", "Tabs", theme->get_icon("GuiScrollArrowRight", "EditorIcons"));
  774. theme->set_icon("decrement", "Tabs", theme->get_icon("GuiScrollArrowLeft", "EditorIcons"));
  775. theme->set_icon("increment_highlight", "Tabs", theme->get_icon("GuiScrollArrowRightHl", "EditorIcons"));
  776. theme->set_icon("decrement_highlight", "Tabs", theme->get_icon("GuiScrollArrowLeftHl", "EditorIcons"));
  777. theme->set_icon("increment_highlight", "TabContainer", theme->get_icon("GuiScrollArrowRightHl", "EditorIcons"));
  778. theme->set_icon("decrement_highlight", "TabContainer", theme->get_icon("GuiScrollArrowLeftHl", "EditorIcons"));
  779. theme->set_constant("hseparation", "Tabs", 4 * EDSCALE);
  780. // Content of each tab
  781. Ref<StyleBoxFlat> style_content_panel = style_default->duplicate();
  782. style_content_panel->set_border_color(dark_color_3);
  783. style_content_panel->set_border_width_all(border_width);
  784. // compensate the border
  785. style_content_panel->set_default_margin(SIDE_TOP, margin_size_extra * EDSCALE);
  786. style_content_panel->set_default_margin(SIDE_RIGHT, margin_size_extra * EDSCALE);
  787. style_content_panel->set_default_margin(SIDE_BOTTOM, margin_size_extra * EDSCALE);
  788. style_content_panel->set_default_margin(SIDE_LEFT, margin_size_extra * EDSCALE);
  789. // this is the stylebox used in 3d and 2d viewports (no borders)
  790. Ref<StyleBoxFlat> style_content_panel_vp = style_content_panel->duplicate();
  791. style_content_panel_vp->set_default_margin(SIDE_LEFT, border_width * 2);
  792. style_content_panel_vp->set_default_margin(SIDE_TOP, default_margin_size * EDSCALE);
  793. style_content_panel_vp->set_default_margin(SIDE_RIGHT, border_width * 2);
  794. style_content_panel_vp->set_default_margin(SIDE_BOTTOM, border_width * 2);
  795. theme->set_stylebox("panel", "TabContainer", style_content_panel);
  796. theme->set_stylebox("Content", "EditorStyles", style_content_panel_vp);
  797. // Separators
  798. theme->set_stylebox("separator", "HSeparator", make_line_stylebox(separator_color, border_width));
  799. theme->set_stylebox("separator", "VSeparator", make_line_stylebox(separator_color, border_width, 0, 0, true));
  800. // Debugger
  801. Ref<StyleBoxFlat> style_panel_debugger = style_content_panel->duplicate();
  802. style_panel_debugger->set_border_width(SIDE_BOTTOM, 0);
  803. theme->set_stylebox("DebuggerPanel", "EditorStyles", style_panel_debugger);
  804. Ref<StyleBoxFlat> style_panel_invisible_top = style_content_panel->duplicate();
  805. int stylebox_offset = theme->get_font("tab_selected", "TabContainer")->get_height(theme->get_font_size("tab_selected", "TabContainer")) + theme->get_stylebox("tab_selected", "TabContainer")->get_minimum_size().height + theme->get_stylebox("panel", "TabContainer")->get_default_margin(SIDE_TOP);
  806. style_panel_invisible_top->set_expand_margin_size(SIDE_TOP, -stylebox_offset);
  807. style_panel_invisible_top->set_default_margin(SIDE_TOP, 0);
  808. theme->set_stylebox("BottomPanelDebuggerOverride", "EditorStyles", style_panel_invisible_top);
  809. // LineEdit
  810. theme->set_stylebox("normal", "LineEdit", style_widget);
  811. theme->set_stylebox("focus", "LineEdit", style_widget_focus);
  812. theme->set_stylebox("read_only", "LineEdit", style_widget_disabled);
  813. theme->set_icon("clear", "LineEdit", theme->get_icon("GuiClose", "EditorIcons"));
  814. theme->set_color("read_only", "LineEdit", font_disabled_color);
  815. theme->set_color("font_color", "LineEdit", font_color);
  816. theme->set_color("font_selected_color", "LineEdit", mono_color);
  817. theme->set_color("cursor_color", "LineEdit", font_color);
  818. theme->set_color("selection_color", "LineEdit", selection_color);
  819. theme->set_color("clear_button_color", "LineEdit", font_color);
  820. theme->set_color("clear_button_color_pressed", "LineEdit", accent_color);
  821. // TextEdit
  822. theme->set_stylebox("normal", "TextEdit", style_widget);
  823. theme->set_stylebox("focus", "TextEdit", style_widget_hover);
  824. theme->set_stylebox("read_only", "TextEdit", style_widget_disabled);
  825. theme->set_constant("side_margin", "TabContainer", 0);
  826. theme->set_icon("tab", "TextEdit", theme->get_icon("GuiTab", "EditorIcons"));
  827. theme->set_icon("space", "TextEdit", theme->get_icon("GuiSpace", "EditorIcons"));
  828. theme->set_color("font_color", "TextEdit", font_color);
  829. theme->set_color("caret_color", "TextEdit", font_color);
  830. theme->set_color("selection_color", "TextEdit", selection_color);
  831. // CodeEdit
  832. theme->set_stylebox("normal", "CodeEdit", style_widget);
  833. theme->set_stylebox("focus", "CodeEdit", style_widget_hover);
  834. theme->set_stylebox("read_only", "CodeEdit", style_widget_disabled);
  835. theme->set_constant("side_margin", "TabContainer", 0);
  836. theme->set_icon("tab", "CodeEdit", theme->get_icon("GuiTab", "EditorIcons"));
  837. theme->set_icon("space", "CodeEdit", theme->get_icon("GuiSpace", "EditorIcons"));
  838. theme->set_icon("folded", "CodeEdit", theme->get_icon("GuiTreeArrowRight", "EditorIcons"));
  839. theme->set_icon("can_fold", "CodeEdit", theme->get_icon("GuiTreeArrowDown", "EditorIcons"));
  840. theme->set_icon("executing_line", "CodeEdit", theme->get_icon("MainPlay", "EditorIcons"));
  841. theme->set_color("font_color", "CodeEdit", font_color);
  842. theme->set_color("caret_color", "CodeEdit", font_color);
  843. theme->set_color("selection_color", "CodeEdit", selection_color);
  844. // H/VSplitContainer
  845. theme->set_stylebox("bg", "VSplitContainer", make_stylebox(theme->get_icon("GuiVsplitBg", "EditorIcons"), 1, 1, 1, 1));
  846. theme->set_stylebox("bg", "HSplitContainer", make_stylebox(theme->get_icon("GuiHsplitBg", "EditorIcons"), 1, 1, 1, 1));
  847. theme->set_icon("grabber", "VSplitContainer", theme->get_icon("GuiVsplitter", "EditorIcons"));
  848. theme->set_icon("grabber", "HSplitContainer", theme->get_icon("GuiHsplitter", "EditorIcons"));
  849. theme->set_constant("separation", "HSplitContainer", default_margin_size * 2 * EDSCALE);
  850. theme->set_constant("separation", "VSplitContainer", default_margin_size * 2 * EDSCALE);
  851. // Containers
  852. theme->set_constant("separation", "BoxContainer", default_margin_size * EDSCALE);
  853. theme->set_constant("separation", "HBoxContainer", default_margin_size * EDSCALE);
  854. theme->set_constant("separation", "VBoxContainer", default_margin_size * EDSCALE);
  855. theme->set_constant("margin_left", "MarginContainer", 0);
  856. theme->set_constant("margin_top", "MarginContainer", 0);
  857. theme->set_constant("margin_right", "MarginContainer", 0);
  858. theme->set_constant("margin_bottom", "MarginContainer", 0);
  859. theme->set_constant("hseparation", "GridContainer", default_margin_size * EDSCALE);
  860. theme->set_constant("vseparation", "GridContainer", default_margin_size * EDSCALE);
  861. // WindowDialog
  862. Ref<StyleBoxFlat> style_window = style_popup->duplicate();
  863. style_window->set_border_color(tab_color);
  864. style_window->set_border_width(SIDE_TOP, 24 * EDSCALE);
  865. style_window->set_expand_margin_size(SIDE_TOP, 24 * EDSCALE);
  866. theme->set_stylebox("panel", "Window", style_default);
  867. theme->set_stylebox("panel_window", "Window", style_window);
  868. theme->set_color("title_color", "Window", font_color);
  869. theme->set_icon("close", "Window", theme->get_icon("GuiClose", "EditorIcons"));
  870. theme->set_icon("close_highlight", "Window", theme->get_icon("GuiClose", "EditorIcons"));
  871. theme->set_constant("close_h_ofs", "Window", 22 * EDSCALE);
  872. theme->set_constant("close_v_ofs", "Window", 20 * EDSCALE);
  873. theme->set_constant("title_height", "Window", 24 * EDSCALE);
  874. theme->set_constant("resize_margin", "Window", 4 * EDSCALE);
  875. theme->set_font("title_font", "Window", theme->get_font("title", "EditorFonts"));
  876. theme->set_font_size("title_font_size", "Window", theme->get_font_size("title_size", "EditorFonts"));
  877. // complex window, for now only Editor settings and Project settings
  878. Ref<StyleBoxFlat> style_complex_window = style_window->duplicate();
  879. style_complex_window->set_bg_color(dark_color_2);
  880. style_complex_window->set_border_color(highlight_tabs ? tab_color : dark_color_2);
  881. theme->set_stylebox("panel", "EditorSettingsDialog", style_complex_window);
  882. theme->set_stylebox("panel", "ProjectSettingsEditor", style_complex_window);
  883. theme->set_stylebox("panel", "EditorAbout", style_complex_window);
  884. // HScrollBar
  885. Ref<Texture2D> empty_icon = memnew(ImageTexture);
  886. theme->set_stylebox("scroll", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0));
  887. theme->set_stylebox("scroll_focus", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0));
  888. theme->set_stylebox("grabber", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabber", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2));
  889. theme->set_stylebox("grabber_highlight", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberHl", "EditorIcons"), 5, 5, 5, 5, 2, 2, 2, 2));
  890. theme->set_stylebox("grabber_pressed", "HScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberPressed", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2));
  891. theme->set_icon("increment", "HScrollBar", empty_icon);
  892. theme->set_icon("increment_highlight", "HScrollBar", empty_icon);
  893. theme->set_icon("decrement", "HScrollBar", empty_icon);
  894. theme->set_icon("decrement_highlight", "HScrollBar", empty_icon);
  895. // VScrollBar
  896. theme->set_stylebox("scroll", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0));
  897. theme->set_stylebox("scroll_focus", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollBg", "EditorIcons"), 5, 5, 5, 5, 0, 0, 0, 0));
  898. theme->set_stylebox("grabber", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabber", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2));
  899. theme->set_stylebox("grabber_highlight", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberHl", "EditorIcons"), 5, 5, 5, 5, 2, 2, 2, 2));
  900. theme->set_stylebox("grabber_pressed", "VScrollBar", make_stylebox(theme->get_icon("GuiScrollGrabberPressed", "EditorIcons"), 6, 6, 6, 6, 2, 2, 2, 2));
  901. theme->set_icon("increment", "VScrollBar", empty_icon);
  902. theme->set_icon("increment_highlight", "VScrollBar", empty_icon);
  903. theme->set_icon("decrement", "VScrollBar", empty_icon);
  904. theme->set_icon("decrement_highlight", "VScrollBar", empty_icon);
  905. // HSlider
  906. theme->set_icon("grabber_highlight", "HSlider", theme->get_icon("GuiSliderGrabberHl", "EditorIcons"));
  907. theme->set_icon("grabber", "HSlider", theme->get_icon("GuiSliderGrabber", "EditorIcons"));
  908. theme->set_stylebox("slider", "HSlider", make_flat_stylebox(dark_color_3, 0, default_margin_size / 2, 0, default_margin_size / 2));
  909. theme->set_stylebox("grabber_area", "HSlider", make_flat_stylebox(contrast_color_1, 0, default_margin_size / 2, 0, default_margin_size / 2));
  910. theme->set_stylebox("grabber_area_highlight", "HSlider", make_flat_stylebox(contrast_color_1, 0, default_margin_size / 2, 0, default_margin_size / 2));
  911. // VSlider
  912. theme->set_icon("grabber", "VSlider", theme->get_icon("GuiSliderGrabber", "EditorIcons"));
  913. theme->set_icon("grabber_highlight", "VSlider", theme->get_icon("GuiSliderGrabberHl", "EditorIcons"));
  914. theme->set_stylebox("slider", "VSlider", make_flat_stylebox(dark_color_3, default_margin_size / 2, 0, default_margin_size / 2, 0));
  915. theme->set_stylebox("grabber_area", "VSlider", make_flat_stylebox(contrast_color_1, default_margin_size / 2, 0, default_margin_size / 2, 0));
  916. theme->set_stylebox("grabber_area_highlight", "VSlider", make_flat_stylebox(contrast_color_1, default_margin_size / 2, 0, default_margin_size / 2, 0));
  917. //RichTextLabel
  918. theme->set_color("default_color", "RichTextLabel", font_color);
  919. theme->set_color("font_shadow_color", "RichTextLabel", Color(0, 0, 0, 0));
  920. theme->set_constant("shadow_offset_x", "RichTextLabel", 1 * EDSCALE);
  921. theme->set_constant("shadow_offset_y", "RichTextLabel", 1 * EDSCALE);
  922. theme->set_constant("shadow_as_outline", "RichTextLabel", 0 * EDSCALE);
  923. theme->set_stylebox("focus", "RichTextLabel", make_empty_stylebox());
  924. theme->set_stylebox("normal", "RichTextLabel", style_tree_bg);
  925. theme->set_color("headline_color", "EditorHelp", mono_color);
  926. // Panel
  927. theme->set_stylebox("panel", "Panel", make_flat_stylebox(dark_color_1, 6, 4, 6, 4));
  928. theme->set_stylebox("panel_fg", "Panel", style_default);
  929. // Label
  930. theme->set_stylebox("normal", "Label", style_empty);
  931. theme->set_color("font_color", "Label", font_color);
  932. theme->set_color("font_shadow_color", "Label", Color(0, 0, 0, 0));
  933. theme->set_constant("shadow_offset_x", "Label", 1 * EDSCALE);
  934. theme->set_constant("shadow_offset_y", "Label", 1 * EDSCALE);
  935. theme->set_constant("shadow_as_outline", "Label", 0 * EDSCALE);
  936. theme->set_constant("line_spacing", "Label", 3 * EDSCALE);
  937. // LinkButton
  938. theme->set_stylebox("focus", "LinkButton", style_empty);
  939. theme->set_color("font_color", "LinkButton", font_color);
  940. theme->set_color("font_hover_color", "LinkButton", font_hover_color);
  941. theme->set_color("font_pressed_color", "LinkButton", accent_color);
  942. theme->set_color("font_disabled_color", "LinkButton", font_disabled_color);
  943. // TooltipPanel
  944. Ref<StyleBoxFlat> style_tooltip = style_popup->duplicate();
  945. float v = MAX(border_size * EDSCALE, 1.0);
  946. style_tooltip->set_default_margin(SIDE_LEFT, v);
  947. style_tooltip->set_default_margin(SIDE_TOP, v);
  948. style_tooltip->set_default_margin(SIDE_RIGHT, v);
  949. style_tooltip->set_default_margin(SIDE_BOTTOM, v);
  950. style_tooltip->set_bg_color(Color(mono_color.r, mono_color.g, mono_color.b, 0.9));
  951. style_tooltip->set_border_width_all(border_width);
  952. style_tooltip->set_border_color(mono_color);
  953. theme->set_color("font_color", "TooltipLabel", font_color.inverted());
  954. theme->set_color("font_shadow_color", "TooltipLabel", mono_color.inverted() * Color(1, 1, 1, 0.1));
  955. theme->set_stylebox("panel", "TooltipPanel", style_tooltip);
  956. // PopupPanel
  957. theme->set_stylebox("panel", "PopupPanel", style_popup);
  958. // SpinBox
  959. theme->set_icon("updown", "SpinBox", theme->get_icon("GuiSpinboxUpdown", "EditorIcons"));
  960. // ProgressBar
  961. theme->set_stylebox("bg", "ProgressBar", make_stylebox(theme->get_icon("GuiProgressBar", "EditorIcons"), 4, 4, 4, 4, 0, 0, 0, 0));
  962. theme->set_stylebox("fg", "ProgressBar", make_stylebox(theme->get_icon("GuiProgressFill", "EditorIcons"), 6, 6, 6, 6, 2, 1, 2, 1));
  963. theme->set_color("font_color", "ProgressBar", font_color);
  964. // GraphEdit
  965. theme->set_stylebox("bg", "GraphEdit", style_tree_bg);
  966. if (dark_theme) {
  967. theme->set_color("grid_major", "GraphEdit", Color(1.0, 1.0, 1.0, 0.15));
  968. theme->set_color("grid_minor", "GraphEdit", Color(1.0, 1.0, 1.0, 0.07));
  969. } else {
  970. theme->set_color("grid_major", "GraphEdit", Color(0.0, 0.0, 0.0, 0.15));
  971. theme->set_color("grid_minor", "GraphEdit", Color(0.0, 0.0, 0.0, 0.07));
  972. }
  973. theme->set_color("selection_fill", "GraphEdit", theme->get_color("box_selection_fill_color", "Editor"));
  974. theme->set_color("selection_stroke", "GraphEdit", theme->get_color("box_selection_stroke_color", "Editor"));
  975. theme->set_color("activity", "GraphEdit", accent_color);
  976. theme->set_icon("minus", "GraphEdit", theme->get_icon("ZoomLess", "EditorIcons"));
  977. theme->set_icon("more", "GraphEdit", theme->get_icon("ZoomMore", "EditorIcons"));
  978. theme->set_icon("reset", "GraphEdit", theme->get_icon("ZoomReset", "EditorIcons"));
  979. theme->set_icon("snap", "GraphEdit", theme->get_icon("SnapGrid", "EditorIcons"));
  980. theme->set_icon("minimap", "GraphEdit", theme->get_icon("GridMinimap", "EditorIcons"));
  981. theme->set_constant("bezier_len_pos", "GraphEdit", 80 * EDSCALE);
  982. theme->set_constant("bezier_len_neg", "GraphEdit", 160 * EDSCALE);
  983. // GraphEditMinimap
  984. Ref<StyleBoxFlat> style_minimap_bg = make_flat_stylebox(dark_color_1, 0, 0, 0, 0);
  985. style_minimap_bg->set_border_color(dark_color_3);
  986. style_minimap_bg->set_border_width_all(1);
  987. theme->set_stylebox("bg", "GraphEditMinimap", style_minimap_bg);
  988. Ref<StyleBoxFlat> style_minimap_camera;
  989. Ref<StyleBoxFlat> style_minimap_node;
  990. if (dark_theme) {
  991. style_minimap_camera = make_flat_stylebox(Color(0.65, 0.65, 0.65, 0.2), 0, 0, 0, 0);
  992. style_minimap_camera->set_border_color(Color(0.65, 0.65, 0.65, 0.45));
  993. style_minimap_node = make_flat_stylebox(Color(1, 1, 1), 0, 0, 0, 0);
  994. } else {
  995. style_minimap_camera = make_flat_stylebox(Color(0.38, 0.38, 0.38, 0.2), 0, 0, 0, 0);
  996. style_minimap_camera->set_border_color(Color(0.38, 0.38, 0.38, 0.45));
  997. style_minimap_node = make_flat_stylebox(Color(0, 0, 0), 0, 0, 0, 0);
  998. }
  999. style_minimap_camera->set_border_width_all(1);
  1000. style_minimap_node->set_corner_radius_all(1);
  1001. theme->set_stylebox("camera", "GraphEditMinimap", style_minimap_camera);
  1002. theme->set_stylebox("node", "GraphEditMinimap", style_minimap_node);
  1003. Ref<Texture2D> minimap_resizer_icon = theme->get_icon("GuiResizer", "EditorIcons");
  1004. Color minimap_resizer_color;
  1005. if (dark_theme) {
  1006. minimap_resizer_color = Color(1, 1, 1, 0.65);
  1007. } else {
  1008. minimap_resizer_color = Color(0, 0, 0, 0.65);
  1009. }
  1010. theme->set_icon("resizer", "GraphEditMinimap", flip_icon(minimap_resizer_icon, true, true));
  1011. theme->set_color("resizer_color", "GraphEditMinimap", minimap_resizer_color);
  1012. // GraphNode
  1013. const float mv = dark_theme ? 0.0 : 1.0;
  1014. const float mv2 = 1.0 - mv;
  1015. const int gn_margin_side = 28;
  1016. Ref<StyleBoxFlat> graphsb = make_flat_stylebox(Color(mv, mv, mv, 0.7), gn_margin_side, 24, gn_margin_side, 5);
  1017. graphsb->set_border_width_all(border_width);
  1018. graphsb->set_border_color(Color(mv2, mv2, mv2, 0.9));
  1019. Ref<StyleBoxFlat> graphsbselected = make_flat_stylebox(Color(mv, mv, mv, 0.9), gn_margin_side, 24, gn_margin_side, 5);
  1020. graphsbselected->set_border_width_all(border_width);
  1021. graphsbselected->set_border_color(Color(accent_color.r, accent_color.g, accent_color.b, 0.9));
  1022. graphsbselected->set_shadow_size(8 * EDSCALE);
  1023. graphsbselected->set_shadow_color(shadow_color);
  1024. Ref<StyleBoxFlat> graphsbcomment = make_flat_stylebox(Color(mv, mv, mv, 0.3), gn_margin_side, 24, gn_margin_side, 5);
  1025. graphsbcomment->set_border_width_all(border_width);
  1026. graphsbcomment->set_border_color(Color(mv2, mv2, mv2, 0.9));
  1027. Ref<StyleBoxFlat> graphsbcommentselected = make_flat_stylebox(Color(mv, mv, mv, 0.4), gn_margin_side, 24, gn_margin_side, 5);
  1028. graphsbcommentselected->set_border_width_all(border_width);
  1029. graphsbcommentselected->set_border_color(Color(mv2, mv2, mv2, 0.9));
  1030. Ref<StyleBoxFlat> graphsbbreakpoint = graphsbselected->duplicate();
  1031. graphsbbreakpoint->set_draw_center(false);
  1032. graphsbbreakpoint->set_border_color(warning_color);
  1033. graphsbbreakpoint->set_shadow_color(warning_color * Color(1.0, 1.0, 1.0, 0.1));
  1034. Ref<StyleBoxFlat> graphsbposition = graphsbselected->duplicate();
  1035. graphsbposition->set_draw_center(false);
  1036. graphsbposition->set_border_color(error_color);
  1037. graphsbposition->set_shadow_color(error_color * Color(1.0, 1.0, 1.0, 0.2));
  1038. Ref<StyleBoxFlat> smgraphsb = make_flat_stylebox(Color(mv, mv, mv, 0.7), gn_margin_side, 24, gn_margin_side, 5);
  1039. smgraphsb->set_border_width_all(border_width);
  1040. smgraphsb->set_border_color(Color(mv2, mv2, mv2, 0.9));
  1041. Ref<StyleBoxFlat> smgraphsbselected = make_flat_stylebox(Color(mv, mv, mv, 0.9), gn_margin_side, 24, gn_margin_side, 5);
  1042. smgraphsbselected->set_border_width_all(border_width);
  1043. smgraphsbselected->set_border_color(Color(accent_color.r, accent_color.g, accent_color.b, 0.9));
  1044. smgraphsbselected->set_shadow_size(8 * EDSCALE);
  1045. smgraphsbselected->set_shadow_color(shadow_color);
  1046. if (use_gn_headers) {
  1047. graphsb->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1048. graphsbselected->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1049. graphsbcomment->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1050. graphsbcommentselected->set_border_width(SIDE_TOP, 24 * EDSCALE);
  1051. }
  1052. theme->set_stylebox("frame", "GraphNode", graphsb);
  1053. theme->set_stylebox("selectedframe", "GraphNode", graphsbselected);
  1054. theme->set_stylebox("comment", "GraphNode", graphsbcomment);
  1055. theme->set_stylebox("commentfocus", "GraphNode", graphsbcommentselected);
  1056. theme->set_stylebox("breakpoint", "GraphNode", graphsbbreakpoint);
  1057. theme->set_stylebox("position", "GraphNode", graphsbposition);
  1058. theme->set_stylebox("state_machine_frame", "GraphNode", smgraphsb);
  1059. theme->set_stylebox("state_machine_selectedframe", "GraphNode", smgraphsbselected);
  1060. Color default_node_color = Color(mv2, mv2, mv2);
  1061. theme->set_color("title_color", "GraphNode", default_node_color);
  1062. default_node_color.a = 0.7;
  1063. theme->set_color("close_color", "GraphNode", default_node_color);
  1064. theme->set_color("resizer_color", "GraphNode", default_node_color);
  1065. theme->set_constant("port_offset", "GraphNode", 14 * EDSCALE);
  1066. theme->set_constant("title_h_offset", "GraphNode", -16 * EDSCALE);
  1067. theme->set_constant("title_offset", "GraphNode", 20 * EDSCALE);
  1068. theme->set_constant("close_h_offset", "GraphNode", 20 * EDSCALE);
  1069. theme->set_constant("close_offset", "GraphNode", 20 * EDSCALE);
  1070. theme->set_constant("separation", "GraphNode", 1 * EDSCALE);
  1071. theme->set_icon("close", "GraphNode", theme->get_icon("GuiCloseCustomizable", "EditorIcons"));
  1072. theme->set_icon("resizer", "GraphNode", theme->get_icon("GuiResizer", "EditorIcons"));
  1073. theme->set_icon("port", "GraphNode", theme->get_icon("GuiGraphNodePort", "EditorIcons"));
  1074. // GridContainer
  1075. theme->set_constant("vseparation", "GridContainer", (extra_spacing + default_margin_size) * EDSCALE);
  1076. // FileDialog
  1077. theme->set_icon("folder", "FileDialog", theme->get_icon("Folder", "EditorIcons"));
  1078. theme->set_icon("parent_folder", "FileDialog", theme->get_icon("ArrowUp", "EditorIcons"));
  1079. theme->set_icon("reload", "FileDialog", theme->get_icon("Reload", "EditorIcons"));
  1080. theme->set_icon("toggle_hidden", "FileDialog", theme->get_icon("GuiVisibilityVisible", "EditorIcons"));
  1081. // Use a different color for folder icons to make them easier to distinguish from files.
  1082. // On a light theme, the icon will be dark, so we need to lighten it before blending it with the accent color.
  1083. 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));
  1084. theme->set_color("files_disabled", "FileDialog", font_disabled_color);
  1085. // color picker
  1086. theme->set_constant("margin", "ColorPicker", popup_margin_size);
  1087. theme->set_constant("sv_width", "ColorPicker", 256 * EDSCALE);
  1088. theme->set_constant("sv_height", "ColorPicker", 256 * EDSCALE);
  1089. theme->set_constant("h_width", "ColorPicker", 30 * EDSCALE);
  1090. theme->set_constant("label_width", "ColorPicker", 10 * EDSCALE);
  1091. theme->set_icon("screen_picker", "ColorPicker", theme->get_icon("ColorPick", "EditorIcons"));
  1092. theme->set_icon("add_preset", "ColorPicker", theme->get_icon("Add", "EditorIcons"));
  1093. theme->set_icon("preset_bg", "ColorPicker", theme->get_icon("GuiMiniCheckerboard", "EditorIcons"));
  1094. theme->set_icon("overbright_indicator", "ColorPicker", theme->get_icon("OverbrightIndicator", "EditorIcons"));
  1095. theme->set_icon("bg", "ColorPickerButton", theme->get_icon("GuiMiniCheckerboard", "EditorIcons"));
  1096. // Information on 3D viewport
  1097. Ref<StyleBoxFlat> style_info_3d_viewport = style_default->duplicate();
  1098. style_info_3d_viewport->set_bg_color(style_info_3d_viewport->get_bg_color() * Color(1, 1, 1, 0.5));
  1099. style_info_3d_viewport->set_border_width_all(0);
  1100. theme->set_stylebox("Information3dViewport", "EditorStyles", style_info_3d_viewport);
  1101. // adaptive script theme constants
  1102. // for comments and elements with lower relevance
  1103. const Color dim_color = Color(font_color.r, font_color.g, font_color.b, 0.5);
  1104. const float mono_value = mono_color.r;
  1105. const Color alpha1 = Color(mono_value, mono_value, mono_value, 0.07);
  1106. const Color alpha2 = Color(mono_value, mono_value, mono_value, 0.14);
  1107. const Color alpha3 = Color(mono_value, mono_value, mono_value, 0.7);
  1108. // editor main color
  1109. const Color main_color = dark_theme ? Color(0.34, 0.7, 1.0) : Color(0.02, 0.5, 1.0);
  1110. const Color symbol_color = Color(0.34, 0.57, 1.0).lerp(mono_color, dark_theme ? 0.5 : 0.3);
  1111. const Color keyword_color = Color(1.0, 0.44, 0.52);
  1112. const Color basetype_color = dark_theme ? Color(0.26, 1.0, 0.76) : Color(0.0, 0.76, 0.38);
  1113. const Color type_color = basetype_color.lerp(mono_color, dark_theme ? 0.4 : 0.3);
  1114. const Color usertype_color = basetype_color.lerp(mono_color, dark_theme ? 0.7 : 0.5);
  1115. const Color comment_color = dim_color;
  1116. const Color string_color = (dark_theme ? Color(1.0, 0.85, 0.26) : Color(1.0, 0.82, 0.09)).lerp(mono_color, dark_theme ? 0.5 : 0.3);
  1117. const Color te_background_color = dark_theme ? background_color : base_color;
  1118. const Color completion_background_color = dark_theme ? base_color : background_color;
  1119. const Color completion_selected_color = alpha1;
  1120. const Color completion_existing_color = alpha2;
  1121. const Color completion_scroll_color = alpha1;
  1122. const Color completion_font_color = font_color;
  1123. const Color text_color = font_color;
  1124. const Color line_number_color = dim_color;
  1125. const Color safe_line_number_color = dim_color * Color(1, 1.2, 1, 1.5);
  1126. const Color caret_color = mono_color;
  1127. const Color caret_background_color = mono_color.inverted();
  1128. const Color text_selected_color = dark_color_3;
  1129. const Color brace_mismatch_color = error_color;
  1130. const Color current_line_color = alpha1;
  1131. const Color line_length_guideline_color = dark_theme ? base_color : background_color;
  1132. const Color word_highlighted_color = alpha1;
  1133. const Color number_color = basetype_color.lerp(mono_color, dark_theme ? 0.5 : 0.3);
  1134. const Color function_color = main_color;
  1135. const Color member_variable_color = main_color.lerp(mono_color, 0.6);
  1136. const Color mark_color = Color(error_color.r, error_color.g, error_color.b, 0.3);
  1137. const Color bookmark_color = Color(0.08, 0.49, 0.98);
  1138. const Color breakpoint_color = error_color;
  1139. const Color executing_line_color = Color(0.98, 0.89, 0.27);
  1140. const Color code_folding_color = alpha3;
  1141. const Color search_result_color = alpha1;
  1142. const Color search_result_border_color = Color(0.41, 0.61, 0.91, 0.38);
  1143. EditorSettings *setting = EditorSettings::get_singleton();
  1144. String text_editor_color_theme = setting->get("text_editor/theme/color_theme");
  1145. if (text_editor_color_theme == "Adaptive") {
  1146. setting->set_initial_value("text_editor/highlighting/symbol_color", symbol_color, true);
  1147. setting->set_initial_value("text_editor/highlighting/keyword_color", keyword_color, true);
  1148. setting->set_initial_value("text_editor/highlighting/base_type_color", basetype_color, true);
  1149. setting->set_initial_value("text_editor/highlighting/engine_type_color", type_color, true);
  1150. setting->set_initial_value("text_editor/highlighting/user_type_color", usertype_color, true);
  1151. setting->set_initial_value("text_editor/highlighting/comment_color", comment_color, true);
  1152. setting->set_initial_value("text_editor/highlighting/string_color", string_color, true);
  1153. setting->set_initial_value("text_editor/highlighting/background_color", te_background_color, true);
  1154. setting->set_initial_value("text_editor/highlighting/completion_background_color", completion_background_color, true);
  1155. setting->set_initial_value("text_editor/highlighting/completion_selected_color", completion_selected_color, true);
  1156. setting->set_initial_value("text_editor/highlighting/completion_existing_color", completion_existing_color, true);
  1157. setting->set_initial_value("text_editor/highlighting/completion_scroll_color", completion_scroll_color, true);
  1158. setting->set_initial_value("text_editor/highlighting/completion_font_color", completion_font_color, true);
  1159. setting->set_initial_value("text_editor/highlighting/text_color", text_color, true);
  1160. setting->set_initial_value("text_editor/highlighting/line_number_color", line_number_color, true);
  1161. setting->set_initial_value("text_editor/highlighting/safe_line_number_color", safe_line_number_color, true);
  1162. setting->set_initial_value("text_editor/highlighting/caret_color", caret_color, true);
  1163. setting->set_initial_value("text_editor/highlighting/caret_background_color", caret_background_color, true);
  1164. setting->set_initial_value("text_editor/highlighting/text_selected_color", text_selected_color, true);
  1165. setting->set_initial_value("text_editor/highlighting/selection_color", selection_color, true);
  1166. setting->set_initial_value("text_editor/highlighting/brace_mismatch_color", brace_mismatch_color, true);
  1167. setting->set_initial_value("text_editor/highlighting/current_line_color", current_line_color, true);
  1168. setting->set_initial_value("text_editor/highlighting/line_length_guideline_color", line_length_guideline_color, true);
  1169. setting->set_initial_value("text_editor/highlighting/word_highlighted_color", word_highlighted_color, true);
  1170. setting->set_initial_value("text_editor/highlighting/number_color", number_color, true);
  1171. setting->set_initial_value("text_editor/highlighting/function_color", function_color, true);
  1172. setting->set_initial_value("text_editor/highlighting/member_variable_color", member_variable_color, true);
  1173. setting->set_initial_value("text_editor/highlighting/mark_color", mark_color, true);
  1174. setting->set_initial_value("text_editor/highlighting/bookmark_color", bookmark_color, true);
  1175. setting->set_initial_value("text_editor/highlighting/breakpoint_color", breakpoint_color, true);
  1176. setting->set_initial_value("text_editor/highlighting/executing_line_color", executing_line_color, true);
  1177. setting->set_initial_value("text_editor/highlighting/code_folding_color", code_folding_color, true);
  1178. setting->set_initial_value("text_editor/highlighting/search_result_color", search_result_color, true);
  1179. setting->set_initial_value("text_editor/highlighting/search_result_border_color", search_result_border_color, true);
  1180. } else if (text_editor_color_theme == "Default") {
  1181. setting->load_text_editor_theme();
  1182. }
  1183. return theme;
  1184. }
  1185. Ref<Theme> create_custom_theme(const Ref<Theme> p_theme) {
  1186. Ref<Theme> theme;
  1187. const String custom_theme = EditorSettings::get_singleton()->get("interface/theme/custom_theme");
  1188. if (custom_theme != "") {
  1189. theme = ResourceLoader::load(custom_theme);
  1190. }
  1191. if (!theme.is_valid()) {
  1192. theme = create_editor_theme(p_theme);
  1193. }
  1194. return theme;
  1195. }