mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-15 09:33:03 -04:00
Add basic themes tab
This commit is contained in:
parent
fc09460d82
commit
f94cbfb2f4
5 changed files with 156 additions and 1 deletions
|
@ -29,6 +29,7 @@ export interface Settings {
|
|||
notifyAboutUpdates: boolean;
|
||||
useQuickCss: boolean;
|
||||
enableReactDevtools: boolean;
|
||||
themeLinks: string[];
|
||||
plugins: {
|
||||
[plugin: string]: {
|
||||
enabled: boolean;
|
||||
|
@ -40,6 +41,7 @@ export interface Settings {
|
|||
const DefaultSettings: Settings = {
|
||||
notifyAboutUpdates: true,
|
||||
useQuickCss: true,
|
||||
themeLinks: [],
|
||||
enableReactDevtools: false,
|
||||
plugins: {}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue