You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-12 22:57:38 +02:00
Desktop: Add solarized themes to desktop client (#1733)
This commit is contained in:
committed by
Laurent Cozic
parent
45ad201132
commit
3d498e7a75
@ -103,6 +103,8 @@ class Setting extends BaseModel {
|
||||
let output = {};
|
||||
output[Setting.THEME_LIGHT] = _('Light');
|
||||
output[Setting.THEME_DARK] = _('Dark');
|
||||
output[Setting.THEME_SOLARIZED_LIGHT] = _('Solarized Light');
|
||||
output[Setting.THEME_SOLARIZED_DARK] = _('Solarized Dark');
|
||||
return output;
|
||||
}},
|
||||
'uncompletedTodosOnTop': { value: true, type: Setting.TYPE_BOOL, section: 'note', public: true, appTypes: ['cli'], label: () => _('Uncompleted to-dos on top') },
|
||||
@ -626,6 +628,8 @@ Setting.TYPE_OBJECT = 5;
|
||||
|
||||
Setting.THEME_LIGHT = 1;
|
||||
Setting.THEME_DARK = 2;
|
||||
Setting.THEME_SOLARIZED_LIGHT = 3;
|
||||
Setting.THEME_SOLARIZED_DARK = 4;
|
||||
|
||||
Setting.DATE_FORMAT_1 = 'DD/MM/YYYY'
|
||||
Setting.DATE_FORMAT_2 = 'DD/MM/YY';
|
||||
|
Reference in New Issue
Block a user