2017-06-17 16:52:27 +02:00
|
|
|
export interface IDefaults {
|
2017-06-23 13:55:52 +02:00
|
|
|
accents: IAccents;
|
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-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-06-17 16:52:27 +02:00
|
|
|
"_file_folder-build": {
|
|
|
|
iconPath: string;
|
|
|
|
}
|
|
|
|
_file_folder: {
|
|
|
|
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;
|
|
|
|
Default: string;
|
|
|
|
Light: string;
|
|
|
|
Palenight: 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
|
|
|
}
|