[DE] fix skeleton theme colors
This commit is contained in:
parent
2839960906
commit
f63dab0827
|
@ -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) {
|
||||
|
|
|
@ -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;*/
|
||||
|
|
Loading…
Reference in a new issue