fix(Lighter): Fix folders icon association

This commit is contained in:
Mattia Astorino 2018-05-05 11:55:58 +02:00
parent 780722c21a
commit b2c8be8f26
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2
3 changed files with 17 additions and 5 deletions

View file

@ -54,6 +54,14 @@ let accentsProperties: IGenericObject<IAccentCustomProperty> = {
"notificationLink.foreground": {
alpha: 100,
value: undefined
},
"editor.findWidgetResizeBorder": {
alpha: 100,
value: undefined
},
"editorWidget.border": {
alpha: 100,
value: undefined
}
}

View file

@ -24,16 +24,18 @@ function replaceIconPathWithAccent(iconPath: string, accentName: string): string
return iconPath.replace('.svg', `.accent.${ accentName }.svg`);
}
function getVariantFromColor(color: string): string {
switch (color) {
case undefined || 'Material Theme':
const getVariantFromColor = (color: string): string => {
switch (true) {
case color === undefined || color === 'Material Theme':
return 'Default';
case 'Material Theme High Contrast':
case color === 'Material Theme High Contrast':
return 'Default High Contrast';
case color.includes('Material Theme Lighter'):
return 'Light';
default:
return color.replace(/Material Theme /gi, '');
}
}
};
export const THEME_ICONS = () => {
let deferred: any = {};

View file

@ -785,6 +785,8 @@
"editorError.foreground": "{{variant.scheme.base.red}}70",
"editorWarning.foreground": "{{variant.scheme.base.green}}70",
"editorWidget.background": "{{variant.scheme.backgroundAlt}}",
"editor.findWidgetResizeBorder": "{{commons.accents.Teal}}",
"editorWidget.border": "{{variant.scheme.base.Teal}}",
"editorMarkerNavigation.background": "{{variant.scheme.foreground}}05",
"widget.shadow": "{{variant.scheme.shadow}}",
"panel.border": "{{variant.scheme.contrastBorder}}60",