[themes] debug themes

This commit is contained in:
Maxim Kadushkin 2021-04-24 19:42:14 +03:00
parent c9ef92f3f5
commit 386bf60f37
2 changed files with 2 additions and 2 deletions

View file

@ -206,7 +206,7 @@ define([
}) })
this.api = api; this.api = api;
var theme_name = Common.localStorage.getItem('ui-theme', id_default_light_theme); var theme_name = Common.localStorage.getItem('ui-theme') || id_default_light_theme;
if ( !$('body').hasClass(theme_name) ) { if ( !$('body').hasClass(theme_name) ) {
$('body').addClass(theme_name); $('body').addClass(theme_name);

View file

@ -54,7 +54,7 @@
// Canvas colors // Canvas colors
--canvas-background: #e2e2e2; --canvas-background: #e2e2e2;
--canvas-content-background: #fff; --canvas-content-background: #fff;
--canvas-page-border: #555; --canvas-page-border: #ccc;
--canvas-ruler-background: #555; --canvas-ruler-background: #555;
--canvas-ruler-margins-background: #444; --canvas-ruler-margins-background: #444;