mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-16 12:10:28 +03:00
Add option for monochrome mode (#2464)
Some checks failed
Deploy to Netlify (dev) / Deploy to Netlify (push) Has been cancelled
Some checks failed
Deploy to Netlify (dev) / Deploy to Netlify (push) Has been cancelled
This commit is contained in:
parent
40d0576b15
commit
c1274e851a
3 changed files with 20 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ export interface Settings {
|
|||
useSystemTheme: boolean;
|
||||
lightThemeId?: string;
|
||||
darkThemeId?: string;
|
||||
monochromeMode?: boolean;
|
||||
isMarkdown: boolean;
|
||||
editorToolbar: boolean;
|
||||
twitterEmoji: boolean;
|
||||
|
|
@ -47,6 +48,7 @@ const defaultSettings: Settings = {
|
|||
useSystemTheme: true,
|
||||
lightThemeId: undefined,
|
||||
darkThemeId: undefined,
|
||||
monochromeMode: false,
|
||||
isMarkdown: true,
|
||||
editorToolbar: false,
|
||||
twitterEmoji: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue