[DE] fix skeleton theme colors

This commit is contained in:
Maxim Kadushkin 2021-06-28 17:26:13 +03:00
parent 2839960906
commit f63dab0827
2 changed files with 3 additions and 2 deletions

View file

@ -255,7 +255,8 @@ define([
},
currentThemeId: function () {
return get_ui_theme_name(Common.localStorage.getItem('ui-theme')) || id_default_light_theme;
var t = Common.localStorage.getItem('ui-theme') || Common.localStorage.getItem('ui-theme-id');
return get_ui_theme_name(t) || id_default_light_theme;
},
defaultThemeId: function (type) {

View file

@ -14,7 +14,7 @@
--toolbar-header-document: #2a2a2a;
--background-toolbar: #404040;
--border-toolbar: #2a2a2a;
--highlight-button-hover: #e0e0e0;
--highlight-button-hover: #555;
--highlight-header-button-hover: rgba(255,255,255,.05);
--canvas-background: #666666;
/*--canvas-content-background: #fff;*/