chore: Updates build system and icon system to make it easier adding new icons

This commit is contained in:
octod 2017-10-26 22:50:08 +02:00
parent 92891908e9
commit 45f3414bd9
45 changed files with 72 additions and 43 deletions

View file

@ -6,5 +6,6 @@ export interface IThemeIconsVariants {
"_folder_dark_build": IThemeIconsItem;
"_folder_light": IThemeIconsItem;
"_folder_light_build": IThemeIconsItem;
"_folder_vscode": IThemeIconsItem;
}
}

View file

@ -36,13 +36,17 @@ export default gulp.task('build:icons.variants', callback => {
let variant = variants[variantName];
theme.iconDefinitions._folder_dark.iconPath = theme.iconDefinitions._folder_dark.iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions._folder_dark_build.iconPath = theme.iconDefinitions._folder_dark_build.iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions._folder_vscode.iconPath = theme.iconDefinitions._folder_vscode.iconPath.replace('.svg', `${ variantName }.svg`);
// theme.iconDefinitions._file_folder.iconPath = theme.iconDefinitions._file_folder.iconPath.replace('.svg', `${ variantName }.svg`);
// theme.iconDefinitions["_file_folder_build"].iconPath = theme.iconDefinitions["_file_folder_build"].iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions._folder_light.iconPath = theme.iconDefinitions._folder_light.iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions["_folder_light_build"].iconPath = theme.iconDefinitions["_folder_light_build"].iconPath.replace('.svg', `${ variantName }.svg`);
writeIconVariant(basetheme.iconDefinitions._folder_dark.iconPath, theme.iconDefinitions._folder_dark.iconPath, variant);
writeIconVariant(basetheme.iconDefinitions._folder_dark_build.iconPath, theme.iconDefinitions._folder_dark_build.iconPath, variant);
writeIconVariant(basetheme.iconDefinitions._folder_light.iconPath, theme.iconDefinitions._folder_light.iconPath, variant);
writeIconVariant(basetheme.iconDefinitions._folder_vscode.iconPath, theme.iconDefinitions._folder_vscode.iconPath, variant);
writeIconVariant(basetheme.iconDefinitions["_folder_light_build"].iconPath, theme.iconDefinitions["_folder_light_build"].iconPath, variant);
});
});

View file

@ -99,11 +99,11 @@ function setWorkbenchOptions(accentSelected: string | undefined, config: any): v
let themeID = getCurrentThemeID()
let themeIconsID = getCurrentThemeIconsID()
updateAccent(accentSelected);
updateAccent(accentSelected).then(() => {
if (isMaterialTheme(themeID) && isMaterialThemeIcons(themeIconsID)) {
THEME_ICONS().then(() => reloadWindow());
}
});
}, reason => {
vscode.window.showErrorMessage(reason);
});

View file

@ -42,8 +42,8 @@ export const THEME_ICONS = () => {
}
})
// theme.iconDefinitions._folder_open.iconPath = defaults.icons.theme.iconDefinitions._folder_open.iconPath.replace('.svg', `.accent.${ _accentName }.svg`);
// theme.iconDefinitions._folder_open_build.iconPath = defaults.icons.theme.iconDefinitions._folder_open_build.iconPath.replace('.svg', `.accent.${ _accentName }.svg`);
theme.iconDefinitions._folder_open.iconPath = defaults.icons.theme.iconDefinitions._folder_open.iconPath.replace('.svg', `.accent.${ _accentName }.svg`);
theme.iconDefinitions._folder_open_build.iconPath = defaults.icons.theme.iconDefinitions._folder_open_build.iconPath.replace('.svg', `.accent.${ _accentName }.svg`);
} else {
getAccentableIcons().forEach(iconname => {
@ -52,14 +52,13 @@ export const THEME_ICONS = () => {
distIcon.iconPath = outIcon.iconPath;
});
// theme.iconDefinitions._folder_open.iconPath = defaults.icons.theme.iconDefinitions._folder_open.iconPath;
// theme.iconDefinitions._folder_open_build.iconPath = defaults.icons.theme.iconDefinitions._folder_open_build.iconPath;
theme.iconDefinitions._folder_open.iconPath = defaults.icons.theme.iconDefinitions._folder_open.iconPath;
theme.iconDefinitions._folder_open_build.iconPath = defaults.icons.theme.iconDefinitions._folder_open_build.iconPath;
}
theme.iconDefinitions._folder_dark.iconPath = defaults.icons.theme.iconDefinitions._folder_dark.iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions._folder_dark_build.iconPath = defaults.icons.theme.iconDefinitions._folder_dark_build.iconPath.replace('.svg', `${ variantName }.svg`);
// theme.iconDefinitions._file_folder.iconPath = defaults.icons.theme.iconDefinitions._file_folder.iconPath.replace('.svg', `${ variantName }.svg`);
// theme.iconDefinitions["_file_folder-build"].iconPath = defaults.icons.theme.iconDefinitions["_file_folder-build"].iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions._folder_light.iconPath = defaults.icons.theme.iconDefinitions._folder_light.iconPath.replace('.svg', `${ variantName }.svg`);
theme.iconDefinitions["_folder_light_build"].iconPath = defaults.icons.theme.iconDefinitions["_folder_light_build"].iconPath.replace('.svg', `${ variantName }.svg`);

View file

@ -29,28 +29,34 @@
"theme": {
"iconDefinitions": {
"_folder_vscode": {
"iconPath": "../icons/_folder_vscode.svg"
"iconPath": "../icons/folder_vscode.svg"
},
"_folder_vscode_open": {
"iconPath": "../icons/_folder_vscode_open.svg"
"iconPath": "../icons/folder_vscode_open.svg"
},
"_folder_dark": {
"iconPath": "../icons/_folder_dark.svg"
"iconPath": "../icons/folder_dark.svg"
},
"_folder_dark_build": {
"iconPath": "../icons/_folder_dark_build.svg"
"iconPath": "../icons/folder_dark_build.svg"
},
"_folder_light": {
"iconPath": "../icons/folder_light.svg"
},
"_folder_light_build": {
"iconPath": "../icons/folder_light_build.svg"
},
"_file_folder": {
"iconPath": "../icons/_file_folder.svg"
"iconPath": "../icons/file_folder.svg"
},
"_file_folder_build": {
"iconPath": "../icons/_file_folder_build.svg"
"iconPath": "../icons/file_folder_build.svg"
},
"_folder_open": {
"iconPath": "../icons/_folder_open.svg"
"iconPath": "../icons/folder_open.svg"
},
"_folder_open_build": {
"iconPath": "../icons/_folder_open_build.svg"
"iconPath": "../icons/folder_open_build.svg"
}
}
}

View file

@ -6,6 +6,7 @@ export interface IThemeIcons {
"iconDefinitions":
{
"_folder_dark": IThemeIconsIconPath;
"_file_folder": IThemeIconsIconPath;
"_folder_dark_build": IThemeIconsIconPath;
"_folder_light": IThemeIconsIconPath;
"_folder_light_build": IThemeIconsIconPath;

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#424242;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#424242;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#4A616C;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#4A616C;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#90A4AE;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#90A4AE;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#4E5579;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><style>.st0{fill:#4E5579;enable-background:new}.st1{fill:#f78c6c}</style><path class="st0" d="M17.8 10.1l5.2 2.3v-5c0-1.2-1-2.2-2.2-2.2H12L9.8 3H3.2C2 3 1 4 1 5.2v13.6c0 1.2 1 2.2 2.2 2h8.3v-7.9l6.3-2.8z"/><path class="st1" d="M23 12.4l-5.2-2.3-6.2 2.8v8.3l6.2 2.8 6.2-2.8v-8.3l-1-.5zm-5.2-1.2l4.5 2-4.5 2-4.5-2 4.5-2zm-.6 11.4l-4.1-1.8-.6-.3v-6.6l4.8 2.1v6.6zm5.8-4v1.9l-4.8 2.1v-6.5L23 14v4.6z"/></svg>

After

Width:  |  Height:  |  Size: 477 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#4a616c}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="cls-1" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4a616c}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 492 B

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#424242}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#424242}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4A616C}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4A616C}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#90A4AE}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#90A4AE}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4E5579}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4E5579}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8 3L12 5.2h8.8A2.22 2.22 0 0 1 23 7.4v11.2a2.22 2.22 0 0 1-2.2 2.2H3.2a1.94 1.94 0 0 1-2.2-2V5.2A2.22 2.22 0 0 1 3.2 3z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

After

Width:  |  Height:  |  Size: 484 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#C6FF00}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#2979FF}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#388E3C}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#64FFDA}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#00BCD4}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#616161}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#5C6BC0}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#7CB342}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#FF7042}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#FF4081}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#AB47BC}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#E57373}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#84FFFF}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#80CBC4}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#F44336}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#FFA000}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4}.cls-2{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="cls-2" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#80cbc4}.st1{fill:#ffe0b2}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8 5.25H12L9.8 3H3.2A2.23 2.23 0 0 0 1 5.25v13.5A2.23 2.23 0 0 0 3.2 21h17.6a2.23 2.23 0 0 0 2.2-2.25V7.5a2.23 2.23 0 0 0-2.2-2.25zm0 13.5H3.2V7.5h17.6z"/><path class="st1" d="M20.87 9.38l-6.42 5.9-3.59-2.7-1.48.86 3.54 3.25-3.55 3.25 1.48.87 3.59-2.7L20.87 24 24 22.48V10.9zm0 3.88v6.86l-4.55-3.43z"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

After

Width:  |  Height:  |  Size: 522 B

View file

@ -70,7 +70,7 @@
"themes": [
{
"label": "Material Theme",
"path": "./themes/Material-Theme-Darker.json",
"path": "./themes/Material-Theme-Palenight-High-Contrast.json",
"uiTheme": "vs-dark"
}
],

View file

@ -6,6 +6,7 @@
".git": "_file_git",
".github": "_file_github",
".gulp": "_file_gulp",
".vscode": "_folder_vscode",
"bower_components": "_file_bower",
"build": "_folder_light_build",
"dist": "_folder_light_build"
@ -15,8 +16,9 @@
".git": "_file_git",
".github": "_file_github",
".gulp": "_file_gulp",
".vscode": "_folder_vscode_open",
"bower_components": "_file_bower",
"build": "_folder_light_build",
"dist": "_folder_light_build"
"build": "_folder_open_build",
"dist": "_folder_open_build"
}
},

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#4a616c;}.cls-2{fill:#ffe0b2;}</style></defs><title>folder_vscode</title><path class="cls-1" d="M9.8,3,12,5.2h8.8A2.22,2.22,0,0,1,23,7.4V18.6a2.22,2.22,0,0,1-2.2,2.2H3.2a1.94,1.94,0,0,1-2.2-2V5.2A2.22,2.22,0,0,1,3.2,3Z"/><path class="cls-2" d="M20.87,9.38l-6.42,5.9-3.59-2.7-1.48.86,3.54,3.25L9.37,19.94l1.48.87,3.59-2.7L20.87,24,24,22.48V10.9Zm0,3.88v6.86l-4.55-3.43Z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4a616c;}.st1{fill:#ffe0b2;}</style></defs><title>folder_vscode</title><path class="st0" d="M9.8,3,12,5.2h8.8A2.22,2.22,0,0,1,23,7.4V18.6a2.22,2.22,0,0,1-2.2,2.2H3.2a1.94,1.94,0,0,1-2.2-2V5.2A2.22,2.22,0,0,1,3.2,3Z"/><path class="st1" d="M20.87,9.38l-6.42,5.9-3.59-2.7-1.48.86,3.54,3.25L9.37,19.94l1.48.87,3.59-2.7L20.87,24,24,22.48V10.9Zm0,3.88v6.86l-4.55-3.43Z"/></svg>

Before

Width:  |  Height:  |  Size: 495 B

After

Width:  |  Height:  |  Size: 487 B

View file

@ -1 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#80cbc4;}.cls-2{fill:#ffe0b2;}</style></defs><title>folder_vscode_open</title><path class="cls-1" d="M20.8,5.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21H20.8A2.23,2.23,0,0,0,23,18.75V7.5A2.23,2.23,0,0,0,20.8,5.25Zm0,13.5H3.2V7.5H20.8Z"/><path class="cls-2" d="M20.87,9.38l-6.42,5.9-3.59-2.7-1.48.86,3.54,3.25L9.37,19.94l1.48.87,3.59-2.7L20.87,24,24,22.48V10.9Zm0,3.88v6.86l-4.55-3.43Z"/></svg>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#80cbc4;}.st1{fill:#ffe0b2;}</style></defs><title>folder_vscode_open</title><path class="st0" d="M20.8,5.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21H20.8A2.23,2.23,0,0,0,23,18.75V7.5A2.23,2.23,0,0,0,20.8,5.25Zm0,13.5H3.2V7.5H20.8Z"/><path class="st1" d="M20.87,9.38l-6.42,5.9-3.59-2.7-1.48.86,3.54,3.25L9.37,19.94l1.48.87,3.59-2.7L20.87,24,24,22.48V10.9Zm0,3.88v6.86l-4.55-3.43Z"/></svg>

Before

Width:  |  Height:  |  Size: 534 B

After

Width:  |  Height:  |  Size: 526 B

File diff suppressed because one or more lines are too long