Add basic themes tab

This commit is contained in:
Vendicated 2022-12-01 03:01:44 +01:00
parent fc09460d82
commit f94cbfb2f4
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
5 changed files with 156 additions and 1 deletions

View file

@ -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: {}
};