2017-06-17 16:52:27 +02:00
|
|
|
export interface IDefaults {
|
2017-06-23 13:55:52 +02:00
|
|
|
accents: IAccents;
|
2017-10-24 00:11:48 +02:00
|
|
|
accentableIcons: string[];
|
2017-09-07 21:02:45 +02:00
|
|
|
changelog: IChangelog;
|
2017-06-17 16:52:27 +02:00
|
|
|
icons: IDefaultsThemeIcons;
|
|
|
|
themeVariants: IDefaultsThemeVariant;
|
2017-07-21 20:20:17 +02:00
|
|
|
themeVariantsColours: IDefaultsThemeVariantColours;
|
|
|
|
themeVariantsUITheme: IDefaultsThemeVariantUITheme;
|
2017-06-17 16:52:27 +02:00
|
|
|
}
|
|
|
|
|
2017-06-23 13:55:52 +02:00
|
|
|
export interface IAccents {
|
|
|
|
teal: string;
|
|
|
|
[index: string]: string;
|
|
|
|
}
|
|
|
|
|
2017-09-07 21:02:45 +02:00
|
|
|
export interface IChangelog {
|
|
|
|
lastversion: string;
|
|
|
|
}
|
|
|
|
|
2017-06-17 16:52:27 +02:00
|
|
|
export interface IDefaultsThemeIcons {
|
|
|
|
theme: {
|
|
|
|
iconDefinitions: {
|
|
|
|
_folder_open: {
|
|
|
|
iconPath: string;
|
|
|
|
}
|
|
|
|
_folder_open_build: {
|
|
|
|
iconPath: string;
|
|
|
|
}
|
|
|
|
_folder_dark: {
|
|
|
|
iconPath: string;
|
|
|
|
}
|
2017-06-23 20:39:06 +02:00
|
|
|
_folder_dark_build: {
|
|
|
|
iconPath: string;
|
|
|
|
}
|
2017-10-24 00:11:48 +02:00
|
|
|
"_folder_light_build": {
|
2017-06-17 16:52:27 +02:00
|
|
|
iconPath: string;
|
|
|
|
}
|
2017-10-24 00:11:48 +02:00
|
|
|
_folder_light: {
|
2017-06-17 16:52:27 +02:00
|
|
|
iconPath: string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IDefaultsThemeVariant {
|
2017-07-21 20:20:17 +02:00
|
|
|
[index: string]: string;
|
2017-06-17 16:52:27 +02:00
|
|
|
Darker: string;
|
2017-10-15 23:22:51 +02:00
|
|
|
DarkerHighContrast: string;
|
2017-06-17 16:52:27 +02:00
|
|
|
Default: string;
|
2017-10-15 23:22:51 +02:00
|
|
|
DefaultHighContrast: string;
|
2017-06-17 16:52:27 +02:00
|
|
|
Light: string;
|
2017-10-15 23:22:51 +02:00
|
|
|
LightHighContrast: string;
|
|
|
|
PalenightHighContrast: string;
|
2017-07-21 20:20:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IDefaultsThemeVariantColours extends IDefaultsThemeVariant {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IDefaultsThemeVariantUITheme extends IDefaultsThemeVariant {
|
|
|
|
|
2017-06-17 16:52:27 +02:00
|
|
|
}
|