Merge branch 'develop'
2
.gitignore
vendored
|
@ -9,3 +9,5 @@ node_modules/
|
|||
.DS_Store
|
||||
/themes
|
||||
/icons
|
||||
/src/icons/svgs/*
|
||||
.tmp-output-remote-icons
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
export * from './tasks/icons';
|
||||
export * from './tasks/icons-accents';
|
||||
export * from './tasks/icons-variants';
|
||||
export * from './tasks/icons-variants-json';
|
||||
export * from './tasks/themes';
|
||||
export * from './tasks/watcher';
|
||||
export * from './tasks/changelog-title';
|
||||
export * from './tasks/get-remote-icons';
|
||||
|
||||
// export default script
|
||||
export default ['build:themes'];
|
||||
|
|
33
.gulp/tasks/get-remote-icons.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
import * as path from 'path';
|
||||
import * as gulp from 'gulp';
|
||||
import * as execa from 'execa';
|
||||
import * as rimraf from 'rimraf';
|
||||
import {ncp} from 'ncp';
|
||||
|
||||
const pCopy = (src: string, dest: string) => new Promise((resolve, reject) =>
|
||||
ncp(src, dest, err => err ? reject(err) : resolve())
|
||||
);
|
||||
|
||||
const pRm = (dir: string) => new Promise((resolve, reject) =>
|
||||
rimraf(dir, (err: any) => err ? reject(err) : resolve())
|
||||
);
|
||||
|
||||
/**
|
||||
* Get remote Material Icons
|
||||
*/
|
||||
export default gulp.task('build:get-remote-icons', callback => {
|
||||
const src = 'ssh://equinsuocha@vs-ssh.visualstudio.com:22/vsc-material-theme-icons/_ssh/vsc-material-theme-icons';
|
||||
const tmpDest = './_tmp-output-remote-icons';
|
||||
const dest = './src/icons/svgs';
|
||||
|
||||
execa('git', [
|
||||
'clone',
|
||||
'--depth=1',
|
||||
src,
|
||||
tmpDest
|
||||
])
|
||||
.then(() => pCopy(path.join(tmpDest, dest), dest))
|
||||
.then(() => pRm(tmpDest))
|
||||
.then(() => callback())
|
||||
.catch((err: any) => callback(err.message));
|
||||
});
|
37
.gulp/tasks/icons-variants-json.ts
Normal file
|
@ -0,0 +1,37 @@
|
|||
import * as fs from 'fs';
|
||||
import * as gulp from 'gulp';
|
||||
|
||||
import {resolve} from 'path';
|
||||
import {IDefaultsThemeIconVariant} from './../../extensions/interfaces/idefaults';
|
||||
import {getDefaultValues, getVariantIcons} from './../../extensions/helpers/fs';
|
||||
import {PATHS} from '../../extensions/consts/paths';
|
||||
import {CHARSET} from '../../extensions/consts/files';
|
||||
|
||||
/**
|
||||
* For each ThemeIconVariant create a Material-Theme-Icons-{variant}.json
|
||||
* depends on default Material-Theme-Icons.json
|
||||
*/
|
||||
export default gulp.task('build:icons.variants-json', callback => {
|
||||
try {
|
||||
const variants: IDefaultsThemeIconVariant = getDefaultValues().themeIconVariants;
|
||||
const defaults = fs.readFileSync(resolve(`${PATHS.THEMES}/Material-Theme-Icons.json`), 'utf8');
|
||||
Object.keys(variants).forEach(variantName => {
|
||||
const jsonDefaults = JSON.parse(defaults);
|
||||
|
||||
getVariantIcons().forEach(iconname => {
|
||||
const newIconPath = jsonDefaults.iconDefinitions[iconname].iconPath.replace('.svg', `${variantName}.svg`);
|
||||
jsonDefaults.iconDefinitions[iconname].iconPath = newIconPath;
|
||||
|
||||
fs.writeFileSync(
|
||||
`${PATHS.THEMES}/Material-Theme-Icons-${variantName}.json`,
|
||||
JSON.stringify(jsonDefaults),
|
||||
{encoding: CHARSET}
|
||||
);
|
||||
});
|
||||
});
|
||||
} catch (error) {
|
||||
return callback(error);
|
||||
}
|
||||
|
||||
callback();
|
||||
});
|
13
README.md
|
@ -19,6 +19,7 @@ The most epic theme meets Visual Studio Code. You can help by reporting issues [
|
|||
- [Activate theme](#activate-theme)
|
||||
- [Fix File Icons](#fix-file-icons)
|
||||
- [Set the accent color](#set-the-accent-color)
|
||||
- [Disabling/enabling file icons auto-applying](#disabling-enabling-file-icons-auto-applying)
|
||||
- [Override theme colors](#override-theme-colors)
|
||||
- [Color Scheme override](#color-scheme-override)
|
||||
- [UI Overrides](#ui-overrides)
|
||||
|
@ -106,6 +107,18 @@ Launch *Quick Open*,
|
|||
|
||||
Type `material theme` and choose `Material Theme: Set accent color` and pick one color from the list.
|
||||
|
||||
## Disabling/enabling file icons auto-applying
|
||||
|
||||
By default material theme will apply the correct icons theme based on your active theme variant. To disable this behavior follow these steps:
|
||||
|
||||
Launch *Quick Open*,
|
||||
|
||||
- <img src="https://www.kernel.org/theme/images/logos/favicon.png" width=16 height=16/> <a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf">Linux</a> `Ctrl + Shift + P`
|
||||
- <img src="https://developer.apple.com/favicon.ico" width=16 height=16/> <a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf">macOS</a> `⌘ + Shift + P`
|
||||
- <img src="https://www.microsoft.com/favicon.ico" width=16 height=16/> <a href="https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf">Windows</a> `Ctrl + Shift + P`
|
||||
|
||||
Type `material theme` and choose `Material Theme: Enable or disable icons auto-applying` and choose to disable or enable this behavior.
|
||||
|
||||
## Override theme colors
|
||||
You can override the material theme ui and schemes colors by adding these theme-specific settings to your configuration. For advanced customisation please check the [relative section on the vs code documentation](https://code.visualstudio.com/docs/getstarted/themes#_customizing-a-color-theme)
|
||||
|
||||
|
|
|
@ -4,16 +4,8 @@ import {IAccentCustomProperty} from './../../interfaces/iaccent-custom-property'
|
|||
import {IGenericObject} from './../../interfaces/igeneric-object';
|
||||
import {
|
||||
updateAccent,
|
||||
isMaterialTheme,
|
||||
isMaterialThemeIcons
|
||||
} from './../../helpers/settings';
|
||||
import {
|
||||
getCurrentThemeID,
|
||||
getCurrentThemeIconsID,
|
||||
reloadWindow
|
||||
} from './../../helpers/vscode';
|
||||
import {getDefaultValues} from './../../helpers/fs';
|
||||
import {THEME_ICONS} from './../theme-icons/index';
|
||||
|
||||
const REGEXP_HEX: RegExp = /^#([0-9A-F]{6}|[0-9A-F]{8})$/i;
|
||||
|
||||
|
@ -62,11 +54,11 @@ const accentsProperties: IGenericObject <IAccentCustomProperty> = {
|
|||
alpha: 100,
|
||||
value: undefined
|
||||
},
|
||||
"editor.findWidgetResizeBorder": {
|
||||
'editor.findWidgetResizeBorder': {
|
||||
alpha: 100,
|
||||
value: undefined
|
||||
},
|
||||
"editorWidget.border": {
|
||||
'editorWidget.border': {
|
||||
alpha: 100,
|
||||
value: undefined
|
||||
}
|
||||
|
@ -101,47 +93,37 @@ const isValidColour = (colour: string | null | undefined): boolean =>
|
|||
/**
|
||||
* Sets workbench options
|
||||
*/
|
||||
const setWorkbenchOptions = (accentSelected: string | undefined, config: any): void => {
|
||||
vscode.workspace.getConfiguration().update('workbench.colorCustomizations', config, true).then(() => {
|
||||
const themeID = getCurrentThemeID();
|
||||
const themeIconsID = getCurrentThemeIconsID();
|
||||
|
||||
updateAccent(accentSelected).then(() => {
|
||||
if (isMaterialTheme(themeID) && isMaterialThemeIcons(themeIconsID)) {
|
||||
THEME_ICONS().then(() => reloadWindow());
|
||||
}
|
||||
});
|
||||
}, reason => {
|
||||
vscode.window.showErrorMessage(reason);
|
||||
});
|
||||
};
|
||||
const setWorkbenchOptions = (accentSelected: string | undefined, config: any): Thenable<string> =>
|
||||
vscode.workspace.getConfiguration().update('workbench.colorCustomizations', config, true)
|
||||
.then(() => updateAccent(accentSelected),
|
||||
reason => vscode.window.showErrorMessage(reason));
|
||||
|
||||
/**
|
||||
* VSCode command
|
||||
*/
|
||||
export const THEME_ACCENTS_SETTER = () => {
|
||||
export default async (): Promise<boolean> => {
|
||||
const themeConfigCommon = getDefaultValues();
|
||||
// shows the quick pick dropdown
|
||||
const options: string[] = Object.keys(themeConfigCommon.accents);
|
||||
const purgeColourKey: string = 'Remove accents';
|
||||
const options: string[] = Object.keys(themeConfigCommon.accents).concat(purgeColourKey);
|
||||
|
||||
options.push(purgeColourKey);
|
||||
// shows the quick pick dropdown and wait response
|
||||
const accentSelected = await vscode.window.showQuickPick(options);
|
||||
|
||||
vscode.window.showQuickPick(options).then(accentSelected => {
|
||||
if (accentSelected === null || accentSelected === undefined) {
|
||||
return;
|
||||
}
|
||||
if (accentSelected === null || accentSelected === undefined) {
|
||||
Promise.resolve(null);
|
||||
}
|
||||
|
||||
const config: any = vscode.workspace.getConfiguration().get('workbench.colorCustomizations');
|
||||
const config: any = vscode.workspace.getConfiguration().get('workbench.colorCustomizations');
|
||||
|
||||
switch (accentSelected) {
|
||||
case purgeColourKey:
|
||||
assignColorCustomizations(undefined, config);
|
||||
await setWorkbenchOptions(undefined, config);
|
||||
return Promise.resolve(true);
|
||||
default:
|
||||
assignColorCustomizations(themeConfigCommon.accents[accentSelected], config);
|
||||
await setWorkbenchOptions(accentSelected, config);
|
||||
return Promise.resolve(true);
|
||||
}
|
||||
|
||||
switch (accentSelected) {
|
||||
case purgeColourKey:
|
||||
assignColorCustomizations(undefined, config);
|
||||
setWorkbenchOptions(undefined, config);
|
||||
break;
|
||||
default:
|
||||
assignColorCustomizations(themeConfigCommon.accents[accentSelected], config);
|
||||
setWorkbenchOptions(accentSelected, config);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
4
extensions/commands/index.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
export {default as accentsSetter} from './accents-setter';
|
||||
export {default as fixIcons} from './theme-icons';
|
||||
export {default as toggleApplyIcons} from './toggle-apply-icons';
|
||||
export {default as showChangelog} from './show-changelog';
|
28
extensions/commands/show-changelog/index.ts
Normal file
|
@ -0,0 +1,28 @@
|
|||
import * as path from 'path';
|
||||
import * as vscode from 'vscode';
|
||||
|
||||
import {PATHS} from './../../consts/paths';
|
||||
|
||||
const previewFile = (): void => {
|
||||
const uri = vscode.Uri.file(path.join(PATHS.VSIX_DIR, './CHANGELOG.md'));
|
||||
vscode.commands.executeCommand('markdown.showPreview', uri);
|
||||
};
|
||||
|
||||
export default (): void => {
|
||||
const extname: string = 'vscode.markdown';
|
||||
const md = vscode.extensions.getExtension<any>(extname);
|
||||
|
||||
if (md === undefined) {
|
||||
console.warn(`Ext not found ${ extname }`);
|
||||
return;
|
||||
}
|
||||
|
||||
if (md.isActive) {
|
||||
return previewFile();
|
||||
}
|
||||
|
||||
md.activate()
|
||||
.then(() => previewFile(),
|
||||
reason => console.warn(reason)
|
||||
);
|
||||
};
|
|
@ -6,20 +6,21 @@ import {
|
|||
getDefaultValues,
|
||||
getThemeIconsByContributeID,
|
||||
getThemeIconsContribute,
|
||||
getVariantIcons
|
||||
getIconVariantFromTheme
|
||||
} from './../../helpers/fs';
|
||||
import {
|
||||
isAccent,
|
||||
isMaterialThemeIcons,
|
||||
getCustomSettings
|
||||
getCustomSettings,
|
||||
isMaterialTheme,
|
||||
setCustomSetting
|
||||
} from './../../helpers/settings';
|
||||
import {getCurrentThemeIconsID, getCurrentThemeID} from './../../helpers/vscode';
|
||||
import {getCurrentThemeID, setIconsID, getCurrentThemeIconsID, reloadWindow} from './../../helpers/vscode';
|
||||
import {CHARSET} from './../../consts/files';
|
||||
import {IPackageJSONThemeIcons} from './../../interfaces/ipackage.json';
|
||||
import {IThemeIconsIconPath, IThemeIcons} from './../../interfaces/itheme-icons';
|
||||
|
||||
const getIconDefinition = (definitions: any, iconname: string): IThemeIconsIconPath => {
|
||||
return (definitions as any)[iconname];
|
||||
const getIconDefinition = (definitions: any, iconName: string): IThemeIconsIconPath => {
|
||||
return (definitions as any)[iconName];
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -29,80 +30,73 @@ const replaceIconPathWithAccent = (iconPath: string, accentName: string): string
|
|||
return iconPath.replace('.svg', `.accent.${ accentName }.svg`);
|
||||
};
|
||||
|
||||
const getVariantFromColor = (color: string): string => {
|
||||
switch (true) {
|
||||
case color === undefined || color === 'Material Theme':
|
||||
return 'Default';
|
||||
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 = () => {
|
||||
/**
|
||||
* Fix icons when flag auto-fix is active and current theme is Material
|
||||
*/
|
||||
export default async () => {
|
||||
const deferred: any = {};
|
||||
const promise = new Promise((resolve, reject) => {
|
||||
deferred.resolve = resolve;
|
||||
deferred.reject = reject;
|
||||
});
|
||||
const themeIconsID: string = getCurrentThemeIconsID();
|
||||
|
||||
if (isMaterialThemeIcons(themeIconsID)) {
|
||||
const themeID = getCurrentThemeID();
|
||||
const customSettings = getCustomSettings();
|
||||
const defaults = getDefaultValues();
|
||||
const accentName = customSettings.accent;
|
||||
const variantName: string = getVariantFromColor(themeID);
|
||||
// Current theme id set on VSCode ("label" of the package.json)
|
||||
const themeLabel = getCurrentThemeID();
|
||||
|
||||
const themeContribute: IPackageJSONThemeIcons = getThemeIconsContribute(themeIconsID);
|
||||
const theme: IThemeIcons = getThemeIconsByContributeID(themeIconsID);
|
||||
const themepath: string = getAbsolutePath(themeContribute.path);
|
||||
|
||||
if (isAccent(accentName, defaults)) {
|
||||
const realAccentName = accentName.replace(/\s+/, '-');
|
||||
getAccentableIcons().forEach(iconname => {
|
||||
const distIcon = getIconDefinition(theme.iconDefinitions, iconname);
|
||||
const outIcon = getIconDefinition(defaults.icons.theme.iconDefinitions, iconname);
|
||||
|
||||
if (typeof distIcon === 'object' && typeof outIcon === 'object') {
|
||||
distIcon.iconPath = replaceIconPathWithAccent(outIcon.iconPath, realAccentName);
|
||||
}
|
||||
});
|
||||
|
||||
} else {
|
||||
getAccentableIcons().forEach(iconname => {
|
||||
const distIcon = getIconDefinition(theme.iconDefinitions, iconname);
|
||||
const outIcon = getIconDefinition(defaults.icons.theme.iconDefinitions, iconname);
|
||||
|
||||
distIcon.iconPath = outIcon.iconPath;
|
||||
});
|
||||
}
|
||||
|
||||
getVariantIcons().forEach(iconname => {
|
||||
const distIcon = getIconDefinition(theme.iconDefinitions, iconname);
|
||||
const outIcon = getIconDefinition(defaults.icons.theme.iconDefinitions, iconname);
|
||||
|
||||
if (distIcon && outIcon) {
|
||||
distIcon.iconPath = outIcon.iconPath.replace('.svg', `${ variantName }.svg`);
|
||||
}
|
||||
});
|
||||
|
||||
fs.writeFile(themepath, JSON.stringify(theme), {
|
||||
encoding: CHARSET
|
||||
}, err => {
|
||||
if (err) {
|
||||
deferred.reject(err);
|
||||
return;
|
||||
}
|
||||
|
||||
deferred.resolve();
|
||||
});
|
||||
} else {
|
||||
deferred.resolve();
|
||||
// If this method was called without Material Theme set, just return
|
||||
if (!isMaterialTheme(themeLabel)) {
|
||||
return deferred.resolve();
|
||||
}
|
||||
|
||||
return promise;
|
||||
await setCustomSetting('fixIconsRunning', true);
|
||||
|
||||
const DEFAULTS = getDefaultValues();
|
||||
const CUSTOM_SETTINGS = getCustomSettings();
|
||||
|
||||
const materialIconVariantID: string | null = getIconVariantFromTheme(themeLabel);
|
||||
const currentThemeIconsID: string = getCurrentThemeIconsID();
|
||||
const newThemeIconsID = materialIconVariantID ?
|
||||
`eq-material-theme-icons-${materialIconVariantID}` : 'eq-material-theme-icons';
|
||||
|
||||
// Just set the correct Material Theme icons variant if wasn't
|
||||
// Or also change the current icons set to the Material Theme icons variant
|
||||
// (this is intended: this command was called directly or `autoFix` flag was already checked by other code)
|
||||
if (currentThemeIconsID !== newThemeIconsID) {
|
||||
await setIconsID(newThemeIconsID);
|
||||
}
|
||||
|
||||
// package.json iconThemes object for the current icons set
|
||||
const themeIconsContribute: IPackageJSONThemeIcons = getThemeIconsContribute(newThemeIconsID);
|
||||
// Actual json file of the icons theme (eg. Material-Theme-Icons-Darker.json)
|
||||
const theme: IThemeIcons = getThemeIconsByContributeID(newThemeIconsID);
|
||||
|
||||
const newIconPath = (outIcon: IThemeIconsIconPath) => isAccent(CUSTOM_SETTINGS.accent, DEFAULTS) ?
|
||||
replaceIconPathWithAccent(outIcon.iconPath, CUSTOM_SETTINGS.accent.replace(/\s+/, '-')) : outIcon.iconPath;
|
||||
|
||||
getAccentableIcons().forEach(iconName => {
|
||||
const distIcon = getIconDefinition(theme.iconDefinitions, iconName);
|
||||
const outIcon = getIconDefinition(DEFAULTS.icons.theme.iconDefinitions, iconName);
|
||||
|
||||
if (typeof distIcon === 'object' && typeof outIcon === 'object') {
|
||||
distIcon.iconPath = newIconPath(outIcon);
|
||||
}
|
||||
});
|
||||
|
||||
// Path of the icons theme .json
|
||||
const themePath: string = getAbsolutePath(themeIconsContribute.path);
|
||||
fs.writeFile(themePath, JSON.stringify(theme), {
|
||||
encoding: CHARSET
|
||||
}, async err => {
|
||||
if (err) {
|
||||
deferred.reject(err);
|
||||
return;
|
||||
}
|
||||
|
||||
await setCustomSetting('fixIconsRunning', false);
|
||||
deferred.resolve();
|
||||
});
|
||||
|
||||
return promise
|
||||
.then(() => reloadWindow())
|
||||
.catch((error: NodeJS.ErrnoException) => console.trace(error));
|
||||
};
|
||||
|
|
11
extensions/commands/toggle-apply-icons/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import * as vscode from 'vscode';
|
||||
|
||||
export default async (): Promise<void> => {
|
||||
// shows the quick pick dropdown and wait response
|
||||
const optionSelected = await vscode.window.showQuickPick(['Enable', 'Disable']);
|
||||
const isEnable = optionSelected === 'Enable';
|
||||
|
||||
return Promise.resolve(vscode.workspace
|
||||
.getConfiguration().update('materialTheme.autoApplyIcons', isEnable, true)
|
||||
);
|
||||
};
|
|
@ -145,6 +145,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"themeIconVariants": {
|
||||
"Darker": "eq-material-theme-icons-darker",
|
||||
"Light": "eq-material-theme-icons-light",
|
||||
"Palenight": "eq-material-theme-icons-palenight",
|
||||
"Ocean": "eq-material-theme-icons-ocean"
|
||||
},
|
||||
"themeVariants": {
|
||||
"Darker": "./themes/Material-Theme-Darker.json",
|
||||
"Darker High Contrast": "./themes/Material-Theme-Darker-High-Contrast.json",
|
||||
|
|
42
extensions/helpers/configuration-change.ts
Normal file
|
@ -0,0 +1,42 @@
|
|||
import {
|
||||
ConfigurationChangeEvent
|
||||
} from 'vscode';
|
||||
import {getCustomSettings, isMaterialThemeIcons, isAutoApplyEnable, isMaterialTheme} from './settings';
|
||||
import {getCurrentThemeIconsID, getCurrentThemeID} from './vscode';
|
||||
|
||||
import * as ThemeCommands from './../commands';
|
||||
import {infoMessage} from './messages';
|
||||
|
||||
const icons = () => isAutoApplyEnable() ? ThemeCommands.fixIcons() : infoMessage();
|
||||
|
||||
const onIconsChanged = () => {
|
||||
const customSettings = getCustomSettings();
|
||||
if (customSettings.fixIconsRunning) {
|
||||
return;
|
||||
}
|
||||
|
||||
const currentIconsTheme = getCurrentThemeIconsID();
|
||||
if (isMaterialThemeIcons(currentIconsTheme)) {
|
||||
return icons();
|
||||
}
|
||||
};
|
||||
|
||||
const onThemeChanged = () => {
|
||||
const currentTheme = getCurrentThemeID();
|
||||
if (isMaterialTheme(currentTheme)) {
|
||||
return icons();
|
||||
}
|
||||
};
|
||||
|
||||
export const onChangeConfiguration = (event: ConfigurationChangeEvent) => {
|
||||
const isColorTheme = event.affectsConfiguration('workbench.colorTheme');
|
||||
const isIconTheme = event.affectsConfiguration('workbench.iconTheme');
|
||||
|
||||
if (isIconTheme) {
|
||||
return onIconsChanged();
|
||||
}
|
||||
|
||||
if (isColorTheme) {
|
||||
return onThemeChanged();
|
||||
}
|
||||
};
|
|
@ -52,6 +52,15 @@ export function getThemeIconsContribute(ID: string): IPackageJSONThemeIcons {
|
|||
return contributes[0] !== undefined ? contributes[0] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Icon variant name from theme name
|
||||
*/
|
||||
export function getIconVariantFromTheme(theme: string): string {
|
||||
const {themeIconVariants} = getDefaultValues();
|
||||
const found = Object.keys(themeIconVariants).find(variant => theme.includes(variant));
|
||||
return found ? found.toLowerCase() : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets package JSON
|
||||
*/
|
||||
|
|
14
extensions/helpers/messages.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
import {
|
||||
window as Window
|
||||
} from 'vscode';
|
||||
|
||||
import * as ThemeCommands from './../commands';
|
||||
|
||||
const INFO_MESSAGE = 'You should reload the window for full activate the Material Theme.';
|
||||
const OPTIONS = {ok: 'Reload now', cancel: 'Cancel'};
|
||||
|
||||
export const infoMessage = async () => {
|
||||
if (await Window.showInformationMessage(INFO_MESSAGE, OPTIONS.ok, OPTIONS.cancel) === OPTIONS.ok) {
|
||||
ThemeCommands.fixIcons();
|
||||
}
|
||||
};
|
|
@ -18,11 +18,18 @@ export function getCustomSettings(): IThemeCustomProperties {
|
|||
return vscode.workspace.getConfiguration().get<IThemeCustomProperties>('materialTheme', {});
|
||||
}
|
||||
|
||||
/**
|
||||
* Get autoApplyIcons
|
||||
*/
|
||||
export function isAutoApplyEnable(): boolean {
|
||||
return vscode.workspace.getConfiguration().get<boolean>('materialTheme.autoApplyIcons', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if a given string could be an accent
|
||||
*/
|
||||
export function isAccent(accentName: string, defaults: IDefaults): boolean {
|
||||
return Object.keys(defaults.accents).filter(name => name === accentName).length > 0;
|
||||
return Boolean(Object.keys(defaults.accents).find(name => name === accentName));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -30,7 +37,7 @@ export function isAccent(accentName: string, defaults: IDefaults): boolean {
|
|||
*/
|
||||
export function isMaterialTheme(themeName: string): boolean {
|
||||
const packageJSON = getPackageJSON();
|
||||
return packageJSON.contributes.themes.filter(contrib => contrib.label === themeName).length > 0;
|
||||
return Boolean(packageJSON.contributes.themes.find(contrib => contrib.label === themeName));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -38,20 +45,20 @@ export function isMaterialTheme(themeName: string): boolean {
|
|||
*/
|
||||
export function isMaterialThemeIcons(themeIconsName: string): boolean {
|
||||
const packageJSON = getPackageJSON();
|
||||
return packageJSON.contributes.iconThemes.filter(contribute => contribute.id === themeIconsName).length > 0;
|
||||
return Boolean(packageJSON.contributes.iconThemes.find(contribute => contribute.id === themeIconsName));
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a custom property in custom settings
|
||||
*/
|
||||
export function setCustomSetting(settingName: string, value: any): Thenable<void> {
|
||||
return vscode.workspace.getConfiguration().update(`materialTheme.${settingName}`, value, true);
|
||||
export function setCustomSetting(settingName: string, value: any): Thenable<string> {
|
||||
return vscode.workspace.getConfiguration().update(`materialTheme.${settingName}`, value, true).then(() => settingName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates accent name
|
||||
*/
|
||||
export function updateAccent(accentName: string): Thenable<void> {
|
||||
export function updateAccent(accentName: string): Thenable<string> {
|
||||
const prevAccent = getAccent();
|
||||
return setCustomSetting('accentPrevious', prevAccent)
|
||||
.then(() => setCustomSetting('accent', accentName));
|
||||
|
|
|
@ -1,15 +1,8 @@
|
|||
import * as path from 'path';
|
||||
import * as vscode from 'vscode';
|
||||
|
||||
import {IDefaults} from './../interfaces/idefaults';
|
||||
|
||||
import {getDefaultValues, getPackageJSON, writeFile} from './fs';
|
||||
import {PATHS} from './../consts/paths';
|
||||
|
||||
const previewFile = (): void => {
|
||||
const uri = vscode.Uri.file(path.join(PATHS.VSIX_DIR, './CHANGELOG.md'));
|
||||
vscode.commands.executeCommand('markdown.showPreview', uri);
|
||||
};
|
||||
|
||||
const splitVersion = (input: string): {major: number; minor: number; patch: number} => {
|
||||
const [major, minor, patch] = input.split('.').map(i => parseInt(i, 10));
|
||||
|
@ -19,26 +12,7 @@ const splitVersion = (input: string): {major: number; minor: number; patch: numb
|
|||
const writeDefaults = (defaults: IDefaults) =>
|
||||
writeFile(path.join('./extensions/defaults.json'), JSON.stringify(defaults, null, 2));
|
||||
|
||||
export const showChangelog = (): void => {
|
||||
const extname: string = 'vscode.markdown';
|
||||
const md = vscode.extensions.getExtension<any>(extname);
|
||||
|
||||
if (md === undefined) {
|
||||
console.warn(`Ext not found ${ extname }`);
|
||||
return;
|
||||
}
|
||||
|
||||
if (md.isActive) {
|
||||
return previewFile();
|
||||
}
|
||||
|
||||
md.activate()
|
||||
.then(() => previewFile(),
|
||||
reason => console.warn(reason)
|
||||
);
|
||||
};
|
||||
|
||||
export const shouldShowChangelog = (): boolean => {
|
||||
export default (): boolean => {
|
||||
const defaults = getDefaultValues();
|
||||
const packageJSON = getPackageJSON();
|
||||
|
|
@ -4,6 +4,7 @@ export interface IDefaults {
|
|||
changelog: IChangelog;
|
||||
icons: IDefaultsThemeIcons;
|
||||
themeVariants: IDefaultsThemeVariant;
|
||||
themeIconVariants: IDefaultsThemeIconVariant;
|
||||
themeVariantsColours: IDefaultsThemeVariant;
|
||||
themeVariantsUITheme: IDefaultsThemeVariant;
|
||||
variantsIcons: string[];
|
||||
|
@ -54,4 +55,14 @@ export interface IDefaultsThemeVariant {
|
|||
Light: string;
|
||||
LightHighContrast: string;
|
||||
PalenightHighContrast: string;
|
||||
Ocean: string;
|
||||
OceanHighContrast: string;
|
||||
}
|
||||
|
||||
export interface IDefaultsThemeIconVariant {
|
||||
[index: string]: string;
|
||||
Darker: string;
|
||||
Light: string;
|
||||
Palenight: string;
|
||||
Ocean: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
export interface IThemeCustomProperties {
|
||||
accent?: string;
|
||||
accentPrevious?: string;
|
||||
autoApplyIcons?: boolean;
|
||||
fixIconsRunning?: boolean;
|
||||
}
|
||||
|
|
|
@ -3,28 +3,17 @@ import {
|
|||
commands as Commands
|
||||
} from 'vscode';
|
||||
|
||||
import {THEME_ACCENTS_SETTER} from './commands/accents-setter/index';
|
||||
import {THEME_ICONS} from './commands/theme-icons/index';
|
||||
import {shouldShowChangelog, showChangelog} from './helpers/changelog';
|
||||
import {reloadWindow, getCurrentThemeID, setIconsID} from './helpers/vscode';
|
||||
|
||||
const isMaterialTheme = (currentTheme: string): boolean =>
|
||||
currentTheme.includes('Material Theme');
|
||||
import * as ThemeCommands from './commands';
|
||||
import {isAutoApplyEnable} from './helpers/settings';
|
||||
import {onChangeConfiguration} from './helpers/configuration-change';
|
||||
import {infoMessage} from './helpers/messages';
|
||||
import shouldShowChangelog from './helpers/should-show-changelog';
|
||||
|
||||
export function activate() {
|
||||
const config = Workspace.getConfiguration();
|
||||
|
||||
// Listen on set theme: when the theme is Material Theme, just adjust icon and accent.
|
||||
Workspace.onDidChangeConfiguration(event => {
|
||||
const isColorTheme = event.affectsConfiguration('workbench.colorTheme');
|
||||
const currentTheme = getCurrentThemeID();
|
||||
// tslint:disable-next-line:early-exit
|
||||
if (isColorTheme && isMaterialTheme(currentTheme)) {
|
||||
setIconsID('eq-material-theme-icons')
|
||||
.then(() => THEME_ICONS().catch(error => console.trace(error)))
|
||||
.then(() => reloadWindow());
|
||||
}
|
||||
});
|
||||
Workspace.onDidChangeConfiguration(onChangeConfiguration);
|
||||
|
||||
// Delete old configuration, must remove with next major release
|
||||
if (config.has('materialTheme.cache.workbench')) {
|
||||
|
@ -32,15 +21,18 @@ export function activate() {
|
|||
}
|
||||
|
||||
if (shouldShowChangelog()) {
|
||||
showChangelog();
|
||||
ThemeCommands.showChangelog();
|
||||
}
|
||||
|
||||
// Registering commands
|
||||
Commands.registerCommand('materialTheme.setAccent', () => THEME_ACCENTS_SETTER());
|
||||
Commands.registerCommand('materialTheme.fixIcons', () =>
|
||||
THEME_ICONS()
|
||||
.then(() => reloadWindow())
|
||||
.catch(err => console.trace(err))
|
||||
);
|
||||
Commands.registerCommand('materialTheme.showChangelog', () => showChangelog());
|
||||
Commands.registerCommand('materialTheme.setAccent', async () => {
|
||||
const wasSet = await ThemeCommands.accentsSetter();
|
||||
|
||||
if (wasSet) {
|
||||
return isAutoApplyEnable() ? ThemeCommands.fixIcons() : infoMessage();
|
||||
}
|
||||
});
|
||||
Commands.registerCommand('materialTheme.fixIcons', () => ThemeCommands.fixIcons());
|
||||
Commands.registerCommand('materialTheme.toggleApplyIcons', () => ThemeCommands.toggleApplyIcons());
|
||||
Commands.registerCommand('materialTheme.showChangelog', () => ThemeCommands.showChangelog());
|
||||
}
|
||||
|
|
44
package.json
|
@ -28,14 +28,16 @@
|
|||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants",
|
||||
"build": "yarn get-remote-icons && yarn build-icons && yarn build-themes && yarn build-icons-accents && yarn build-icons-variants && yarn build-icons-variants-json",
|
||||
"minimize-icons": "mkdir icons && svgo -f src/icons/svgs -o icons/",
|
||||
"minimize-json": "json-minify themes/.material-theme-icons.tmp > themes/Material-Theme-Icons.json && yarn remove-icons-tmp",
|
||||
"remove-icons": "rimraf icons && rimraf themes/Material-Theme-Icons.json",
|
||||
"remove-icons-tmp": "rimraf themes/.material-theme-icons.tmp",
|
||||
"get-remote-icons": "yarn gulp build:get-remote-icons",
|
||||
"build-icons": "yarn remove-icons && yarn minimize-icons && yarn gulp build:icons && yarn minimize-json",
|
||||
"build-icons-accents": "yarn gulp build:icons.accents",
|
||||
"build-icons-variants": "yarn gulp build:icons.variants",
|
||||
"build-icons-variants-json": "yarn gulp build:icons.variants-json",
|
||||
"build-themes": "yarn gulp build:themes",
|
||||
"build-ts": "tsc -p ./tsconfig.json",
|
||||
"test": "tslint **.ts",
|
||||
|
@ -52,6 +54,11 @@
|
|||
"main": "./extensions/material.theme.config.js",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "materialTheme.toggleApplyIcons",
|
||||
"title": "Enable or disable icons auto-applying",
|
||||
"category": "🎨 Material Theme"
|
||||
},
|
||||
{
|
||||
"command": "materialTheme.setAccent",
|
||||
"title": "Set accent color",
|
||||
|
@ -79,6 +86,16 @@
|
|||
"materialTheme.accentPrevious": {
|
||||
"type": "string",
|
||||
"description": "Previous accent color selected"
|
||||
},
|
||||
"materialTheme.autoApplyIcons": {
|
||||
"type": "boolean",
|
||||
"description": "Enable/disable auto-apply of Material Theme icons",
|
||||
"default": true
|
||||
},
|
||||
"materialTheme.fixIconsRunning": {
|
||||
"type": "boolean",
|
||||
"description": "For checking if the command is currently acting",
|
||||
"default": false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -139,6 +156,26 @@
|
|||
"id": "eq-material-theme-icons",
|
||||
"label": "Material Theme Icons",
|
||||
"path": "./themes/Material-Theme-Icons.json"
|
||||
},
|
||||
{
|
||||
"id": "eq-material-theme-icons-darker",
|
||||
"label": "Material Theme Icons Darker",
|
||||
"path": "./themes/Material-Theme-Icons-Darker.json"
|
||||
},
|
||||
{
|
||||
"id": "eq-material-theme-icons-palenight",
|
||||
"label": "Material Theme Icons Palenight",
|
||||
"path": "./themes/Material-Theme-Icons-Palenight.json"
|
||||
},
|
||||
{
|
||||
"id": "eq-material-theme-icons-ocean",
|
||||
"label": "Material Theme Icons Ocean",
|
||||
"path": "./themes/Material-Theme-Icons-Ocean.json"
|
||||
},
|
||||
{
|
||||
"id": "eq-material-theme-icons-light",
|
||||
"label": "Material Theme Icons Light",
|
||||
"path": "./themes/Material-Theme-Icons-Light.json"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -151,10 +188,13 @@
|
|||
],
|
||||
"devDependencies": {
|
||||
"@types/chalk": "2.2.0",
|
||||
"@types/execa": "0.9.0",
|
||||
"@types/gulp": "4.0.5",
|
||||
"@types/gulp-if": "0.0.33",
|
||||
"@types/gulp-util": "3.0.34",
|
||||
"@types/mustache": "0.8.30",
|
||||
"@types/ncp": "2.0.1",
|
||||
"@types/rimraf": "2.0.2",
|
||||
"@types/run-sequence": "0.0.30",
|
||||
"@types/through2": "2.0.33",
|
||||
"@types/yamljs": "0.2.30",
|
||||
|
@ -163,6 +203,7 @@
|
|||
"babel-preset-es2015": "6.24.1",
|
||||
"babel-root-import": "4.1.8",
|
||||
"cpx": "1.5.0",
|
||||
"execa": "0.10.0",
|
||||
"gulp": "3.9.1",
|
||||
"gulp-bump": "3.1.0",
|
||||
"gulp-conventional-changelog": "1.1.11",
|
||||
|
@ -172,6 +213,7 @@
|
|||
"hoek": "5.0.3",
|
||||
"json-minify": "1.0.0",
|
||||
"mustache": "2.3.0",
|
||||
"ncp": "2.0.0",
|
||||
"rimraf": "2.6.2",
|
||||
"run-sequence": "2.2.1",
|
||||
"standard-version": "4.3.0",
|
||||
|
|
|
@ -1,14 +1,22 @@
|
|||
"fileExtensions": {
|
||||
"pm": "_file_perl",
|
||||
"pl": "_file_perl",
|
||||
"sql": "_file_sql",
|
||||
"jl": "_file_julia",
|
||||
"gv": "_file_graphviz",
|
||||
"erl": "_file_erlang",
|
||||
"slim": "_file_slim",
|
||||
"hx": "_file_haxe",
|
||||
"zep": "_file_zephyr",
|
||||
"mjs": "_file_node",
|
||||
"mjml": "_file_mjml",
|
||||
"blade.php": "_file_blade",
|
||||
"blade": "_file_blade",
|
||||
"inky.php": "_file_blade",
|
||||
"scala": "_file_scala",
|
||||
"asp": "_file_dotnet",
|
||||
"aspx": "_file_dotnet",
|
||||
"ascx": "_file_dotnet",
|
||||
"asp": "_file_html",
|
||||
"aspx": "_file_html",
|
||||
"ascx": "_file_html",
|
||||
"cmd": "_file_cmd",
|
||||
"mustache": "_file_mustache",
|
||||
"rails": "_file_rails",
|
||||
|
@ -83,7 +91,7 @@
|
|||
"webp": "_file_image",
|
||||
"php": "_file_php",
|
||||
"js": "_file_js",
|
||||
"ejs": "_file_js",
|
||||
"ejs": "_file_html",
|
||||
"jsx": "_file_react",
|
||||
"ini": "_file_settings",
|
||||
"dlc": "_file_settings",
|
||||
|
@ -141,9 +149,9 @@
|
|||
"csh": "_file_console",
|
||||
"tcsh": "_file_console",
|
||||
"zsh": "_file_console",
|
||||
"bash": "_file_console",
|
||||
"bat": "_file_console",
|
||||
"cmd": "_file_console",
|
||||
"bash": "_file_cmd",
|
||||
"bat": "_file_cmd",
|
||||
"cmd": "_file_cmd",
|
||||
"awk": "_file_console",
|
||||
"ps1": "_file_console",
|
||||
"fish": "_file_console",
|
||||
|
@ -191,6 +199,8 @@
|
|||
"ino": "_file_arduino",
|
||||
"dockerignore": "_file_docker",
|
||||
"tex": "_file_tex",
|
||||
"cls": "_file_tex",
|
||||
"sty": "_file_tex",
|
||||
"bib": "_file_lib",
|
||||
"pptx": "_file_powerpoint",
|
||||
"ppt": "_file_powerpoint",
|
||||
|
@ -229,11 +239,6 @@
|
|||
"vbox": "_file_virtual",
|
||||
"vbox-prev": "_file_virtual",
|
||||
"ics": "_file_email",
|
||||
"mp3": "_file_music",
|
||||
"flac": "_file_music",
|
||||
"m4a": "_file_music",
|
||||
"wma": "_file_music",
|
||||
"aiff": "_file_music",
|
||||
"coffee": "_file_coffee",
|
||||
"txt": "_file_document",
|
||||
"sqlite": "_file_database",
|
||||
|
@ -282,7 +287,8 @@
|
|||
"js.map": "_file_jsmap",
|
||||
"css.map": "_file_cssmap",
|
||||
"tmTheme": "_file_markup",
|
||||
"pp": "_file_pp",
|
||||
"tmcolor": "_file_markup",
|
||||
"pp": "_file_puppet",
|
||||
"applescript": "_file_applescript",
|
||||
"mp3": "_file_audio",
|
||||
"flac": "_file_audio",
|
||||
|
@ -292,6 +298,30 @@
|
|||
"haml": "_file_haml",
|
||||
"ex": "_file_ex",
|
||||
"exs": "_file_ex",
|
||||
"eex": "_file_ex",
|
||||
"re": "_file_reason",
|
||||
"rei": "_file_reason"
|
||||
"rei": "_file_reason",
|
||||
"module.ts": "_file_angular",
|
||||
"module.js": "_file_angular",
|
||||
"ng-template": "_file_angular",
|
||||
"component.ts": "_file_angular-component",
|
||||
"component.js": "_file_angular-component",
|
||||
"directive.ts": "_file_angular-directive",
|
||||
"directive.js": "_file_angular-directive",
|
||||
"guard.ts": "_file_angular-guard",
|
||||
"guard.js": "_file_angular-guard",
|
||||
"service.ts": "_file_angular-service",
|
||||
"service.js": "_file_angular-service",
|
||||
"pipe.ts": "_file_angular-pipe",
|
||||
"pipe.js": "_file_angular-pipe",
|
||||
"filter.js": "_file_angular-pipe",
|
||||
"resolver.ts": "_file_angular-resolver",
|
||||
"resolver.js": "_file_angular-resolver",
|
||||
"routing.ts": "_file_angular-routing",
|
||||
"routing.js": "_file_angular-routing",
|
||||
"matlab": "_file_matlab",
|
||||
"liquid": "_file_liquid",
|
||||
"note": "_file_note",
|
||||
"js.map": "_file_js_map",
|
||||
"mjs.map": "_file_js_map"
|
||||
},
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
"fileNames": {
|
||||
".prettierrc": "_file_prettier",
|
||||
"prettier.config.js": "_file_prettier",
|
||||
".prettierrc.js": "_file_prettier",
|
||||
".prettierrc.json": "_file_prettier",
|
||||
".prettierrc.yaml": "_file_prettier",
|
||||
".prettierrc.yml": "_file_prettier",
|
||||
".prettierignore": "_file_prettier",
|
||||
"code_of_conduct.md": "_file_conduct",
|
||||
"jest.config.js": "_file_jest",
|
||||
"jest.config.ts": "_file_jest",
|
||||
|
@ -20,6 +27,19 @@
|
|||
".bowerrc": "_file_bower",
|
||||
"webpack.js": "_file_webpack",
|
||||
"rollup.config.js": "_file_rollup",
|
||||
"rollup.config.ts": "file_rollup",
|
||||
"rollup-config.js": "file_rollup",
|
||||
"rollup-config.ts": "file_rollup",
|
||||
"rollup.config.common.js": "file_rollup",
|
||||
"rollup.config.common.ts": "file_rollup",
|
||||
"rollup.config.base.js": "file_rollup",
|
||||
"rollup.config.base.ts": "file_rollup",
|
||||
"rollup.config.prod.js": "file_rollup",
|
||||
"rollup.config.prod.ts": "file_rollup",
|
||||
"rollup.config.dev.js": "file_rollup",
|
||||
"rollup.config.dev.ts": "file_rollup",
|
||||
"rollup.config.prod.vendor.js": "file_rollup",
|
||||
"rollup.config.prod.vendor.ts": "file_rollup",
|
||||
"webpack.config.js": "_file_webpack",
|
||||
"webpack.dev.js": "_file_webpack",
|
||||
"webpack.prod.js": "_file_webpack",
|
||||
|
@ -29,6 +49,7 @@
|
|||
".io-config.json": "_file_ionic",
|
||||
"gulpfile.js": "_file_gulp",
|
||||
"gulpfile.babel.js": "_file_gulp",
|
||||
"gulpfile.babel.ts": "_file_gulp",
|
||||
"gulp-config.js": "_file_gulp",
|
||||
"package.json": "_file_npm",
|
||||
"gradle.properties": "_file_gradle",
|
||||
|
@ -53,13 +74,18 @@
|
|||
".babelrc": "_file_babel",
|
||||
".babelrc.json": "_file_babel",
|
||||
".eslintrc": "_file_eslint",
|
||||
".eslintignore": "_file_eslint",
|
||||
".eslintrc.js": "_file_eslint",
|
||||
".eslintrc.json": "_file_eslint",
|
||||
".eslintrc.yml": "_file_eslint",
|
||||
".eslintrc.yaml": "_file_eslint",
|
||||
".stylelintrc": "_file_stylelint",
|
||||
".stylelint.js": "_file_stylelint",
|
||||
".stylelint.config.js": "_file_stylelint",
|
||||
".stylelintrc.js": "_file_stylelint",
|
||||
".stylelintrc.json": "_file_stylelint",
|
||||
".stylelintrc.yml": "_file_stylelint",
|
||||
".stylelintrc.yaml": "_file_stylelint",
|
||||
".stylelintignore": "_file_stylelint",
|
||||
".buildignore": "_file_settings",
|
||||
".htaccess": "_file_xml",
|
||||
"composer.lock": "_file_json",
|
||||
|
@ -90,8 +116,8 @@
|
|||
".jsbeautifyrc": "_file_json",
|
||||
"git-history": "_file_git",
|
||||
"angular-cli.json": "_file_angular",
|
||||
"component.ts": "_file_angular",
|
||||
"component.js": "_file_angular",
|
||||
"app.module.ts": "_file_angular",
|
||||
".angular-cli.json": "_file_angular",
|
||||
"directive.ts": "_file_angular-directive",
|
||||
"directive.js": "_file_angular-directive",
|
||||
"favicon.ico": "_file_favicon"
|
||||
},
|
||||
},
|
||||
|
|
|
@ -3,5 +3,7 @@
|
|||
"ng-template": "_file_angular",
|
||||
"haxe": "_file_haxe",
|
||||
"hxml": "_file_haxe",
|
||||
"polymer": "_file_polymer"
|
||||
},
|
||||
"polymer": "_file_polymer",
|
||||
"matlab": "_file_matlab",
|
||||
"makefile": "_file_settings"
|
||||
},
|
||||
|
|
|
@ -1,89 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="actionscript.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="13.906433"
|
||||
inkscape:cx="9.0609683"
|
||||
inkscape:cy="11.953195"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:42.82164001px;line-height:113.99999857%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#D14748;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="5.6050396"
|
||||
y="15.89185"
|
||||
id="text4136"
|
||||
sodipodi:linespacing="114%"
|
||||
transform="scale(0.91324876,1.0949919)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4138"
|
||||
x="5.6050396"
|
||||
y="15.89185"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.38176346px;line-height:113.99999857%;font-family:Arial;-inkscape-font-specification:'Arial Bold';letter-spacing:-2.68541741px;fill:#D14748;fill-opacity:1;" /></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:51.01877594px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#D14748;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="-0.67922986"
|
||||
y="15.112477"
|
||||
id="text4144"
|
||||
sodipodi:linespacing="125%"
|
||||
transform="scale(0.84460858,1.1839804)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4146"
|
||||
x="-0.67922986"
|
||||
y="15.112477"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:19.13204002px;font-family:'Segoe UI';-inkscape-font-specification:'Segoe UI Bold';fill:#D14748;fill-opacity:1;">{ }</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:35.22633743px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#D14748;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="4.7331672"
|
||||
y="15.426298"
|
||||
id="text4160"
|
||||
sodipodi:linespacing="125%"
|
||||
transform="scale(0.92798218,1.0776069)"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4162"
|
||||
x="4.7331672"
|
||||
y="15.426298"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:13.20987701px;font-family:'Segoe UI';-inkscape-font-specification:'Segoe UI Bold';letter-spacing:-0.62814659px;fill:#D14748;fill-opacity:1">AS</tspan></text>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.7 KiB |
|
@ -1,12 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32">
|
||||
<defs>
|
||||
<polygon id="ai-a" points="4 4 4 28 28 28 28 4 4 4"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<use fill="#AB7558" xlink:href="#ai-a"/>
|
||||
<path stroke="#F4BF75" stroke-width="2" d="M5,5 L5,27 L27,27 L27,5 L5,5 Z"/>
|
||||
<path fill="#F4BF75" d="M20.2261361,11.6942222 C20.534609,11.6942222 20.7972748,11.5828148 21.0141335,11.36 C21.2309922,11.1371852 21.3400014,10.8776296 21.3411611,10.5813333 C21.3411611,10.2660741 21.2321519,10.0023704 21.0141335,9.79022222 C20.7961151,9.57807407 20.5334493,9.47140741 20.2261361,9.47022222 C19.9188229,9.46903704 19.6607958,9.5757037 19.4520548,9.79022222 C19.2433138,10.0047407 19.1389432,10.2684444 19.1389432,10.5813333 C19.1389432,10.8942222 19.2433138,11.1579259 19.4520548,11.3724444 C19.6607958,11.586963 19.9188229,11.6936296 20.2261361,11.6924444 L20.2261361,11.6924444 L20.2261361,11.6942222 Z"/>
|
||||
<polygon fill="#F4BF75" points="19.167 12.667 21.287 12.667 21.287 20.834 19.167 20.834"/>
|
||||
<path fill="#F4BF75" d="M12.3983475,18.0835556 L12.396608,18.0853333 L11.6086106,20.8355556 L9.65166341,20.8355556 L12.4244401,11.168 L12.4244401,10.112 L15.0615351,10.112 L18.2152642,20.8337778 L16.0408785,20.8337778 L15.2789737,18.0835556 L12.3983475,18.0835556 Z M13.8125679,12 L13.8108284,12 L12.7514677,16.2222222 L14.8719287,16.2222222 L13.8125679,12 Z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="android.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="733"
|
||||
inkscape:window-height="479"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="104"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M15,5H14V4H15M10,5H9V4H10M15.53,2.16L16.84,0.85C17.03,0.66 17.03,0.34 16.84,0.14C16.64,-0.05 16.32,-0.05 16.13,0.14L14.65,1.62C13.85,1.23 12.95,1 12,1C11.04,1 10.14,1.23 9.34,1.63L7.85,0.14C7.66,-0.05 7.34,-0.05 7.15,0.14C6.95,0.34 6.95,0.66 7.15,0.85L8.46,2.16C6.97,3.26 6,5 6,7H18C18,5 17,3.25 15.53,2.16M20.5,8A1.5,1.5 0 0,0 19,9.5V16.5A1.5,1.5 0 0,0 20.5,18A1.5,1.5 0 0,0 22,16.5V9.5A1.5,1.5 0 0,0 20.5,8M3.5,8A1.5,1.5 0 0,0 2,9.5V16.5A1.5,1.5 0 0,0 3.5,18A1.5,1.5 0 0,0 5,16.5V9.5A1.5,1.5 0 0,0 3.5,8M6,18A1,1 0 0,0 7,19H8V22.5A1.5,1.5 0 0,0 9.5,24A1.5,1.5 0 0,0 11,22.5V19H13V22.5A1.5,1.5 0 0,0 14.5,24A1.5,1.5 0 0,0 16,22.5V19H17A1,1 0 0,0 18,18V8H6V18Z"
|
||||
id="path4"
|
||||
style="fill:#c0ca33;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<path fill="#D14748" fill-rule="evenodd" d="M15.9406877,10.7956876 L13.9357376,15.5064884 L18.2509502,15.5064884 L15.9718024,10.766704 L15.9406877,10.7976198 L15.9406877,10.7956876 Z M15.9698577,4.00193224 L5,7.83549612 L6.7326969,22.0857651 L15.9698577,27.1578947 L25.2673031,22.0258657 L27,7.74468085 L15.9698577,4 L15.9698577,4.00193224 Z M20.6195527,20.9399469 L19.129939,17.5276113 L13.0528595,17.5276113 L11.6857597,20.909031 L9.16352868,20.9399469 L15.938743,5.96508794 L22.9570406,20.9399469 L20.6176081,20.9399469 L20.6195527,20.9399469 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 644 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<path fill="#7A8387" fill-rule="evenodd" d="M21.5740728,15.377975 C21.5562982,14.0237715 21.9251214,13.0128404 22.6805425,12.3451814 C23.4359637,11.6775225 23.8397807,11.3259184 23.8919936,11.2903691 C23.2498857,10.3705329 22.520571,9.78896969 21.7040497,9.54567966 C20.8875283,9.30238963 20.3059652,9.18074461 19.9593602,9.18074461 C19.1261751,9.09409336 18.3407594,9.23295754 17.6031129,9.59733713 C16.8654664,9.96171672 16.2794596,10.1439065 15.8450924,10.1439065 C15.4284999,10.1439065 14.9074815,9.98782319 14.2820373,9.67565653 C13.6565931,9.36348986 13.0055978,9.20740653 12.3290515,9.20740653 C11.4092153,9.22518114 10.5543674,9.47680303 9.76450798,9.96227218 C8.97464856,10.4477413 8.34531612,11.0987366 7.87651067,11.9152579 C7.40770522,12.7317793 7.12997687,13.6299527 7.04332562,14.6097784 C6.95667438,15.589604 7,16.5660968 7.17330249,17.539257 C7.34660498,18.5124171 7.61988967,19.450028 7.99315657,20.3520897 C8.36642347,21.2541514 8.77857234,22.0440108 9.22960318,22.721668 C9.68063402,23.3637759 10.1838778,23.9797774 10.7393345,24.5696724 C11.2947912,25.1595674 11.91968,25.4461831 12.6140008,25.4295194 C13.3083217,25.395081 13.8637784,25.2389977 14.2803709,24.9612694 C14.6969634,24.683541 15.3129649,24.5446768 16.1283754,24.5446768 C16.9615604,24.5446768 17.5820055,24.6879847 17.9897107,24.9746003 C18.397416,25.261216 18.9573163,25.4045238 19.6694118,25.4045238 C20.398171,25.3867492 21.0141725,25.1045772 21.5174162,24.5580078 C22.02066,24.0114384 22.4977973,23.4170997 22.9488281,22.7749918 C23.4698465,22.0106834 23.8431134,21.3208062 24.0686288,20.7053601 C24.2941442,20.0899141 24.4157893,19.7555292 24.4335639,19.7022054 C24.4157893,19.7022054 23.938652,19.385595 23.002152,18.7523744 C22.065652,18.1191538 21.5885147,16.9954649 21.5707401,15.3813077 L21.5707401,15.3813077 L21.5740728,15.377975 Z M18.8662214,7.41105957 C19.2483756,6.96002874 19.5477668,6.43512216 19.7643949,5.83633984 C19.981023,5.23755752 20.0548987,4.62544424 19.9860221,4 C19.44834,4.01777461 18.883996,4.1783016 18.2929901,4.48158096 C17.7019842,4.78486031 17.2159596,5.16257087 16.8349163,5.61471262 C16.4872004,6.01353053 16.1878092,6.51233064 15.9367428,7.11111296 C15.6856764,7.70989528 15.6034688,8.31312125 15.69012,8.92079087 C16.2977896,8.9730038 16.8837965,8.84691513 17.4481405,8.54252486 C18.0124845,8.23813459 18.4857336,7.86042404 18.8678878,7.4093932 L18.8678878,7.4093932 L18.8662214,7.41105957 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.5 KiB |
|
@ -1 +0,0 @@
|
|||
<svg width="720" height="720" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><symbol id="a" preserveAspectRatio="xMinYMin meet" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke-opacity="100%" stroke-width="60" stroke="#00979c" d="M174 30a10.5 10.1 0 0 0 0 280C364 320 344 30 544 30a10.5 10.1 0 0 1 0 280C354 320 374 30 174 30"/><path d="M528 205v-32.8h-32.5v-13.7H528V126h13.9v32.5h32.5v13.7h-32.5V205H528z" text-anchor="middle" fill="#00979c" stroke-width="20" stroke="#00979c" font-family="sans-serif" font-size="167"/><path fill="#00979c" stroke="#00979c" stroke-width="23.6" transform="matrix(1.56 0 0 .64 -366 .528)" d="M321 266v-17.4h53.3V266H321z"/></symbol></defs><title>Layer 1</title><use x="20.063" y="360.85" transform="matrix(.997 0 0 .997 -18.596 -159.19)" xlink:href="#a"/></svg>
|
Before Width: | Height: | Size: 842 B |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="assembly.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="10.878774"
|
||||
inkscape:cy="9.977663"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
style="fill:#795548;fill-opacity:1"
|
||||
d="M 6 2 C 4.89 2 4 2.89 4 4 L 4 20 A 2 2 0 0 0 6 22 L 18 22 A 2 2 0 0 0 20 20 L 20 8 L 14 2 L 6 2 z M 13 3.5 L 18.5 9 L 13 9 L 13 3.5 z M 8.9960938 10.175781 C 10.709868 10.175781 11.566406 10.565102 11.566406 11.345703 L 11.566406 13.308594 C 11.566406 14.136818 10.712859 14.550781 9.0058594 14.550781 C 7.9152761 14.550781 7.1880513 14.470215 6.8222656 14.306641 C 6.4632537 14.140996 6.2832031 13.807599 6.2832031 13.308594 L 6.2832031 11.496094 C 6.2832031 10.616106 7.1874867 10.175781 8.9960938 10.175781 z M 15.478516 10.244141 L 16.462891 10.244141 L 16.462891 13.349609 L 17.246094 13.349609 L 17.246094 14.482422 L 13.791016 14.482422 L 13.791016 13.349609 L 14.523438 13.349609 L 14.523438 11.527344 L 13.791016 11.527344 L 13.791016 10.570312 C 14.637742 10.570312 15.200789 10.461549 15.478516 10.244141 z M 8.9355469 11.298828 C 8.4613802 11.298828 8.2246094 11.469022 8.2246094 11.808594 L 8.2246094 12.871094 L 8.2246094 13.007812 L 8.2558594 13.15625 C 8.3168237 13.286695 8.5317374 13.353516 8.9042969 13.353516 C 9.3852373 13.353516 9.6269531 13.181604 9.6269531 12.837891 L 9.6269531 11.808594 L 9.6171875 11.634766 C 9.6171875 11.411145 9.3893921 11.298828 8.9355469 11.298828 z M 15.457031 15.900391 C 17.170805 15.900391 18.027344 16.289711 18.027344 17.070312 L 18.027344 19.033203 C 18.027344 19.861427 17.173797 20.275391 15.466797 20.275391 C 14.376214 20.275391 13.648989 20.194824 13.283203 20.03125 C 12.924191 19.865605 12.744141 19.532208 12.744141 19.033203 L 12.744141 17.220703 C 12.744141 16.340715 13.648424 15.900391 15.457031 15.900391 z M 9.0175781 15.96875 L 10.001953 15.96875 L 10.001953 19.074219 L 10.785156 19.074219 L 10.785156 20.207031 L 7.3300781 20.207031 L 7.3300781 19.074219 L 8.0625 19.074219 L 8.0625 17.251953 L 7.3300781 17.251953 L 7.3300781 16.294922 C 8.1768043 16.294922 8.7398519 16.186159 9.0175781 15.96875 z M 15.396484 17.025391 C 14.922318 17.025391 14.685547 17.193631 14.685547 17.533203 L 14.685547 18.595703 L 14.685547 18.732422 L 14.716797 18.880859 C 14.777761 19.011305 14.992675 19.078125 15.365234 19.078125 C 15.846175 19.078125 16.087891 18.906213 16.087891 18.5625 L 16.087891 17.533203 L 16.078125 17.359375 C 16.078125 17.135754 15.85033 17.025391 15.396484 17.025391 z "
|
||||
id="path4" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.7 KiB |
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(4 3)">
|
||||
<circle cx="13" cy="13" r="13" fill="#D14748"/>
|
||||
<path fill="#111" fill-rule="nonzero" d="M12.9653423,6.29135 C11.6387135,2.3803 7.98772204,1.5366 6.49989587,1.3533 L6.49989587,0 L5.1999167,0 L5.1999167,9.7669 C4.65522542,9.35415 3.98443617,9.1 3.24994794,9.1 C1.45792664,9.1 0,10.55795 0,12.35 C0,14.14205 1.45792664,15.6 3.24994794,15.6 C5.04196923,15.6 6.49989587,14.14205 6.49989587,12.35 L6.49989587,5.85455 C7.7030266,5.88705 10.3536841,6.0749 12.0189575,7.05965 C12.1216558,7.1201 12.236054,7.15 12.3498022,7.15 C12.4960498,7.15 12.6409975,7.1006 12.7592956,7.0044 C12.9705422,6.83345 13.0530909,6.54875 12.9653423,6.29135 Z" transform="translate(7.8 5.2)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 836 B |
|
@ -1,55 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="autohotkey.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="13.906433"
|
||||
inkscape:cx="9.3323314"
|
||||
inkscape:cy="6.0297729"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
style="fill:#4caf50;fill-opacity:1"
|
||||
d="M 5 3 C 3.89 3 3 3.89 3 5 L 3 19 A 2 2 0 0 0 5 21 L 19 21 A 2 2 0 0 0 21 19 L 21 5 C 21 3.89 20.1 3 19 3 L 5 3 z M 8.6679688 6.4472656 C 8.9275716 6.4472656 9.145752 6.5330404 9.3203125 6.703125 C 9.494873 6.8732096 9.5820312 7.0819499 9.5820312 7.328125 C 9.5820312 7.6682943 9.5678711 8.1804199 9.5410156 8.8652344 C 9.5186361 9.5455729 9.5078125 10.054362 9.5078125 10.394531 C 9.5078125 10.506429 9.4922689 10.721273 9.4609375 11.039062 C 9.434082 11.334473 9.4232585 11.562093 9.4277344 11.71875 L 12.005859 11.234375 C 13.012939 11.055339 13.879801 10.952637 14.609375 10.925781 C 14.627279 10.625895 14.656982 9.8212077 14.697266 8.5097656 C 14.706217 8.1651204 14.812256 7.7679036 15.013672 7.3203125 C 15.264323 6.7697754 15.547445 6.4941406 15.865234 6.4941406 C 16.102458 6.4941406 16.312581 6.5738118 16.496094 6.7304688 C 16.693034 6.9005534 16.791016 7.1120605 16.791016 7.3671875 C 16.791016 7.4343262 16.783529 7.5012207 16.765625 7.5683594 C 16.676107 7.8951009 16.630859 8.1801758 16.630859 8.421875 C 16.630859 8.5472005 16.616699 8.7417806 16.589844 9.0058594 C 16.567464 9.2654622 16.556641 9.4586589 16.556641 9.5839844 C 16.556641 10.009196 16.534993 10.639567 16.490234 11.476562 C 16.445475 12.313558 16.421875 12.943929 16.421875 13.369141 C 16.421875 13.695882 16.446859 14.184977 16.496094 14.833984 C 16.545329 15.482992 16.570312 15.970133 16.570312 16.296875 C 16.570312 16.54305 16.483154 16.75179 16.308594 16.921875 C 16.134033 17.09196 15.917806 17.175781 15.658203 17.175781 C 15.394124 17.175781 15.16512 17.09196 14.972656 16.921875 C 14.780192 16.756266 14.683594 16.552246 14.683594 16.310547 C 14.683594 15.983805 14.66805 15.493327 14.636719 14.839844 C 14.609863 14.186361 14.595703 13.695882 14.595703 13.369141 C 14.595703 13.114014 14.600423 12.888346 14.609375 12.691406 C 13.906657 12.722738 13.039795 12.833496 12.005859 13.021484 C 11.146484 13.178141 10.287109 13.336914 9.4277344 13.498047 C 9.4187826 13.802409 9.3857422 14.309814 9.3320312 15.021484 C 9.2872721 15.648112 9.265625 16.160238 9.265625 16.558594 C 9.265625 16.804769 9.1784668 17.013509 9.0039062 17.183594 C 8.8293457 17.353678 8.6131185 17.4375 8.3535156 17.4375 C 8.0939128 17.4375 7.8757324 17.353678 7.7011719 17.183594 C 7.5266113 17.013509 7.4394531 16.804769 7.4394531 16.558594 C 7.4394531 16.106527 7.4766439 15.430908 7.5527344 14.53125 C 7.6333008 13.631592 7.6738281 12.955973 7.6738281 12.503906 C 7.6738281 11.93099 7.6879883 11.068278 7.7148438 9.9179688 C 7.7416992 8.7631836 7.7558594 7.9010417 7.7558594 7.328125 C 7.7558594 7.0819499 7.8430176 6.8732096 8.0175781 6.703125 C 8.1921387 6.5330404 8.4083659 6.4472656 8.6679688 6.4472656 z "
|
||||
id="path4" />
|
||||
</svg>
|
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 9.5 KiB |
|
@ -1,11 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32" viewBox="0 0 32 32">
|
||||
<defs>
|
||||
<polygon id="blade-a" points="0 0 23.998 0 23.998 16.944 0 16.944"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(4 6)">
|
||||
<mask id="blade-b" fill="#fff">
|
||||
<use xlink:href="#blade-a"/>
|
||||
</mask>
|
||||
<path fill="#D14748" d="M22.6251564,7.73149088 C22.4662886,7.76732872 19.8653791,8.43285574 19.8653791,8.43285574 L17.7381773,5.42264966 C17.6785949,5.33563953 17.62898,5.24857196 17.7778803,5.22812601 C17.9267805,5.20762264 20.3440427,4.7570652 20.4532399,4.73150777 C20.5624371,4.70595034 20.6567666,4.67522399 20.7907991,4.86463615 C20.9247759,5.05404831 22.7640891,7.45506858 22.8335833,7.5471902 C22.9030775,7.63936926 22.7840241,7.69565304 22.6251564,7.73149088 M22.1710497,12.9185584 C22.2359777,13.0238895 22.3009058,13.0909132 22.0967666,13.1674706 C21.8926274,13.244028 15.2104371,15.5700416 15.0805253,15.627474 C14.9506135,15.6849064 14.8485439,15.7040314 14.6814905,15.4551767 C14.5144371,15.206322 12.3404046,11.3257848 12.3404046,11.3257848 L19.4239128,9.42477128 C19.6002654,9.36733885 19.6559499,9.32903142 19.7673188,9.51091993 C19.8786877,9.69280845 22.1061216,12.8132274 22.1710497,12.9185584 M10.6989383,10.7008051 C10.6120705,10.7199875 6.54320742,11.7243659 6.32609374,11.7755956 C6.10898005,11.8267679 6.10898005,11.801153 6.08420046,11.7243659 C6.0593652,11.6475787 1.24639072,1.41185574 1.17956937,1.28389628 C1.11269234,1.15593682 1.11620046,1.05456858 1.17956937,1.05456858 C1.2428826,1.05456858 5.02224223,0.706126014 5.1559406,0.698889527 C5.28969466,0.691595608 5.2756065,0.720656419 5.32483155,0.807723986 C5.32483155,0.807723986 10.6555044,10.2978017 10.7485531,10.464126 C10.8416019,10.6303929 10.7857503,10.6816226 10.6989383,10.7008051 M23.9057318,7.91579155 C23.7469197,7.73149088 21.550168,4.8953625 21.1630497,4.41413615 C20.7759313,3.9329098 20.5872724,4.01991993 20.3489986,4.05575777 C20.1107248,4.09159561 17.3311796,4.57282196 17.0085439,4.62910574 C16.6859081,4.68544696 16.4824371,4.81857534 16.6809522,5.10522061 C16.8575276,5.36016318 18.684813,8.03209223 19.0873002,8.62054493 L11.8226506,10.4154807 L6.04510998,0.453078716 C5.81513318,0.1013625 5.76735592,-0.0215429054 5.24392204,0.00303817568 C4.72048817,0.0275618243 0.7116529,0.371065203 0.426158701,0.395646284 C0.140608817,0.420227365 -0.172783295,0.551288176 0.112710905,1.2465652 C0.398260789,1.94184223 4.95096613,12.0604605 5.07781531,12.3549166 C5.20472019,12.6493726 5.53465058,13.1270956 6.30716102,12.9356733 C7.09860418,12.7395416 9.84323527,12.0006733 11.342929,11.5956024 C12.1353745,13.0756361 13.7515044,16.0779166 14.0503629,16.5080855 C14.4493977,17.0824098 14.7240334,16.9874166 15.3366181,16.7959943 C15.8148919,16.6464976 22.8206645,14.0480821 23.1362283,13.9140922 C23.4517921,13.7801024 23.6466877,13.6843625 23.4331935,13.3588929 C23.276219,13.1196294 21.4281077,10.5660111 20.4600891,9.23007534 C21.1230682,9.04807196 23.4806367,8.40075101 23.7319963,8.33045372 C24.0248408,8.24855507 24.0645995,8.10009223 23.9057318,7.91579155" mask="url(#blade-b)"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 8 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<path fill="#6A9FB5" fill-rule="evenodd" d="M13.3514769,4.71604632 C12.6889957,3.99838351 12.0477576,3.51994881 11.4277431,3.28072787 C10.8077287,3.04150694 10.1834769,2.92189826 9.55496917,2.92189826 C8.62070084,2.92189826 7.77562535,3.08849606 7.01971735,3.42169665 C6.26380934,3.75489724 5.61407793,4.21624498 5.07050364,4.80575372 C4.52692934,5.39526246 4.1065149,6.08301234 3.80924771,6.86902399 C3.51198051,7.65503564 3.36334915,8.50083983 3.36334915,9.40646195 C3.36334915,10.3804329 3.51198051,11.277498 3.80924771,12.097684 C4.1065149,12.9178701 4.52692934,13.6269787 5.07050364,14.225031 C5.61407793,14.8230834 6.26380934,15.2929746 7.01971735,15.6347188 C7.77562535,15.976463 8.62070084,16.1473325 9.55496917,16.1473325 C10.2853971,16.1473325 10.9945811,15.9721912 11.6825423,15.6219034 C12.3705035,15.2716156 13.0117417,14.7120179 13.6062761,13.9430935 L16.2561875,15.8397643 C15.4408261,16.9675201 14.4471192,17.7876939 13.2750372,18.3003102 C12.1029551,18.8129265 10.8544516,19.0692308 9.52948925,19.0692308 C8.13658011,19.0692308 6.85835035,18.8428286 5.69476162,18.3900176 C4.53117289,17.9372065 3.52897282,17.2964458 2.68813133,16.4677161 C1.84728983,15.6389864 1.18906521,14.6436714 0.713437698,13.4817411 C0.237810188,12.3198108 -1.42108547e-14,11.0297459 -1.42108547e-14,9.61150744 C-1.42108547e-14,8.15909461 0.237810188,6.83912746 0.713437698,5.65156638 C1.18906521,4.4640053 1.84728983,3.4516033 2.68813133,2.61433002 C3.52897282,1.77705675 4.53117289,1.13202425 5.69476162,0.679213193 C6.85835035,0.226402134 8.13658011,-5.32907052e-15 9.52948925,-5.32907052e-15 C10.7525314,-5.32907052e-15 11.8863764,0.217858657 12.9310583,0.653582506 C13.9757401,1.08930636 14.9482139,1.82831709 15.8485089,2.87063689 L13.3514769,4.71604632 Z" transform="translate(8 6)"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="certificate.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M4,3C2.89,3 2,3.89 2,5V15A2,2 0 0,0 4,17H12V22L15,19L18,22V17H20A2,2 0 0,0 22,15V8L22,6V5A2,2 0 0,0 20,3H16V3H4M12,5L15,7L18,5V8.5L21,10L18,11.5V15L15,13L12,15V11.5L9,10L12,8.5V5M4,5H9V7H4V5M4,9H7V11H4V9M4,13H9V15H4V13Z"
|
||||
id="path4"
|
||||
style="fill:#ff5722;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="history.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="-5.1355932"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M11,7V12.11L15.71,14.9L16.5,13.62L12.5,11.25V7M12.5,2C8.97,2 5.91,3.92 4.27,6.77L2,4.5V11H8.5L5.75,8.25C6.96,5.73 9.5,4 12.5,4A7.5,7.5 0 0,1 20,11.5A7.5,7.5 0 0,1 12.5,19C9.23,19 6.47,16.91 5.44,14H3.34C4.44,18.03 8.11,21 12.5,21C17.74,21 22,16.75 22,11.5A9.5,9.5 0 0,0 12.5,2Z"
|
||||
id="path4"
|
||||
style="fill:#90A959;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,57 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="clojure.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="19.666667"
|
||||
inkscape:cx="15.322523"
|
||||
inkscape:cy="13.110078"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
style="fill:#6A9FB5;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="M 3.3554688 1.7792969 C 2.5103841 1.7792969 1.8300781 2.4596028 1.8300781 3.3046875 L 1.8300781 20.746094 C 1.8300781 21.591178 2.5103841 22.271484 3.3554688 22.271484 L 20.796875 22.271484 C 21.64196 22.271484 22.322266 21.591178 22.322266 20.746094 L 22.322266 3.3046875 C 22.322266 2.4596028 21.64196 1.7792969 20.796875 1.7792969 L 3.3554688 1.7792969 z M 9.5234375 4.3515625 L 11.486328 4.3515625 L 17.853516 19.283203 L 15.929688 19.283203 L 12.550781 11.197266 L 9.2011719 19.283203 L 7.2089844 19.283203 L 11.554688 8.9023438 L 9.5234375 4.3515625 z "
|
||||
id="rect4150" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2.1 KiB |
|
@ -1,65 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="cmake.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="32"
|
||||
inkscape:cx="15.913446"
|
||||
inkscape:cy="14.927602"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
style="opacity:1;fill:#1e88e5;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="m 11.989283,2.9650363 -9.01161,18.0334917 9.87447,-8.470122 -0.86286,-9.5633697 z"
|
||||
id="rect4185"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:#e53935;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="m 12.007065,2.9629282 0.0024,0.2905597 1.311546,14.4977811 -0.0015,0.0059 0.02303,0.25978 7.362879,2.97857 0.415288,7.25e-4 -0.157942,-0.311375 -0.114064,-0.227655 -0.0015,-2e-6 -8.840215,-17.494251 z"
|
||||
id="rect4251"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:#7cb342;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="m 8.6074266,16.110238 -5.6276702,4.88514 17.7429376,0 0,-0.01615 L 8.6074266,16.11023 Z"
|
||||
id="rect4251-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<polygon fill="#8251A8" fill-rule="nonzero" points="8 23 17 14 8 5 5 8 11 14 5 20"/>
|
||||
<polygon fill="#AA759F" points="17 20 29 20 29 23 17 23 17 20"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 294 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<path fill="#AB7558" fill-rule="evenodd" d="M17.1731043,6.16656367 C18.2683983,5.89676504 20.4589863,5.9636751 21.486372,6.30254217 C23.6090518,7.04502798 23.6090518,8.86670828 21.486372,9.33723708 C19.6375158,9.67394576 17.4469278,9.27032702 17.4469278,8.46093115 C17.4469278,8.05515402 18.20049,7.92133391 18.748137,8.25804259 C19.3636923,8.73072977 20.8029086,8.66381972 21.3505556,8.19113253 C21.9661108,7.71844534 21.7623861,7.38173666 20.5969933,7.1788481 C19.4316005,6.97595953 17.5849348,7.44864672 15.8039868,8.32495265 C14.5027775,8.93145995 14.0230388,9.06743846 12.8598365,9.13434851 C11.352712,9.13434851 10.6013403,8.93145995 9.98359451,8.18897414 C9.64186278,7.85226546 9.64186278,7.71628695 9.77767924,7.24359977 C10.1895098,6.50111396 12.2420907,6.09749522 13.1314694,6.63709246 C13.6112082,6.97380115 13.2694765,7.10977965 12.1040837,7.10977965 C10.7349662,7.04286959 10.1873192,7.37957827 10.667058,7.85226546 C11.0788885,8.3918627 12.7218295,8.25804259 13.8850317,7.6493769 C16.0077115,6.57018241 16.4173514,6.36729384 17.1709137,6.16440528 L17.1731043,6.16656367 Z M4.92114567,8.05515402 C5.74261616,7.51555678 6.08434789,7.44864672 5.81052439,7.91917552 C5.67251735,8.05515402 5.67251735,8.3918627 5.67251735,8.59475127 C5.87843262,9.33723708 8.68457583,10.2804531 11.2869944,10.5502517 C12.0405566,10.6171617 12.9299354,10.6862302 13.2716671,10.7531402 C14.0252293,10.8200503 18.8861441,10.8200503 20.4589863,10.6862302 C24.772254,10.4164316 28.1939525,9.27032702 27.8522207,8.19113253 C27.5783972,7.44864672 28.467776,7.92133391 28.9475147,8.79763983 C29.15343,9.20341696 28.7415994,9.87683432 27.920129,10.2826115 C27.2344749,10.6883886 24.5663387,11.428716 23.538953,11.4977844 C23.1972213,11.5646945 22.3757508,11.700673 21.7580049,11.7675831 C20.3888874,11.9704716 12.995653,11.9704716 11.4885285,11.7675831 C9.15993342,11.4977844 8.47646997,11.3618059 6.90143721,10.8912771 C5.12048917,10.3516799 4.02519518,9.54228403 4.16320222,8.93577673 C4.16320222,8.66597811 4.50493395,8.26020098 4.91676449,8.0594708 L4.92114567,8.05515402 Z M4.4414069,11.8323347 C4.30339985,11.0898489 4.37349867,10.9560288 4.57941394,11.2258274 C4.85323744,11.6316046 7.18183247,12.5748205 8.13911942,12.7107991 C8.48085115,12.7777091 8.96058992,12.8467776 9.23441341,12.9136876 C11.1511779,13.3863748 19.5038899,13.5201949 22.1041178,13.1834862 C25.3899998,12.7777091 27.7185949,12.1042917 28.4699665,11.428716 C28.9497053,11.0229389 28.9497053,11.0229389 28.9497053,11.3618059 C28.9497053,12.1042917 27.9223195,15.2749652 27.2388561,16.8246884 C26.8270255,17.6340843 25.9376468,19.0499875 25.1840846,20.0622719 C24.4305223,21.0745563 23.67696,22.3566394 23.5411436,22.8962366 C22.7196731,25.1906041 20.938725,26 16.6276479,26 C12.3822884,26 10.6714391,25.2575142 9.84996864,23.0322152 C9.64405337,22.4926179 8.82258287,21.0767147 8.0690206,19.9975202 C7.24755011,18.9183258 6.42607961,17.6362427 6.15225611,17.1635555 C5.94634084,16.6908683 5.67251735,16.2872496 5.67251735,16.2872496 C5.60460912,16.2872496 5.39869385,16.5570482 5.19277858,16.8268468 C4.71303981,17.5693326 4.64513158,19.1212143 5.05477153,20.1313404 C5.5345103,21.2774449 6.97153602,22.4926179 7.99892179,22.626438 C9.30013105,22.8962366 8.68457583,23.2329453 6.97153602,23.3020138 C5.67032676,23.3689238 5.46441149,23.3020138 4.78094803,22.7624165 C3.34392231,21.7501321 3,21.0767147 3,19.3219445 C3,18.0398614 3.06790823,17.7031528 3.547647,16.960667 C3.8214705,16.5548898 4.30120926,15.9483825 4.64294099,15.6116738 L5.25849622,15.1389867 L4.91676449,13.9238137 C4.71084922,13.3173064 4.50493395,12.371932 4.43702572,11.8323347 L4.4414069,11.8323347 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.6 KiB |
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="none" transform="translate(6 4)">
|
||||
<path fill="#F4BF75" d="M21,0 L1,0 C0.447,0 0,0.448 0,1 L0,23 C0,23.552 0.447,24 1,24 L21,24 C21.553,24 22,23.552 22,23 L22,1 C22,0.448 21.553,0 21,0 Z M19,21 L3,21 L3,3 L6,3 L6,6 L9,6 C9,4.895 9.895,4 11,4 C12.105,4 13,4.895 13,6 L16,6 L16,3 L19,3 L19,21 Z"/>
|
||||
<path fill="#D28445" d="M10,17 C9.744,17 9.488,16.902 9.293,16.707 L6.586,14 L8,12.586 L10,14.586 L14,10.586 L15.414,12 L10.707,16.707 C10.512,16.902 10.256,17 10,17 Z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 583 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<path fill="#AA759F" fill-rule="evenodd" d="M28.0871913,5 L4.91280873,5 C4.38800912,5 3.93760946,5.18581046 3.56160975,5.55743138 C3.18561003,5.9290523 2.99841017,6.38802002 3.00001017,6.93433454 L3.00001017,26.0656655 C3.00001017,26.61198 3.18721003,27.0709477 3.56160975,27.4425686 C3.93600946,27.8141895 4.38640913,28 4.91280873,28 L28.0871913,28 C28.6119909,28 29.0623905,27.8141895 29.4383903,27.4425686 C29.81439,27.0709477 30.0015898,26.61198 29.9999898,26.0656655 L29.9999898,6.93433454 C29.9999898,6.38802002 29.81279,5.9290523 29.4383903,5.55743138 C29.0639905,5.18581046 28.6135909,5 28.0871913,5 L28.0871913,5 L28.0871913,5 Z M6.86400726,18.3997929 L10.7256043,14.6025893 L6.86400726,10.769653 L8.77680582,8.8329363 L14.5896014,14.6025893 L8.77680582,20.3341274 L6.86400726,18.3974107 L6.86400726,18.3997929 Z M22.3127956,20.3341274 L14.5872014,20.3341274 L14.5872014,18.3974107 L22.3127956,18.3974107 L22.3127956,20.3341274 L22.3127956,20.3341274 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1 KiB |
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="none" transform="translate(7 3)">
|
||||
<path fill="#F4BF75" d="M19,3 L17,3 L17,8 L3,8 L3,3 L1,3 C0.447,3 0,3.447 0,4 L0,23 C0,23.553 0.447,24 1,24 L19,24 C19.553,24 20,23.553 20,23 L20,4 C20,3.447 19.553,3 19,3 Z M16,19 L4,19 L4,17 L16,17 L16,19 Z M16,14 L4,14 L4,12 L16,12 L16,14 Z"/>
|
||||
<path fill="#D28445" d="M12,2 C12,0.895 11.105,0 10,0 C8.895,0 8,0.895 8,2 L5,2 L5,6 L15,6 L15,2 L12,2 Z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 506 B |
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="#6A9FB5" fill-rule="evenodd" transform="translate(4 6)">
|
||||
<path d="M4.24568593,5.61681192 L3.03186472,5.61681192 L3.03186472,3.81370197 L1.22995184,3.81370197 L1.22995184,2.5737681 L3.03186472,2.5737681 L3.03186472,0.761193008 L4.24568593,0.761193008 L4.24568593,2.5737681 L6.05700828,2.5737681 L6.05700828,3.81370197 L4.24568593,3.81370197 L4.24568593,5.61681192 Z M9.86313758,5.61681192 L8.64931637,5.61681192 L8.64931637,3.81370197 L6.84740349,3.81370197 L6.84740349,2.5737681 L8.64931637,2.5737681 L8.64931637,0.761193008 L9.86313758,0.761193008 L9.86313758,2.5737681 L11.6744599,2.5737681 L11.6744599,3.81370197 L9.86313758,3.81370197 L9.86313758,5.61681192 Z" transform="translate(13.765 6.154)"/>
|
||||
<path d="M14.5693533,4.71604632 C13.9068721,3.99838351 13.2656339,3.51994881 12.6456195,3.28072787 C12.025605,3.04150694 11.4013533,2.92189826 10.7728455,2.92189826 C9.83857719,2.92189826 8.9935017,3.08849606 8.23759369,3.42169665 C7.48168568,3.75489724 6.83195428,4.21624498 6.28837998,4.80575372 C5.74480568,5.39526246 5.32439124,6.08301234 5.02712405,6.86902399 C4.72985686,7.65503564 4.58122549,8.50083983 4.58122549,9.40646195 C4.58122549,10.3804329 4.72985686,11.277498 5.02712405,12.097684 C5.32439124,12.9178701 5.74480568,13.6269787 6.28837998,14.225031 C6.83195428,14.8230834 7.48168568,15.2929746 8.23759369,15.6347188 C8.9935017,15.976463 9.83857719,16.1473325 10.7728455,16.1473325 C11.5032735,16.1473325 12.2124574,15.9721912 12.9004186,15.6219034 C13.5883799,15.2716156 14.229618,14.7120179 14.8241524,13.9430935 L17.4740639,15.8397643 C16.6587024,16.9675201 15.6649956,17.7876939 14.4929135,18.3003102 C13.3208314,18.8129265 12.0723279,19.0692308 10.7473656,19.0692308 C9.35445646,19.0692308 8.0762267,18.8428286 6.91263797,18.3900176 C5.74904924,17.9372065 4.74684916,17.2964458 3.90600767,16.4677161 C3.06516618,15.6389864 2.40694155,14.6436714 1.93131404,13.4817411 C1.45568653,12.3198108 1.21787634,11.0297459 1.21787634,9.61150744 C1.21787634,8.15909461 1.45568653,6.83912746 1.93131404,5.65156638 C2.40694155,4.4640053 3.06516618,3.4516033 3.90600767,2.61433002 C4.74684916,1.77705675 5.74904924,1.13202425 6.91263797,0.679213193 C8.0762267,0.226402134 9.35445646,-5.32907052e-15 10.7473656,-5.32907052e-15 C11.9704078,-5.32907052e-15 13.1042528,0.217858657 14.1489346,0.653582506 C15.1936165,1.08930636 16.1660903,1.82831709 17.0663852,2.87063689 L14.5693533,4.71604632 Z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.5 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="credits.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="733"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M3,3H21V5H3V3M7,7H17V9H7V7M3,11H21V13H3V11M7,15H17V17H7V15M3,19H21V21H3V19Z"
|
||||
id="path4"
|
||||
style="fill:#9ccc65;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="csharp.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="-4.9322034"
|
||||
inkscape:cy="11.79661"
|
||||
inkscape:window-x="142"
|
||||
inkscape:window-y="69"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M11.5,15.97L11.91,18.41C11.65,18.55 11.23,18.68 10.67,18.8C10.1,18.93 9.43,19 8.66,19C6.45,18.96 4.79,18.3 3.68,17.04C2.56,15.77 2,14.16 2,12.21C2.05,9.9 2.72,8.13 4,6.89C5.32,5.64 6.96,5 8.94,5C9.69,5 10.34,5.07 10.88,5.19C11.42,5.31 11.82,5.44 12.08,5.59L11.5,8.08L10.44,7.74C10.04,7.64 9.58,7.59 9.05,7.59C7.89,7.58 6.93,7.95 6.18,8.69C5.42,9.42 5.03,10.54 5,12.03C5,13.39 5.37,14.45 6.08,15.23C6.79,16 7.79,16.4 9.07,16.41L10.4,16.29C10.83,16.21 11.19,16.1 11.5,15.97M13.89,19L14.5,15H13L13.34,13H14.84L15.16,11H13.66L14,9H15.5L16.11,5H18.11L17.5,9H18.5L19.11,5H21.11L20.5,9H22L21.66,11H20.16L19.84,13H21.34L21,15H19.5L18.89,19H16.89L17.5,15H16.5L15.89,19H13.89M16.84,13H17.84L18.16,11H17.16L16.84,13Z"
|
||||
id="path4"
|
||||
style="fill:#78909C;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2.2 KiB |
|
@ -1,60 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="css-map.svg">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M18 8v2h2v10H10v-2H8v4h14V8h-4z"
|
||||
fill="#F4BF75"
|
||||
id="path4"
|
||||
style="fill:#6A9FB5;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#6A9FB5"
|
||||
d="m 4.675933,3.0000001 -0.488419,2.5097175 10.211695,0 -0.330622,1.6230508 -10.20418,0 -0.495932,2.5022034 10.211694,0 -0.571073,2.8628802 -4.11774,1.360057 -3.569209,-1.360057 0.247966,-1.232316 -2.509717,0 -0.593616,3.00565 5.8985873,2.254237 6.8002817,-2.254237 0.901695,-4.5310167 0.180339,-0.9092088 1.157176,-5.8309604 -12.728926,0 z"
|
||||
id="path4-3" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="language-css3.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M5,3L4.35,6.34H17.94L17.5,8.5H3.92L3.26,11.83H16.85L16.09,15.64L10.61,17.45L5.86,15.64L6.19,14H2.85L2.06,18L9.91,21L18.96,18L20.16,11.97L20.4,10.76L21.94,3H5Z"
|
||||
id="path4"
|
||||
style="fill:#6A9FB5;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,86 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="dart.svg">
|
||||
<title
|
||||
id="title4136">Dart</title>
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Dart</dc:title>
|
||||
<dc:date></dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Philipp Kief</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:zoom="17.234083"
|
||||
inkscape:cx="2.1453363"
|
||||
inkscape:cy="9.8397594"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
style="opacity:1;fill:#00ca94;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="m 12.486361,1.384761 c -0.245735,0 -0.492113,0.095798 -0.682164,0.2813048 -0.0029,0.00283 -0.0065,0.00415 -0.0094,0.00703 l -6.3879804,3.6921244 6.3715544,6.3715524 0,0.0047 7.658522,7.658523 1.460441,-2.6302 L 15.632286,4.1298269 13.175558,1.6730985 C 12.984385,1.4819262 12.735851,1.384761 12.486361,1.384761 Z"
|
||||
id="rect4187"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:#1565c0;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="M 5.421704,5.3504147 1.7310405,11.732818 c -0.00288,0.0029 -0.00415,0.0065 -0.00703,0.0094 -0.1855375,0.190016 -0.281859,0.438529 -0.2819018,0.684264 -4.34e-5,0.24949 0.0966,0.495898 0.2877378,0.687104 l 3.0588629,3.061854 11.9630666,4.705891 2.704185,-1.502619 -0.0726,-0.07271 -0.01876,0.0024 -7.49959,-7.512691 -0.0094,-1.3e-5 -6.4339128,-6.4451528 z"
|
||||
id="path4245"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:#1565c0;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
d="m 5.4049545,5.353474 6.5181635,6.524994 0.0094,7e-6 7.502217,7.510074 2.855529,-0.544702 0.0043,-8.448522 -3.015428,-2.9552747 C 18.618822,6.7927065 17.603838,6.3755278 16.583994,6.2384051 l 0.0024,-0.032819 L 5.4049821,5.3534726 Z"
|
||||
id="rect4247"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4289"
|
||||
d="m 5.4135398,5.3609508 6.5215762,6.5215762 0,0.0094 7.506148,7.506149 -0.5462,2.855243 -8.448517,0 -2.9536959,-3.016993 C 6.8458531,18.575566 6.4292063,17.560366 6.2926173,16.54045 L 6.2598033,16.54285 5.4135446,5.3609928 Z"
|
||||
style="opacity:1;fill:#00ee94;fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
Before Width: | Height: | Size: 3.5 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="database.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M12,3C7.58,3 4,4.79 4,7C4,9.21 7.58,11 12,11C16.42,11 20,9.21 20,7C20,4.79 16.42,3 12,3M4,9V12C4,14.21 7.58,16 12,16C16.42,16 20,14.21 20,12V9C20,11.21 16.42,13 12,13C7.58,13 4,11.21 4,9M4,14V17C4,19.21 7.58,21 12,21C16.42,21 20,19.21 20,17V14C20,16.21 16.42,18 12,18C7.58,18 4,16.21 4,14Z"
|
||||
id="path4"
|
||||
style="fill:#F4BF75;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
||||
<path fill="#AC4142" d="M25.7086393,7 L25.7086393,7 C26.9744959,7 28,8.14370865 28,9.55564165 L28,22.4443583 C28,23.8552185 26.9744959,25 25.7086393,25 L6.29136066,25 C5.02550407,25 4,23.8552185 4,22.4443583 L4,9.55564165 C4,8.14370865 5.02550407,7 6.29136066,7 L25.7086393,7 Z M24.2718654,13.7002444 L24.2707972,13.7002444 L24.2707972,13.6959528 C24.2686607,11.9331823 22.7154493,10.5051559 20.8011751,10.5062288 C19.8792896,10.5073017 19.0417946,10.8409728 18.421151,11.3817131 C17.8881026,10.9375335 17.2781413,10.5706026 16.5976766,10.284139 C15.3435706,9.74983609 13.707037,9.50736127 11.6784617,9.51057996 L6.75390573,9.51809024 C6.73254106,9.51809024 6.71224463,9.51594445 6.69194819,9.51809024 C6.45052744,9.54813137 6.26145013,9.7423258 6.26038189,9.97621744 L6.27533716,21.9347321 C6.27426893,21.9518984 6.27426893,21.9690648 6.27533716,21.9862311 C6.27213246,22.0151994 6.27213246,22.039876 6.27533716,22.0677714 L6.27533716,22.0795732 C6.27854186,22.0903022 6.28495126,22.1021041 6.28815596,22.1139059 L6.28815596,22.1192704 C6.29136066,22.1310723 6.29136066,22.1428742 6.29456536,22.154676 L6.29456536,22.1664779 C6.29990653,22.1772069 6.30631593,22.1890088 6.31272533,22.2008106 L6.31272533,22.2061751 C6.3212712,22.217977 6.33409,22.2297789 6.3437041,22.2405078 L6.3437041,22.2458723 C6.34904527,22.2587471 6.35545467,22.270549 6.36186407,22.2812779 L6.36186407,22.2930798 C6.37361463,22.301663 6.38643344,22.3081004 6.39925224,22.3156107 L6.39925224,22.3274125 C6.4077981,22.3359957 6.4142075,22.3413602 6.42382161,22.3499434 C6.42702631,22.3531621 6.43343571,22.3585266 6.43664041,22.3617452 C6.44518627,22.3703284 6.45159567,22.3767658 6.46120977,22.3842761 L6.46761917,22.3842761 C6.49005208,22.4035882 6.51568968,22.4218275 6.54132728,22.4368481 L6.55414608,22.4368481 C6.56589665,22.4422126 6.57871545,22.4486499 6.59153425,22.4540144 L6.59794365,22.4540144 C6.60969422,22.4604518 6.62251302,22.4658163 6.63533182,22.4711808 C6.65349179,22.4743995 6.67271999,22.4754724 6.69087996,22.4765453 C6.72079049,22.4819098 6.75283749,22.4883471 6.78381626,22.4883471 L11.3932434,22.4701079 C12.6964882,22.4679621 13.5692349,22.4454312 14.0894645,22.3799845 L14.1012151,22.3799845 C14.5990119,22.3102462 15.1267192,22.1825714 15.6992923,21.9958872 C16.6959541,21.6826012 17.5793831,21.2201824 18.338897,20.6032664 C19.0834557,20.0045896 19.6592335,19.2975502 20.064094,18.5003874 C20.3279477,17.9811051 20.5052744,17.4414377 20.5971425,16.8878226 C20.6665776,16.8921142 20.7370811,16.89426 20.8075845,16.89426 C22.722927,16.8931871 24.2729336,15.4630148 24.2718654,13.7002444 Z M15.0231005,13.0962031 L15.0220323,13.097276 C15.9834424,13.8365024 16.4374416,14.7248614 16.4385098,15.9018299 C16.4417145,17.1056208 16.0037388,18.044406 15.0668981,18.8308398 C14.7795433,19.070096 14.4590733,19.2728736 14.105488,19.4402456 C13.771131,19.5958157 13.3352918,19.7310008 12.7851516,19.8468737 C12.2670584,19.9509447 11.4787021,20.011027 10.453198,20.0120999 L8.2686607,20.0153186 L8.25797837,11.978244 L10.3805582,11.9750253 C11.372947,11.9728795 12.077981,12.0039936 12.4785686,12.0587113 C12.8844973,12.114502 13.3288824,12.2325207 13.7999733,12.4149133 C14.2667913,12.5930142 14.6737882,12.8118853 15.0231005,13.0844013 L15.0231005,13.0962031 Z M25.8699426,10.1929427 L25.8699426,10.1918698 C25.8688743,9.62537998 25.3700093,9.16617989 24.7547069,9.16725279 C24.1394045,9.16832568 23.6416077,9.62752578 23.6416077,10.1940156 L23.6416077,10.1950885 C23.6426759,10.7615784 24.1415409,11.2207784 24.7568434,11.2197055 C25.3721458,11.2186327 25.8699426,10.7594326 25.8699426,10.1929427 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.6 KiB |
|
@ -1,39 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1"
|
||||
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="docker.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 500 500"
|
||||
style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_2_);}
|
||||
.st1{clip-path:url(#SVGID_4_);fill:#6A9FB5;}
|
||||
</style>
|
||||
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview4" inkscape:current-layer="svg2" inkscape:cx="250" inkscape:cy="247.88136" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="729" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.472" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M156.6,308.9c-6.1,0-11,5-11,11.1c0,6.1,4.9,11.1,11,11.1c6.1,0,11-5,11-11.1
|
||||
C167.6,313.9,162.7,308.9,156.6,308.9z M257.2,203.7L257.2,203.7v40.2H297v-40.2H257.2z M211.2,111v40.2H251V111H211.2z
|
||||
M211.2,157.3v40.2H251v-40.2H211.2z M211.2,203.7v40.2H251v-40.2H211.2z M165.2,157.3v40.2h39.8v-40.2H165.2z M165.2,203.7v40.2
|
||||
h39.8v-40.2H165.2z M119.3,203.7v40.2h39.8v-40.2H119.3z M119.3,157.3v40.2h39.8v-40.2H119.3z M73.3,203.7v40.2h39.8v-40.2H73.3z
|
||||
M185.8,388.7c-27.2-13-42.2-30.7-50.5-50c-10.1,2.9-22.3,4.8-36.4,5.6c-5.3,0.3-10.9,0.5-16.8,0.5c-6.8,0-13.9-0.2-21.4-0.6
|
||||
c25,25.1,55.7,44.5,112.5,44.9C177.5,389,181.7,388.9,185.8,388.7z M304.7,195.9v47.4h23.2c10.7,0,21.8-1.9,31.9-5.4
|
||||
c5-1.7,10.6-4.1,15.5-7.1c-6.5-8.5-9.8-19.3-10.8-29.9c-1.3-14.5,1.6-33.3,11.3-44.6l4.8-5.6l5.8,4.7
|
||||
c14.5,11.7,26.7,28.1,28.8,46.8c17.5-5.2,38-4,53.3,5l6.3,3.7l-3.3,6.5c-13,25.6-40.2,33.5-66.8,32.1
|
||||
C365,349.4,278.4,396.7,173.3,396.7c-54.3,0-104.1-20.4-132.4-69l-4.6-9.3c-9.6-21.4-12.8-44.8-10.6-68.1l0.6-7h39.3V196h46v-46.3
|
||||
h91.9v-46.3h55.2v92.7H304.7z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st0">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="-73.4" y="-14.4" width="626.8" height="626.8"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect x="-72.9" y="5.4" class="st1" width="645.9" height="489.3"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="file-document.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="20.962532"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M13,9H18.5L13,3.5V9M6,2H14L20,8V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V4C4,2.89 4.89,2 6,2M15,18V16H6V18H15M18,14V12H6V14H18Z"
|
||||
id="path4"
|
||||
style="fill:#6A9FB5;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="33px" height="32px" viewBox="0 0 33 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>dotnet</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Icons-Table" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="dotnet" fill="#6A9FB5">
|
||||
<path d="M8.67773438,18.4638672 L5.40234375,18.4638672 L4.95166016,20 L2.01269531,20 L5.51025391,10.6943359 L8.64599609,10.6943359 L12.1435547,20 L9.13476562,20 L8.67773438,18.4638672 Z M8.07470703,16.4516602 L7.04638672,13.1064453 L6.02441406,16.4516602 L8.07470703,16.4516602 Z M12.5625,16.9213867 L15.2983398,16.75 C15.3575849,17.1943382 15.4781892,17.5328764 15.6601562,17.765625 C15.9563817,18.1422545 16.3795545,18.3305664 16.9296875,18.3305664 C17.3401713,18.3305664 17.656493,18.2342946 17.8786621,18.041748 C18.1008312,17.8492015 18.2119141,17.6259778 18.2119141,17.3720703 C18.2119141,17.1308582 18.1061208,16.91504 17.8945312,16.7246094 C17.6829417,16.5341787 17.1920611,16.3543303 16.421875,16.1850586 C15.160801,15.9015285 14.2615587,15.5249047 13.7241211,15.0551758 C13.1824517,14.5854469 12.9116211,13.9866573 12.9116211,13.2587891 C12.9116211,12.7805966 13.0502102,12.3288595 13.3273926,11.9035645 C13.604575,11.4782694 14.0214002,11.1439628 14.5778809,10.9006348 C15.1343615,10.6573067 15.8971306,10.5356445 16.8662109,10.5356445 C18.0553445,10.5356445 18.9619923,10.7567523 19.5861816,11.1989746 C20.210371,11.6411969 20.5817051,12.3447217 20.7001953,13.3095703 L17.9897461,13.4682617 C17.9178056,13.0493143 17.7665213,12.7446299 17.5358887,12.5541992 C17.305256,12.3637686 16.9868184,12.2685547 16.5805664,12.2685547 C16.2462548,12.2685547 15.994467,12.3394361 15.8251953,12.4812012 C15.6559236,12.6229662 15.5712891,12.7954091 15.5712891,12.9985352 C15.5712891,13.1466479 15.6411126,13.2799473 15.7807617,13.3984375 C15.9161791,13.5211595 16.2377904,13.6354161 16.7456055,13.7412109 C18.0024477,14.0120456 18.9027479,14.28605 19.4465332,14.5632324 C19.9903185,14.8404148 20.3859851,15.1842427 20.6335449,15.5947266 C20.8811048,16.0052104 21.0048828,16.4643529 21.0048828,16.972168 C21.0048828,17.5688506 20.8398454,18.1189753 20.5097656,18.6225586 C20.1796858,19.1261418 19.7184274,19.5080553 19.1259766,19.7683105 C18.5335257,20.0285658 17.7866256,20.1586914 16.8852539,20.1586914 C15.3025637,20.1586914 14.206546,19.854007 13.597168,19.2446289 C12.9877899,18.6352509 12.642904,17.8608445 12.5625,16.9213867 Z M22.4394531,10.6943359 L27.2192383,10.6943359 C28.2602591,10.6943359 29.0399551,10.9418921 29.5583496,11.4370117 C30.0767441,11.9321314 30.3359375,12.6367142 30.3359375,13.5507812 C30.3359375,14.4902391 30.0534696,15.224444 29.4885254,15.753418 C28.9235812,16.282392 28.0613665,16.546875 26.9018555,16.546875 L25.3276367,16.546875 L25.3276367,20 L22.4394531,20 L22.4394531,10.6943359 Z M25.3276367,14.6616211 L26.0322266,14.6616211 C26.5865913,14.6616211 26.9759103,14.5653493 27.2001953,14.3728027 C27.4244803,14.1802562 27.5366211,13.933758 27.5366211,13.6333008 C27.5366211,13.3413071 27.4392913,13.093751 27.2446289,12.890625 C27.0499665,12.687499 26.683922,12.5859375 26.1464844,12.5859375 L25.3276367,12.5859375 L25.3276367,14.6616211 Z" id="ASP"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.3 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="email.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z"
|
||||
id="path4"
|
||||
style="fill:#6A9FB5;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="none" transform="translate(4 3)">
|
||||
<path fill="#8251A8" d="M10.1597031,26.9082205 L0.060734375,17.7163118 L2.88945313,4.28037262 L15.8057656,0.0363422053 L25.9047344,9.22814829 L23.0761172,22.6640875 L10.1597031,26.9081179 L10.1597031,26.9082205 Z M5.27596875,16.0076122 L11.2977109,21.4801939 L18.9989922,18.9449658 L20.6895,10.9369506 L14.6677578,5.45307605 L6.96647656,7.99959696 L5.27596875,16.0075095 L5.27596875,16.0076122 Z"/>
|
||||
<path fill="#AA759F" d="M18.4133828,22.9879848 L7.55208594,22.9879848 L2.11595312,13.4722814 L7.55208594,3.95657795 L18.4133828,3.95657795 L23.8495156,13.4722814 L18.4133828,22.9879848 Z M9.46359375,19.6374183 L16.501875,19.6374183 L20.0266016,13.4722814 L16.501875,7.30714449 L9.46359375,7.30714449 L5.9499375,13.4722814 L9.46359375,19.6374183 Z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 900 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<path fill="#8251A8" fill-rule="evenodd" d="M17.2036522,3 C15.1518261,11.1774194 25,13.7572903 25,19.3548387 C24.9975532,24.6805637 21.1934065,28.9972235 16.5,29 C11.8065935,28.9972235 8.00244682,24.6805637 8,19.3548387 C8,13.7572903 12.6018261,6.35483871 17.2036522,3 Z M12,25.3636364 C12,26.3636364 12.875,27.3636364 14.9375,27.3636364 C16.3125,27.3636364 17,26.9469697 17,26.1136364 C13.6666667,24.9469697 12,24.6969697 12,25.3636364 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 535 B |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="exe.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M19,4C20.11,4 21,4.9 21,6V18A2,2 0 0,1 19,20H5C3.89,20 3,19.1 3,18V6A2,2 0 0,1 5,4H19M19,18V8H5V18H19Z"
|
||||
id="path4"
|
||||
style="fill:#e64a19;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="star.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z"
|
||||
id="path4"
|
||||
style="fill:#ffd54f;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="file.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="-5.1355932"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M13,9V3.5L18.5,9M6,2C4.89,2 4,2.89 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2H6Z"
|
||||
id="path4"
|
||||
style="fill:#6A9FB5;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,7 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<g fill="none" fill-rule="evenodd" transform="translate(7 2)">
|
||||
<path fill="#AC4142" d="M0.988888889,17.632125 L3.61666667,0.518625 C3.65568196,0.258429388 3.85517461,0.0529399773 4.11144916,0.00896932403 C4.36772371,-0.0350013292 4.62294274,0.0924703085 4.74444444,0.325125 L7.57,5.6925 L0.988888889,17.632125 Z"/>
|
||||
<path fill="#F4BF75" d="M19.65,21.7845 L17.1477778,6.035625 C17.1102772,5.81059735 16.9520226,5.62549744 16.7374389,5.55567886 C16.5228553,5.48586029 16.2877284,5.5429666 16.1277778,5.70375 L0.35,21.7845 L9.08,26.766 C9.62752964,27.0774616 10.2958037,27.0774616 10.8433333,26.766 L19.65,21.7845 Z"/>
|
||||
<path fill="#D28445" d="M12.5555556,8.0415 L10.5333333,4.12425 C10.4293406,3.92347114 10.2239139,3.79768733 10,3.79768733 C9.77608612,3.79768733 9.57065941,3.92347114 9.46666667,4.12425 L0.588888889,20.232 L12.5555556,8.0415 Z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 957 B |
|
@ -1,90 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="flash.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4144">
|
||||
<stop
|
||||
style="stop-color:#d92f3c;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop4146" />
|
||||
<stop
|
||||
style="stop-color:#791223;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop4148" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4144"
|
||||
id="linearGradient4150"
|
||||
x1="2.3730025"
|
||||
y1="12.027124"
|
||||
x2="21.860387"
|
||||
y2="12.027124"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.08957076,-24.143819)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="705"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
showguides="false"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="-15.482892"
|
||||
inkscape:cy="13.199142"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient4150);fill-opacity:1;stroke:none;stroke-opacity:1"
|
||||
id="rect4142"
|
||||
width="19.487385"
|
||||
height="19.487385"
|
||||
x="2.2834318"
|
||||
y="-21.860388"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
ry="0" />
|
||||
<path
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 16.801822,5.7682291 c -0.0046,3.83e-4 -0.0087,0.00127 -0.01324,0.00165 -0.426592,0.03629 -0.830512,0.09268 -1.181269,0.191915 -0.554149,0.1660005 -1.053158,0.40447 -1.493959,0.7180267 -0.428204,0.3227789 -0.817046,0.7208612 -1.169689,1.1911962 -0.340044,0.4795573 -0.682397,1.0322886 -1.022443,1.6594026 -0.121092,0.228679 -0.233308,0.425055 -0.350741,0.6369594 l 0,0.0017 c -10e-5,1.83e-4 -0.0032,-1.83e-4 -0.0033,0 l -1.340096,2.393974 -0.005,-0.0017 c -0.237822,0.442501 -0.4614913,0.84702 -0.6650924,1.197817 -0.2141026,0.36889 -0.4518924,0.681499 -0.7163721,0.939722 -0.2644789,0.258223 -0.5665879,0.45561 -0.9066327,0.593944 -0.071945,0.02731 -0.1613966,0.04195 -0.2415481,0.06287 -5.144e-4,1.34e-4 -0.00114,-1.34e-4 -0.00165,0 l -0.9877002,0 0,2.413827 0.9810824,0 0.00827,0 0,-0.0017 c 0.4284402,-0.03628 0.8324427,-0.09229 1.1845784,-0.191915 0.5541491,-0.166 1.0531594,-0.40447 1.4939587,-0.718027 0.428205,-0.322779 0.818703,-0.720862 1.171343,-1.191196 0.340046,-0.479558 0.680743,-1.032288 1.020789,-1.659403 0.120836,-0.228192 0.235228,-0.425573 0.352395,-0.636959 l 0.0066,0.0017 0.0033,-0.005 0.0364,-0.06618 2.529637,0 0,0.0017 1.125019,0 0,-2.40721 -0.330888,0 0,-0.0017 -1.978709,0 c 0.219746,-0.407131 0.430786,-0.788367 0.620414,-1.115092 0.214104,-0.368891 0.451893,-0.681499 0.716372,-0.9397217 0.26448,-0.2582231 0.566588,-0.4556098 0.906633,-0.5939437 0.07046,-0.026754 0.159306,-0.041111 0.238239,-0.061214 l 0.992664,0 0,-0.00331 -0.0017,0 0,-2.410518 -0.977774,0 0,-0.00165 z"
|
||||
id="text4152"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
Before Width: | Height: | Size: 4.2 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<polygon fill="#F4BF75" points=".179 .146 8.097 8.092 1.782 8.092 8.033 14.365 .147 14.365 9.701 23.952 9.701 16.039 9.702 16.038 9.702 8.092 9.701 8.092 9.701 3.588 14.474 3.588 16.558 5.679 11.916 5.679 11.916 13.529 14.17 13.529 16.672 16.039 15.056 16.039 15.055 16.038 15.055 16.039 11.818 16.039 11.817 16.038 11.817 16.039 11.785 16.039 11.817 16.071 11.817 23.984 22.975 23.984 18.967 19.963 18.967 18.342 19.833 19.21 19.833 11.275 18.23 11.275 18.231 7.358 21.307 10.443 21.307 2.499 14.676 2.499 12.331 .146 7.842 .146" transform="translate(5 4)"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 653 B |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-3{fill:#2ecc71;}</style></defs><title>folder_assets</title><rect class="cls-1" x="15.31" y="14.91" width="5.69"/><path class="cls-1" d="M20.8,5.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H13V15.91h1v-1h1v-1h1v-1h7V7.4A2.22,2.22,0,0,0,20.8,5.2Z"/><polygon class="cls-2" points="14 20.8 14 22.91 19 22.91 19 20.8 19 16.91 14 16.91 14 20.8"/><path class="cls-3" d="M13,15.91v8h7v-8Zm6,4.89v2.11H14v-6h5Z"/><polygon class="cls-3" points="15 13.91 15 14.91 21 14.91 21 20.78 21 21.91 22 21.91 22 20.43 22 13.91 15 13.91"/><polygon class="cls-3" points="17 11.91 17 12.91 23 12.91 23 19.91 24 19.91 24 11.91 17 11.91"/></svg>
|
Before Width: | Height: | Size: 783 B |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#2ecc71;}</style></defs><title>folder_assets_open</title><polygon class="cls-1" points="14 20.8 14 22.91 19 22.91 19 20.8 19 16.91 14 16.91 14 20.8"/><polygon class="cls-1" points="3.2 7.5 3.2 18.75 13 18.75 13 15.91 20 15.91 20 18.75 20.8 18.75 20.8 14.91 15 14.91 15 13.91 20.8 13.91 20.8 12.91 17 12.91 17 11.91 20.8 11.91 20.8 7.5 3.2 7.5"/><rect class="cls-1" x="14" y="16.91" width="5" height="1.84"/><rect class="cls-1" x="14" y="21" width="5" height="1.91"/><path class="cls-2" d="M13,18.75H3.2V7.5H20.8v4.41H23V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21H13V18.75Z"/><path class="cls-3" d="M20,18.75V15.91H13v8h7V18.75Zm-1,4.16H14v-6h5v6Z"/><polygon class="cls-3" points="22 13.91 20.8 13.91 15 13.91 15 14.91 20.8 14.91 21 14.91 21 20.78 21 20.98 21 21.91 22 21.91 22 20.63 22 20.43 22 13.91"/><polygon class="cls-3" points="23 11.91 20.8 11.91 17 11.91 17 12.91 20.8 12.91 23 12.91 23 18.75 23 19.91 24 19.91 24 11.91 23 11.91"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#4a616c;}.cls-3{fill:#f4bf75;}</style></defs><title>folder_bower</title><path class="cls-1" d="M13.28,21.57a4.48,4.48,0,0,0,2.66.74,2.18,2.18,0,0,0,1.89-1.51H12.41A4.29,4.29,0,0,0,13.28,21.57Z"/><path class="cls-1" d="M21.13,13.44a.1.1,0,0,0,0,.05l.08-.05Z"/><path class="cls-1" d="M15.77,14.35a.76.76,0,0,0-.73.74.72.72,0,0,0,.73.7.69.69,0,0,0,.69-.7A.7.7,0,0,0,15.77,14.35Zm.3.57a.57.57,0,0,1-.64,0c-.13-.09-.13-.26,0-.31a1.58,1.58,0,0,1,.34-.13c.09,0,.21,0,.3.13S16.2,14.83,16.07,14.92Z"/><path class="cls-2" d="M20.8,5.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2h8.17a7.36,7.36,0,0,1-.75-3A5.6,5.6,0,0,1,11.82,14a5.1,5.1,0,0,1,3.39-2,3,3,0,0,1,1.84.26,2.93,2.93,0,0,1,1.5,1.79c0,.13.09.17.17.17l.47.13a3.1,3.1,0,0,1,3.26-1.74l-.13.13a2.64,2.64,0,0,0-.68,1.52,6.93,6.93,0,0,1-.17.79,1.9,1.9,0,0,1-1.63,1.35h-.48c-.08,0-.12,0-.17-.09l-.13-.26c-.34,0-.47.13-.55.52.17,0,.38,0,.6.09a25.22,25.22,0,0,1,3.6.65l.29.11V7.4A2.22,2.22,0,0,0,20.8,5.2Z"/><path class="cls-3" d="M23.35,17.61,23,17.47l-.29-.11a25.22,25.22,0,0,0-3.6-.65c-.22-.05-.43-.05-.6-.09.08-.39.21-.52.55-.52l.13.26c0,.09.09.09.17.09h.48a1.9,1.9,0,0,0,1.63-1.35,6.93,6.93,0,0,0,.17-.79,2.64,2.64,0,0,1,.68-1.52l.13-.13a3.1,3.1,0,0,0-3.26,1.74l-.47-.13c-.08,0-.13,0-.17-.17a2.93,2.93,0,0,0-1.5-1.79,3,3,0,0,0-1.84-.26,5.1,5.1,0,0,0-3.39,2,5.6,5.6,0,0,0-1.2,3.83,7.36,7.36,0,0,0,.75,3,8.25,8.25,0,0,0,.58,1,4.78,4.78,0,0,0,1.16,1.13,1,1,0,0,0,1.41-.17,2,2,0,0,0,.22-.3s0,.08,0,.13c.13.3.21.6.34.91a.65.65,0,0,0,.86.3c.08,0,.13,0,.21,0a.85.85,0,0,0,.86,0c.09,0,.17-.17.3-.21a1.24,1.24,0,0,1,.43,0,.84.84,0,0,0,.69-.66.14.14,0,0,1,.08,0,.75.75,0,0,0,.3-.35.9.9,0,0,0,0-.61c-.21-.39-.43-.77-.6-1.12h0a.14.14,0,0,1,0-.09l.33.1.27.08a1,1,0,0,0,.68-.08.87.87,0,0,0,.22-.18s.08,0,.08.08a1.39,1.39,0,0,0,.26.1,1.22,1.22,0,0,0,.92,0,1.1,1.1,0,0,0,.45-.35c.09,0,.13,0,.17,0a2,2,0,0,0,.35,0,1.47,1.47,0,0,0,.77-.31.51.51,0,0,0,.26-.48v-.08c.64-.09.94-.35,1-1A.93.93,0,0,0,23.35,17.61Zm-2.91-1.78h0a2,2,0,0,1-.86.22s-.08,0-.12-.05-.05-.26-.09-.39,0-.08.09-.08.25,0,.25.26h.05c.12-.22.12-.22.34-.13a2,2,0,0,1,.43.08C20.48,15.79,20.48,15.83,20.44,15.83Zm-.81-1.39h0a2.47,2.47,0,0,1,1-1.09A2.35,2.35,0,0,1,21.77,13a1,1,0,0,0-.17.26,2.5,2.5,0,0,0-.3,1c-.09.3-.17.65-.3,1a.88.88,0,0,1-.13.3,2.5,2.5,0,0,1-.64-.56c-.05,0-.05-.05,0-.09a4.1,4.1,0,0,1,.86-1.34A2.82,2.82,0,0,0,20,14.74a.73.73,0,0,1-.34-.17C19.54,14.53,19.58,14.48,19.63,14.44Zm-1.5.17s.08,0,.17,0a3.39,3.39,0,0,1,1.67.65,2.39,2.39,0,0,1,.34.31l-.51-.13a1.53,1.53,0,0,0-1.07.08,1.33,1.33,0,0,1-.9,0c.17.21.38.17.6.17l.56-.13,0,0c-.05.05-.05.09-.09.09-.34.17-.64.31-.94.44a0,0,0,0,0,0,0,1.11,1.11,0,0,1-.13-.65h0A1.15,1.15,0,0,1,18.13,14.61Zm-2.36-.69a1.18,1.18,0,0,1,0,2.35,1.18,1.18,0,0,1-1.16-1.22A1.13,1.13,0,0,1,15.77,13.92ZM18.87,18c.29,0,.59.13.89.17s.77.13,1.15.21c.18.05.22.09.09.22a.66.66,0,0,1-.73.26h-.13a.43.43,0,0,1-.13.44.87.87,0,0,1-.64.26,1.56,1.56,0,0,1-.47-.09c-.09.39-.86.52-1.24.18a6.17,6.17,0,0,0,.21.61c0,.08,0,.13,0,.21a3,3,0,0,1-.08.32,2.18,2.18,0,0,1-1.89,1.51,4.48,4.48,0,0,1-2.66-.74,4.29,4.29,0,0,1-.87-.77,4.89,4.89,0,0,1-.75-1.14.15.15,0,0,1-.05-.13,2.73,2.73,0,0,0,.78.17,2.13,2.13,0,0,0,1.41-.22.14.14,0,0,1,.17,0,3.11,3.11,0,0,0,1.46.09,2.9,2.9,0,0,0,1.75-1.08,6.32,6.32,0,0,1,.52-.79,5,5,0,0,1,.38-.48.28.28,0,0,1,.17,0c.52.09,1.07.13,1.59.22.73.08,1.46.26,2.18.39.05,0,.09,0,.13,0A17.19,17.19,0,0,1,18.87,18Z"/><path class="cls-3" d="M21.13,13.44a.1.1,0,0,0,0,.05l.08-.05Z"/><polygon class="cls-3" points="18.86 18 18.87 18.01 18.86 18 18.86 18"/><path class="cls-3" d="M15.77,15.79a.69.69,0,0,0,.69-.7.7.7,0,0,0-.69-.74.76.76,0,0,0-.73.74A.72.72,0,0,0,15.77,15.79Zm-.34-1.18a1.58,1.58,0,0,1,.34-.13c.09,0,.21,0,.3.13s.13.22,0,.31a.57.57,0,0,1-.64,0C15.3,14.83,15.3,14.66,15.43,14.61Z"/></svg>
|
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 4.9 KiB |
|
@ -1 +0,0 @@
|
|||
<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:#f4bf75;}</style></defs><title>folder_ci</title><path class="cls-1" d="M13.89,16.85A4.93,4.93,0,0,1,23,14.22V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H15.89A4.91,4.91,0,0,1,13.89,16.85Z"/><path class="cls-2" d="M18.77,12.93V14.8l2.5-2.5-2.5-2.5v1.88a5,5,0,0,0-5,5,4.94,4.94,0,0,0,.78,2.66l.91-.91A3.69,3.69,0,0,1,15,16.68,3.75,3.75,0,0,1,18.77,12.93ZM23,14l-.92.92a3.66,3.66,0,0,1,.44,1.75,3.76,3.76,0,0,1-3.75,3.75V18.55l-2.5,2.5,2.5,2.5V21.68A5,5,0,0,0,23,14Z"/></svg>
|
Before Width: | Height: | Size: 651 B |
|
@ -1 +0,0 @@
|
|||
<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:#f4bf75;}</style></defs><title>folder_ci_open</title><path class="cls-1" d="M14.27,18.75H3.2V7.5H20.8v4.82a5,5,0,0,1,2.2,1.9V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h13A5,5,0,0,1,14.27,18.75Z"/><path class="cls-2" d="M18.77,12.93V14.8l2.5-2.5-2.5-2.5v1.88a5,5,0,0,0-5,5,4.94,4.94,0,0,0,.78,2.66l.91-.91A3.69,3.69,0,0,1,15,16.68,3.75,3.75,0,0,1,18.77,12.93ZM23,14l-.92.92a3.66,3.66,0,0,1,.44,1.75,3.76,3.76,0,0,1-3.75,3.75V18.55l-2.5,2.5,2.5,2.5V21.68A5,5,0,0,0,23,14Z"/></svg>
|
Before Width: | Height: | Size: 667 B |
|
@ -1,10 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#4A616C;enable-background:new ;}
|
||||
</style>
|
||||
<path class="st0" d="M9.8,3L12,5.2h8.8c1.2,0,2.2,1,2.2,2.2v11.2c0,1.2-1,2.2-2.2,2.2H3.2C2,21,1,20,1,18.8V5.2C1,4,2,3,3.2,3H9.8z"
|
||||
/>
|
||||
</svg>
|
Before Width: | Height: | Size: 565 B |
|
@ -1,15 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#4A616C;enable-background:new ;}
|
||||
.st1{fill:#F78C6C;}
|
||||
</style>
|
||||
<g>
|
||||
<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.9
|
||||
L17.8,10.1z"/>
|
||||
<path class="st1" d="M23,12.4l-5.2-2.3l-6.2,2.8v7.9v0.4l6.2,2.8l6.2-2.8v-8.3L23,12.4z M17.8,11.2l4.5,2l-4.5,2l-4.5-2L17.8,11.2z
|
||||
M17.2,22.6l-4.1-1.8l-0.6-0.3v-6.6l4.8,2.1v4.7V22.6z M23,18.6v1.9l-4.8,2.1v-1.8v-4.7l4.8-2.1V18.6z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 835 B |
|
@ -1 +0,0 @@
|
|||
<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:#d28445;}</style></defs><title>folder_dist</title><path class="cls-1" d="M14.52,20.81a3.47,3.47,0,0,1-.06-.64v-.64H13.18V18.25h1.28v-.64a3.39,3.39,0,0,1,.06-.64H13.18V15.7H15a4,4,0,0,1,1.16-1.26l-1-1,.9-.9,1.39,1.39a3.82,3.82,0,0,1,.9-.11,4,4,0,0,1,.91.11l1.38-1.39.9.9-1,1a3.91,3.91,0,0,1,1.17,1.26H23V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H9.85v0h4.67Z"/><path class="cls-1" d="M20.8,5.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H23V7.4A2.22,2.22,0,0,0,20.8,5.2Z"/><path class="cls-2" d="M22.74,13.51H20.22V12.25A1.25,1.25,0,0,0,19,11H16.44a1.25,1.25,0,0,0-1.26,1.26v1.26H12.67a1.25,1.25,0,0,0-1.26,1.26V21.7A1.26,1.26,0,0,0,12.67,23H22.74A1.26,1.26,0,0,0,24,21.7V14.77A1.25,1.25,0,0,0,22.74,13.51Zm-3.78,0H16.44V12.25H19Z"/></svg>
|
Before Width: | Height: | Size: 931 B |
|
@ -1 +0,0 @@
|
|||
<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:#d28445;}</style></defs><title>folder_dist_open</title><path class="cls-1" d="M23,12.25V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h10v-.18h1.33a4.46,4.46,0,0,1,0-.63v-.64H13.18v-.78H3.2V7.5H20.8v8.71H23v-4Z"/><path class="cls-2" d="M22.74,13.51H20.22V12.25A1.25,1.25,0,0,0,19,11H16.44a1.25,1.25,0,0,0-1.26,1.26v1.26H12.67a1.25,1.25,0,0,0-1.26,1.26V21.7A1.26,1.26,0,0,0,12.67,23H22.74A1.26,1.26,0,0,0,24,21.7V14.77A1.25,1.25,0,0,0,22.74,13.51Zm-3.78,0H16.44V12.25H19Z"/></svg>
|
Before Width: | Height: | Size: 664 B |
|
@ -1 +0,0 @@
|
|||
<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:#ac4142;}</style></defs><title>folder_git</title><path class="cls-1" d="M20.8,5.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H14.81l-2-2a.71.71,0,0,1,0-1l3.42-3.43.5-.51,1-1a.71.71,0,0,1,.53-.22.65.65,0,0,1,.51.22L23,17V7.4A2.22,2.22,0,0,0,20.8,5.2Z"/><path class="cls-2" d="M23.78,17.78,23,17,18.79,12.8a.65.65,0,0,0-.51-.22.71.71,0,0,0-.53.22l-1,1L18,15.14a.83.83,0,0,1,.47,0,1,1,0,0,1,.44.24.85.85,0,0,1,.22.42.9.9,0,0,1,0,.49l1.27,1.26a.89.89,0,0,1,.46,0,.8.8,0,0,1,.44.24.88.88,0,0,1,0,1.23.84.84,0,0,1-.62.25.81.81,0,0,1-.61-.25.83.83,0,0,1-.24-.45.86.86,0,0,1,.05-.5L18.7,16.84V20l.12.07.12.09a.82.82,0,0,1,.25.61s0,.05,0,.08a.84.84,0,0,1-.24.54.85.85,0,0,1-1.24,0,.85.85,0,0,1-.25-.54s0-.05,0-.08a.8.8,0,0,1,.26-.61l.14-.11.15-.08V16.79l-.15-.08-.14-.11a.84.84,0,0,1-.25-.46.81.81,0,0,1,.07-.51l-1.3-1.29L12.8,17.77a.71.71,0,0,0,0,1l2,2,3,3a.67.67,0,0,0,.52.22.73.73,0,0,0,.53-.22l5-5a.7.7,0,0,0,.22-.52A.73.73,0,0,0,23.78,17.78Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#ac4142;}</style></defs><title>folder_git_open</title><path class="cls-1" d="M17.7,21.34A.84.84,0,0,0,19.13,21H17.5A.85.85,0,0,0,17.7,21.34Z"/><path class="cls-1" d="M3.2,7.5V18.75h9.57a.69.69,0,0,1,0-1l3.42-3.43,1.3,1.29a.81.81,0,0,0-.07.51.84.84,0,0,0,.25.46l.14.11.15.08v2h.71V16.84L19.89,18a.86.86,0,0,0-.05.5.63.63,0,0,0,.08.23h.88V17.5a.84.84,0,0,0-.39,0l-1.27-1.26a.9.9,0,0,0,0-.49.85.85,0,0,0-.22-.42,1,1,0,0,0-.44-.24.83.83,0,0,0-.47,0l-1.31-1.31,1-1a.71.71,0,0,1,.53-.22.65.65,0,0,1,.51.22l2,2V7.5Z"/><path class="cls-2" d="M22.66,20l-.7.7A2.34,2.34,0,0,0,22.66,20Z"/><path class="cls-2" d="M12.8,18.8l0-.05H3.2V7.5H20.8v7.31L23,17V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21H15l-.2-.2Z"/><path class="cls-3" d="M24,18.31a.73.73,0,0,0-.22-.53L23,17l-2.2-2.2-2-2a.65.65,0,0,0-.51-.22.71.71,0,0,0-.53.22l-1,1L18,15.14a.83.83,0,0,1,.47,0,1,1,0,0,1,.44.24.85.85,0,0,1,.22.42.9.9,0,0,1,0,.49l1.27,1.26a.84.84,0,0,1,.39,0h.07a.8.8,0,0,1,.44.24.88.88,0,0,1,0,1.23.84.84,0,0,1-.62.25.81.81,0,0,1-.61-.25.82.82,0,0,1-.16-.22.63.63,0,0,1-.08-.23.86.86,0,0,1,.05-.5L18.7,16.84V20l.12.07.12.09a.82.82,0,0,1,.25.61s0,.05,0,.08a1.46,1.46,0,0,1-.05.2.84.84,0,0,1-1.43.34.85.85,0,0,1-.2-.34,1.46,1.46,0,0,1-.05-.2s0-.05,0-.08a.8.8,0,0,1,.26-.61l.14-.11.15-.08V16.79l-.15-.08-.14-.11a.84.84,0,0,1-.25-.46.81.81,0,0,1,.07-.51l-1.3-1.29L12.8,17.77a.69.69,0,0,0,0,1l0,.05,2,2,.2.2,2.77,2.78a.67.67,0,0,0,.52.22.73.73,0,0,0,.53-.22L22,20.65l.7-.7,1.12-1.12A.7.7,0,0,0,24,18.31Z"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1 +0,0 @@
|
|||
<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:#89a6af;}</style></defs><title>folder_github</title><path class="cls-1" d="M18.29,13h0A5.72,5.72,0,0,1,23,15.43v-8a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H13a5.44,5.44,0,0,1-.46-2.17A5.69,5.69,0,0,1,18.29,13Z"/><path class="cls-2" d="M23,15.43A5.72,5.72,0,0,0,18.29,13h0a5.69,5.69,0,0,0-5.71,5.66A5.44,5.44,0,0,0,13,20.8,5.68,5.68,0,0,0,16.49,24c.28.05.39-.12.39-.27s0-.58,0-1C15.28,23,14.94,22,14.94,22a1.54,1.54,0,0,0-.63-.83c-.52-.35,0-.34,0-.34a1.19,1.19,0,0,1,.87.58,1.24,1.24,0,0,0,1.67.47,1.2,1.2,0,0,1,.36-.75A4.19,4.19,0,0,1,16,20.8a2.4,2.4,0,0,1-1.34-2.47,2.16,2.16,0,0,1,.59-1.52,2,2,0,0,1,0-1.49s.48-.15,1.57.58a5.48,5.48,0,0,1,2.86,0c1.09-.73,1.57-.58,1.57-.58a2.09,2.09,0,0,1,.06,1.5,2.16,2.16,0,0,1,.58,1.51,2.4,2.4,0,0,1-1.34,2.47,4.17,4.17,0,0,1-1.26.32,1.37,1.37,0,0,1,.38,1.05v1.55c0,.15.1.32.39.27A5.66,5.66,0,0,0,24,18.63,5.6,5.6,0,0,0,23,15.43Z"/></svg>
|
Before Width: | Height: | Size: 1 KiB |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#89a6af;}</style></defs><title>folder_github_open</title><path class="cls-1" d="M3.2,7.5V18.75h9.39s0-.08,0-.12A5.69,5.69,0,0,1,18.29,13h0a5.72,5.72,0,0,1,2.51.58V7.5Z"/><path class="cls-1" d="M20.8,15.37a3.43,3.43,0,0,0-1.08.53,5.48,5.48,0,0,0-2.86,0c-1.09-.73-1.57-.58-1.57-.58a2,2,0,0,0,0,1.49,2.16,2.16,0,0,0-.59,1.52c0,.16,0,.28,0,.42H20.8Z"/><path class="cls-2" d="M14.12,21h.7a.89.89,0,0,0-.47-.17S14,20.83,14.12,21Z"/><path class="cls-2" d="M3.2,18.75V7.5H20.8v6.06A5.63,5.63,0,0,1,23,15.43V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h9.92a5.67,5.67,0,0,1-.53-2.25Z"/><path class="cls-3" d="M23,15.43a5.63,5.63,0,0,0-2.2-1.87A5.72,5.72,0,0,0,18.29,13h0a5.69,5.69,0,0,0-5.71,5.66s0,.08,0,.12A5.67,5.67,0,0,0,16.49,24c.28.05.39-.12.39-.27s0-.58,0-1C15.28,23,14.94,22,14.94,22a1.54,1.54,0,0,0-.63-.83.55.55,0,0,1-.19-.17c-.11-.17.23-.17.23-.17a.89.89,0,0,1,.47.17,1.38,1.38,0,0,1,.4.41,1.24,1.24,0,0,0,1.67.47,1.2,1.2,0,0,1,.36-.75,5.1,5.1,0,0,1-.68-.13,2.31,2.31,0,0,1-1.89-2.25c0-.14,0-.26,0-.42a2.16,2.16,0,0,1,.59-1.52,2,2,0,0,1,0-1.49s.48-.15,1.57.58a5.48,5.48,0,0,1,2.86,0,3.43,3.43,0,0,1,1.08-.53,1.08,1.08,0,0,1,.49,0,2.09,2.09,0,0,1,.06,1.5,2.16,2.16,0,0,1,.58,1.51A2.38,2.38,0,0,1,20,21a5.24,5.24,0,0,1-.67.12,1.37,1.37,0,0,1,.38,1.05v1.55c0,.15.1.32.39.27A5.66,5.66,0,0,0,24,18.63,5.6,5.6,0,0,0,23,15.43Z"/></svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:#4a616c;}.st1{fill:#ff5370;}</style></defs><title>folder_gulp</title><g id="Layer_2" data-name="Layer 2"><path class="st0" d="M16.29,15.64,15.7,10.3l7.3-.13V6.92h-.61l.39-.45a2.23,2.23,0,0,0-2-1.27H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H17.68l-.84-1.13-.2-.34Z"/><g id="Page-1"><g id="gulp"><g id="Gulp-Logo"><path id="Cup" class="st1" d="M19.8,20.13a10.56,10.56,0,0,1-2.3-.25,4.74,4.74,0,0,1-.66-.21l.53.91.21,2.84c0,.32,1,.58,2.26.58s2.26-.26,2.26-.58l.16-2.87.51-.88a4.94,4.94,0,0,1-.67.21A10.56,10.56,0,0,1,19.8,20.13Zm3-9.24a22.31,22.31,0,0,1-2.94.17,22.58,22.58,0,0,1-2.95-.17A6.07,6.07,0,0,1,16,10.7a1.07,1.07,0,0,1-.23-.1l.49,4.5c0-.08.05-.16.07-.23s.13-.32.2-.47a4.23,4.23,0,0,1,.25-.42,2.75,2.75,0,0,1,.28-.37,2.18,2.18,0,0,1,.31-.3,1.5,1.5,0,0,1,.32-.19.91.91,0,0,1,.32-.06.73.73,0,0,1,.35.09,1.12,1.12,0,0,1,.32.33.3.3,0,0,1,0,.1.28.28,0,0,1,0,.09.29.29,0,0,1-.05.17.17.17,0,0,1-.12.06.14.14,0,0,1-.12-.06,1.4,1.4,0,0,1-.13-.2.37.37,0,0,0-.14-.16.24.24,0,0,0-.16-.05.53.53,0,0,0-.3.11,1.84,1.84,0,0,0-.32.31,4.19,4.19,0,0,0-.3.44,4.66,4.66,0,0,0-.25.5,3.69,3.69,0,0,0-.17.5,1.6,1.6,0,0,0-.07.45.66.66,0,0,0,0,.14l0,.13a.31.31,0,0,0,.07.09.21.21,0,0,0,.11,0,.41.41,0,0,0,.17-.05l.19-.13.21-.19a1.8,1.8,0,0,0,.19-.2,2.08,2.08,0,0,0,.15-.2l.11-.17.18-.56a.19.19,0,0,1,.09-.12.17.17,0,0,1,.11,0h.06s0,0,0,0a.09.09,0,0,1,0,.05.19.19,0,0,1,0,.07,1.5,1.5,0,0,1,0,.22c0,.06,0,.13-.05.19l-.07.19-.08.2a.27.27,0,0,1,0,.08s0,.09-.05.15l-.06.22a1.37,1.37,0,0,0-.07.24c0,.08-.05.16-.07.23s-.05.15-.07.22l0,.16,0,.07,0,.09-.06.08-.06.07a.13.13,0,0,1-.08,0,.13.13,0,0,1-.09,0,.3.3,0,0,1,0-.16v-.07a.7.7,0,0,1,0-.14c0-.07,0-.15.07-.24s.05-.17.08-.27.06-.18.09-.25l-.23.23-.26.22a1.74,1.74,0,0,1-.26.15.61.61,0,0,1-.25.06.49.49,0,0,1-.25-.06l0,0,.27,2.85a6.07,6.07,0,0,0,3.16.61A6.07,6.07,0,0,0,23,19.33l.39-3.39-.09.09-.32.27a1.81,1.81,0,0,1-.29.17.81.81,0,0,1-.31.06.37.37,0,0,1-.23-.06.22.22,0,0,1-.08-.18v0a.35.35,0,0,1,.06-.17l.13-.19.16-.2.16-.19a1.36,1.36,0,0,0,.12-.17.28.28,0,0,0,.05-.12.08.08,0,0,0,0-.05h-.07a.32.32,0,0,0-.16,0,.82.82,0,0,0-.17.11l-.16.16-.15.19a2.14,2.14,0,0,0-.13.19l-.09.18,0,.08a1,1,0,0,0,0,.1l-.06.12-.05.12-.05.1a.39.39,0,0,0,0,.06l0,.08a1.21,1.21,0,0,1-.05.14l-.06.17-.06.16-.05.14a.27.27,0,0,0,0,.08l-.05.12a.7.7,0,0,1-.06.09.27.27,0,0,1-.08.07.17.17,0,0,1-.1,0,.21.21,0,0,1-.12,0,.16.16,0,0,1-.05-.13s0-.06,0-.1l0-.1a.36.36,0,0,0,0-.09l0-.09c.07-.16.14-.32.22-.47l.21-.48a.36.36,0,0,0,0-.09h0a2.53,2.53,0,0,1-.26.22,1,1,0,0,1-.25.15.61.61,0,0,1-.25.06l-.14,0a.34.34,0,0,1-.09-.08.3.3,0,0,1,0-.1.09.09,0,0,1,0,0l-.07.06a1.57,1.57,0,0,1-.25.14.63.63,0,0,1-.21.05.21.21,0,0,1-.16-.06.32.32,0,0,1-.06-.22,1.21,1.21,0,0,1,0-.25.68.68,0,0,1-.13.18,1.45,1.45,0,0,1-.17.18.84.84,0,0,1-.23.12.59.59,0,0,1-.27.05h-.12a.39.39,0,0,1-.11-.06.31.31,0,0,1-.08-.11.72.72,0,0,1,0-.17v-.07c0-.05,0-.12.06-.22a2.92,2.92,0,0,1,.13-.39c.06-.16.14-.35.25-.58a.34.34,0,0,1,.1-.13.19.19,0,0,1,.12,0h.06a.05.05,0,0,1,.05,0l0,0a.07.07,0,0,1,0,.06.09.09,0,0,1,0,0,.34.34,0,0,1,0,.1,1.09,1.09,0,0,1-.08.15,1.51,1.51,0,0,1-.09.18l-.09.21a1.29,1.29,0,0,0-.07.21,1.55,1.55,0,0,0,0,.21.19.19,0,0,0,0,.07.08.08,0,0,0,.07,0,.4.4,0,0,0,.25-.09.86.86,0,0,0,.22-.21,3.16,3.16,0,0,0,.18-.27c.05-.1.1-.19.13-.27a.87.87,0,0,0,.07-.17l.06-.17.08-.13a.16.16,0,0,1,.11-.05.13.13,0,0,1,.11.05.21.21,0,0,1,.05.13.35.35,0,0,1,0,.12s0,.11-.07.17a2.2,2.2,0,0,0-.09.21l-.09.22a1.8,1.8,0,0,0-.06.22.75.75,0,0,0,0,.2c0,.05,0,.08.09.08a.34.34,0,0,0,.15,0,1,1,0,0,0,.19-.12l0,0a1,1,0,0,1,.07-.21c.05-.13.09-.25.14-.37l.13-.33.61-1.53a.23.23,0,0,1,.1-.13.19.19,0,0,1,.12,0,.15.15,0,0,1,.11,0,.14.14,0,0,1,.05.13.28.28,0,0,1,0,.09.47.47,0,0,1-.05.1,2.86,2.86,0,0,1-.12.27c0,.11-.09.23-.14.35s-.11.26-.17.4-.1.27-.16.4l-.15.37-.11.3s0,.08-.05.12a.83.83,0,0,0,0,.13.35.35,0,0,0,0,.06l0,0,.1,0A.5.5,0,0,0,21,16l.15-.11.16-.13.15-.13.13-.13,0,0,.06-.19,0-.13a1,1,0,0,1,.07-.15.57.57,0,0,1,.08-.13.12.12,0,0,1,.09-.06.17.17,0,0,1,.12,0,.18.18,0,0,1,0,.11s0,0,0,0a.17.17,0,0,1,0,.07s0,0,0,.06a.11.11,0,0,0,0,0A.81.81,0,0,1,22.2,15l.17-.14a.93.93,0,0,1,.19-.11.46.46,0,0,1,.19,0l.13,0a.23.23,0,0,1,.12.06.24.24,0,0,1,.08.09.28.28,0,0,1,0,.13.53.53,0,0,1-.05.2l-.13.23-.16.21a1.6,1.6,0,0,1-.16.19L22.5,16a.21.21,0,0,0-.06.08.08.08,0,0,0,0,.05.08.08,0,0,0,.06,0l.1,0,.19-.13.3-.25.29-.26.53-4.9a1.78,1.78,0,0,1-.23.1A6.25,6.25,0,0,1,22.78,10.89ZM19.84,9.73c-2.29,0-4.14.25-4.14.57s1.85.57,4.14.57S24,10.61,24,10.3,22.12,9.73,19.84,9.73Zm1.65.73c0,.08-.22.14-.49.14s-.5-.06-.5-.14.22-.13.5-.13S21.49,10.39,21.49,10.46Z"/><path id="Straw" class="cls-2" d="M20.6,10.41h0c0,.05.18.08.4.08s.39,0,.39-.08l.52-2.1L24,6.15h0c0-.05,0-.2-.19-.34s-.31-.17-.36-.12h0L21.23,8Z"/></g></g></g></g></svg>
|
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 6.9 KiB |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#4a616c;}.cls-3{fill:#90a959;}</style></defs><title>folder_images</title><path class="cls-1" d="M20.8,20.8H17.12l-.06.08L17,20.8H13.76l-.87,1.12h9.72l-1-1.29A2.33,2.33,0,0,1,20.8,20.8Z"/><path class="cls-2" d="M12.89,11.5h9.72a1.59,1.59,0,0,1,.39.06V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2h8.3V12.89A1.4,1.4,0,0,1,12.89,11.5Z"/><path class="cls-3" d="M23,11.56a1.59,1.59,0,0,0-.39-.06H12.89a1.4,1.4,0,0,0-1.39,1.39v9.72A1.4,1.4,0,0,0,12.89,24h9.72A1.39,1.39,0,0,0,24,22.61V12.89A1.4,1.4,0,0,0,23,11.56ZM12.89,21.92l.87-1.12,1.56-2,1.67,2,.07.08.06-.08,2.37-3.05,2.15,2.88,1,1.29Z"/></svg>
|
Before Width: | Height: | Size: 768 B |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#90a959;}</style></defs><title>folder_images_open</title><polygon class="cls-1" points="19.49 17.75 18.71 18.75 20.24 18.75 19.49 17.75"/><path class="cls-1" d="M3.2,7.5V18.75h8.3V12.89a1.4,1.4,0,0,1,1.39-1.39H20.8v-4Z"/><path class="cls-1" d="M20.8,21H13.6l-.71.92h9.72l-.86-1.15A2.18,2.18,0,0,1,20.8,21Z"/><path class="cls-2" d="M3.2,18.75V7.5H20.8v4h1.81a1.59,1.59,0,0,1,.39.06V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h8.3V18.75Z"/><path class="cls-3" d="M23,11.56a1.59,1.59,0,0,0-.39-.06H12.89a1.4,1.4,0,0,0-1.39,1.39v9.72A1.4,1.4,0,0,0,12.89,24h9.72A1.39,1.39,0,0,0,24,22.61V12.89A1.4,1.4,0,0,0,23,11.56ZM12.89,21.92,13.6,21l1.72-2.21,1.74,2.09,1.65-2.13.78-1,.75,1,1.51,2,.86,1.15Z"/></svg>
|
Before Width: | Height: | Size: 905 B |
|
@ -1 +0,0 @@
|
|||
<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;enable-background:new;}.st1{fill:#F4BF75;}</style></defs><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.2a2,2,0,0,1-2.2-2V5.2A2.22,2.22,0,0,1,3.2,3Z"/><path class="st1" d="M18.1,21.72a5.3,5.3,0,0,0,2.31.57A1.74,1.74,0,0,0,21.49,22a.87.87,0,0,0,.38-.73.9.9,0,0,0-.36-.71A4,4,0,0,0,20.32,20a5.07,5.07,0,0,1-1.84-1.08,2.19,2.19,0,0,1-.7-1.67,2.5,2.5,0,0,1,.93-2,3.85,3.85,0,0,1,2.57-.79,6.09,6.09,0,0,1,1.36.13,6.89,6.89,0,0,1,1,.33l-.47,1.68a5.89,5.89,0,0,0-.76-.29,3.72,3.72,0,0,0-1.17-.16,1.55,1.55,0,0,0-1,.27.8.8,0,0,0-.33.63.78.78,0,0,0,.4.69,7.41,7.41,0,0,0,1.3.61,4.39,4.39,0,0,1,1.81,1.11A2.43,2.43,0,0,1,24,21.14a2.63,2.63,0,0,1-.91,2,4,4,0,0,1-2.8.85,6.18,6.18,0,0,1-1.51-.18,5.36,5.36,0,0,1-1.11-.39l.44-1.71Zm-3.9-7.08h2.08v5.81a3.59,3.59,0,0,1-.87,2.76A3.43,3.43,0,0,1,13,24a5.7,5.7,0,0,1-.8-.06,5.22,5.22,0,0,1-.74-.16l.24-1.68.48.12a3.48,3.48,0,0,0,.58.05,1.41,1.41,0,0,0,1-.38,2,2,0,0,0,.38-1.44V14.64Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1 +0,0 @@
|
|||
<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;enable-background:new;}.st1{fill:#ffcb6b;}</style></defs><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="M18.1,21.72a5.3,5.3,0,0,0,2.31.57A1.74,1.74,0,0,0,21.49,22a.87.87,0,0,0,.38-.73.9.9,0,0,0-.36-.71A4,4,0,0,0,20.32,20a5.07,5.07,0,0,1-1.84-1.08,2.19,2.19,0,0,1-.7-1.67,2.5,2.5,0,0,1,.93-2,3.85,3.85,0,0,1,2.57-.79,6.09,6.09,0,0,1,1.36.13,6.89,6.89,0,0,1,1,.33l-.47,1.68a5.89,5.89,0,0,0-.76-.29,3.72,3.72,0,0,0-1.17-.16,1.55,1.55,0,0,0-1,.27.8.8,0,0,0-.33.63.78.78,0,0,0,.4.69,7.41,7.41,0,0,0,1.3.61,4.39,4.39,0,0,1,1.81,1.11A2.43,2.43,0,0,1,24,21.14a2.63,2.63,0,0,1-.91,2,4,4,0,0,1-2.8.85,6.18,6.18,0,0,1-1.51-.18,5.36,5.36,0,0,1-1.11-.39l.44-1.71Zm-3.9-7.08h2.08v5.81a3.59,3.59,0,0,1-.87,2.76A3.43,3.43,0,0,1,13,24a5.7,5.7,0,0,1-.8-.06,5.22,5.22,0,0,1-.74-.16l.24-1.68.48.12a3.48,3.48,0,0,0,.58.05,1.41,1.41,0,0,0,1-.38,2,2,0,0,0,.38-1.44V14.64Z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="#90A4AE" d="M8.8,0 L11,2.25 L19.8,2.25 C21.01,2.25 22,3.2625 22,4.5 L22,15.75 C22,16.9875 21.01,18 19.8,18 L2.2,18 C0.99,18 0,16.9875 0,15.75 L0,2.25 C0,1.0125 0.99,0 2.2,0 L8.8,0 Z" transform="translate(1 3)"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 317 B |
|
@ -1,13 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#90A4AE;}
|
||||
.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.9
|
||||
L17.8,10.1z"/>
|
||||
<path class="st1" d="M23,12.4l-5.2-2.3l-6.2,2.8v7.9v0.4l6.2,2.8l6.2-2.8v-8.3L23,12.4z M17.8,11.2l4.5,2l-4.5,2l-4.5-2L17.8,11.2z
|
||||
M17.2,22.6l-4.1-1.8l-0.6-0.3v-6.6l4.8,2.1v4.7V22.6z M23,18.6v1.9l-4.8,2.1v-1.8v-4.7l4.8-2.1V18.6z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 796 B |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#4a616c;}.cls-3{fill:#c3e88d;}</style></defs><title>folder_node</title><path class="cls-1" d="M13.93,20.89A.83.83,0,0,0,15,20.8H13.77Z"/><path class="cls-2" d="M11.5,19.93V14A1.09,1.09,0,0,1,12,13l5.17-3a1.11,1.11,0,0,1,1.08,0L23,12.76V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H12A1.07,1.07,0,0,1,11.5,19.93Z"/><path class="cls-3" d="M23.46,13,23,12.76,18.29,10a1.11,1.11,0,0,0-1.08,0L12,13a1.09,1.09,0,0,0-.54.94v6a1.07,1.07,0,0,0,.45.87l.09.07,1.36.78a2.25,2.25,0,0,0,1.18.33,1.37,1.37,0,0,0,1.47-1.18,1.93,1.93,0,0,0,.07-.44V14.48a.15.15,0,0,0-.15-.15h-.65a.16.16,0,0,0-.16.15v5.88a.66.66,0,0,1-.17.44.83.83,0,0,1-1.06.09l-.16-.09-1.26-.72a.19.19,0,0,1-.08-.15V14a.15.15,0,0,1,.08-.14l5.16-3a.15.15,0,0,1,.16,0l5.16,3h0a.17.17,0,0,1,.07.13v6a.19.19,0,0,1-.08.15l-5.16,3a.22.22,0,0,1-.16,0l-1.31-.8a.17.17,0,0,0-.14,0,2.77,2.77,0,0,1-.78.35c-.09,0-.22.08.05.22l1.72,1a1,1,0,0,0,.54.15,1,1,0,0,0,.54-.15l5.17-3a1.09,1.09,0,0,0,.54-.94V14A1.09,1.09,0,0,0,23.46,13Z"/><path class="cls-3" d="M19.58,16.5c-1.61-.21-1.77-.32-1.77-.69s.14-.73,1.33-.73c1,0,1.45.23,1.61.94a.15.15,0,0,0,.15.12h.67a.11.11,0,0,0,.1-.05.12.12,0,0,0,0-.11c-.1-1.24-.92-1.81-2.57-1.81-1.47,0-2.36.62-2.36,1.66s.88,1.45,2.3,1.59c1.68.16,1.82.41,1.82.75,0,.57-.47.82-1.55.82-1.38,0-1.67-.34-1.77-1a.17.17,0,0,0-.16-.13h-.66a.14.14,0,0,0-.15.15c0,.86.47,1.91,2.74,1.91,1.63,0,2.57-.65,2.57-1.77S21.17,16.72,19.58,16.5Z"/></svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#c3e88d;}</style></defs><title>folder_node_open</title><path class="cls-1" d="M3.2,7.5V18.75h8.3V14A1.09,1.09,0,0,1,12,13l5.17-3a1.11,1.11,0,0,1,1.08,0l2.51,1.45v-4Z"/><path class="cls-1" d="M19.14,15.08c-1.19,0-1.33.41-1.33.73s.16.48,1.77.69a7.21,7.21,0,0,1,1.22.25V16.1a.22.22,0,0,1-.05-.08C20.59,15.31,20.18,15.08,19.14,15.08Z"/><path class="cls-1" d="M14.68,21h-.44A.82.82,0,0,0,14.68,21Z"/><path class="cls-1" d="M16.61,18a.14.14,0,0,1,.15-.15h.66a.17.17,0,0,1,.16.13,1,1,0,0,0,.44.78h2.57a.67.67,0,0,0,.21-.2v-.68c-.16-.19-.58-.34-1.72-.45-1.42-.14-2.3-.47-2.3-1.59s.89-1.66,2.36-1.66a3.52,3.52,0,0,1,1.66.33V12.56l-3-1.71a.15.15,0,0,0-.16,0l-5.16,3a.15.15,0,0,0-.08.14v4.78h2.73V14.48a.16.16,0,0,1,.16-.15H16a.15.15,0,0,1,.15.15v4.27h.65A1.89,1.89,0,0,1,16.61,18Z"/><path class="cls-2" d="M11.5,19.93V18.75H3.2V7.5H20.8v4L23,12.76V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h9.06L12,20.87A1.09,1.09,0,0,1,11.5,19.93Z"/><path class="cls-3" d="M23.46,13,23,12.76l-2.2-1.27L18.29,10a1.11,1.11,0,0,0-1.08,0L12,13a1.09,1.09,0,0,0-.54.94v6a1.09,1.09,0,0,0,.54.94l.22.13,1.14.65a2.25,2.25,0,0,0,1.18.33A1.36,1.36,0,0,0,16,21a2.1,2.1,0,0,0,.1-.64V14.48a.15.15,0,0,0-.15-.15h-.65a.16.16,0,0,0-.16.15v5.88a.67.67,0,0,1-.48.64.82.82,0,0,1-.44,0,1.45,1.45,0,0,1-.31-.11l-1.42-.81a.19.19,0,0,1-.08-.15V14a.15.15,0,0,1,.08-.14l5.16-3a.15.15,0,0,1,.16,0l3,1.71L23,13.83h0a.17.17,0,0,1,.07.13v6a.19.19,0,0,1-.08.15l-5.16,3a.22.22,0,0,1-.16,0l-1.31-.8a.17.17,0,0,0-.14,0,2.77,2.77,0,0,1-.78.35c-.09,0-.22.08.05.22l1.72,1a1,1,0,0,0,.54.15,1,1,0,0,0,.54-.15l5.17-3a1.09,1.09,0,0,0,.54-.94V14A1.09,1.09,0,0,0,23.46,13Z"/><path class="cls-3" d="M16.78,15.83c0,1.12.88,1.45,2.3,1.59,1.14.11,1.56.26,1.72.45a.42.42,0,0,1,.1.3.8.8,0,0,1-.1.38.67.67,0,0,1-.21.2,2.36,2.36,0,0,1-1.24.24A2.6,2.6,0,0,1,18,18.75a1,1,0,0,1-.44-.78.17.17,0,0,0-.16-.13h-.66a.14.14,0,0,0-.15.15,1.89,1.89,0,0,0,.16.76c.27.62,1,1.15,2.58,1.15s2.57-.65,2.57-1.77a1.31,1.31,0,0,0-1.12-1.38,7.21,7.21,0,0,0-1.22-.25c-1.61-.21-1.77-.32-1.77-.69s.14-.73,1.33-.73c1,0,1.45.23,1.61.94a.22.22,0,0,0,.05.08.18.18,0,0,0,.1,0h.67a.11.11,0,0,0,.1-.05.12.12,0,0,0,0-.11,1.7,1.7,0,0,0-.91-1.48,3.52,3.52,0,0,0-1.66-.33C17.67,14.17,16.78,14.79,16.78,15.83Z"/></svg>
|
Before Width: | Height: | Size: 2.4 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<path fill="#80CBC4" d="M20.8,5.25 L12,5.25 L9.8,3 L3.2,3 C1.99,3 1,4.0125 1,5.25 L1,18.75 C1,19.9875 1.99,21 3.2,21 L20.8,21 C22.01,21 23,19.9875 23,18.75 L23,7.5 C23,6.2625 22.01,5.25 20.8,5.25 Z M20.8,18.75 L3.2,18.75 L3.2,7.5 L20.8,7.5 L20.8,18.75 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 350 B |
|
@ -1,16 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#80CBC4;}
|
||||
.st1{fill:#F78C6C;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M11.5,18.8H3.2V7.5h17.6v3.9l2.2,1V7.5c0-1.2-1-2.2-2.2-2.2H12L9.8,3H3.2C2,3,1,4,1,5.2v13.5C1,20,2,21,3.2,21
|
||||
h8.3v-0.2V18.8z"/>
|
||||
<path class="st1" d="M23,12.4l-2.2-1l-3-1.4l-6.2,2.8v5.9v2V21v0.2l6.2,2.8l6.2-2.8v-8.3L23,12.4z M17.8,11.2l3,1.4l1.5,0.7
|
||||
l-1.5,0.7l-3,1.4l-4.5-2L17.8,11.2z M17.2,22.6L13.6,21l-0.4-0.2l-0.6-0.3v-1.8v-4.8l4.8,2.1v2.7v2V21V22.6z M23,18.6v0.2v1.8
|
||||
l-4.8,2.1V21v-0.2v-2v-2.7l2.5-1.1l2.2-1V18.6z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 883 B |
|
@ -1 +0,0 @@
|
|||
<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:#aa759f;}</style></defs><title>folder_src</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.2a2,2,0,0,1-2.2-2V5.2A2.22,2.22,0,0,1,3.2,3Z"/><polygon class="cls-2" points="18.64 19.51 17.27 20.88 13 16.6 17.27 12.33 18.64 13.7 15.74 16.6 18.64 19.51"/><polygon class="cls-2" points="19.72 24 18.35 22.63 21.26 19.72 18.35 16.82 19.72 15.45 24 19.72 19.72 24"/></svg>
|
Before Width: | Height: | Size: 555 B |
|
@ -1 +0,0 @@
|
|||
<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:#aa759f;}</style></defs><title>folder_src_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"/><polygon class="cls-2" points="18.64 19.51 17.27 20.88 13 16.6 17.27 12.33 18.64 13.7 15.74 16.6 18.64 19.51"/><polygon class="cls-2" points="19.73 24 18.36 22.63 21.26 19.72 18.36 16.82 19.73 15.45 24 19.72 19.73 24"/></svg>
|
Before Width: | Height: | Size: 600 B |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-3{fill:#f4bf75;}</style></defs><title>folder_test</title><path class="cls-1" d="M14.52,20.81a3.47,3.47,0,0,1-.06-.64v-.64H13.18V18.25h1.28v-.64a3.39,3.39,0,0,1,.06-.64H13.18V15.7H15a4,4,0,0,1,1.16-1.26l-1-1,.9-.9,1.39,1.39a3.82,3.82,0,0,1,.9-.11,4,4,0,0,1,.91.11l1.38-1.39.9.9-1,1a3.91,3.91,0,0,1,1.17,1.26H23V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H9.85v0h4.67Z"/><rect class="cls-2" x="17.01" y="20.8" width="2.56" height="0.01"/><path class="cls-1" d="M22.07,17a4.48,4.48,0,0,1,.05.64v.64H23V17Z"/><path class="cls-1" d="M14.46,19.53H13.18V18.25h1.28v-.64a3.39,3.39,0,0,1,.06-.64H13.18V15.7H15a4,4,0,0,1,1.16-1.26l-1-1,.9-.9,1.39,1.39a3.82,3.82,0,0,1,.9-.11,4,4,0,0,1,.91.11l1.38-1.39.9.9-1,1a3.91,3.91,0,0,1,1.17,1.26H23V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2H14.51a4.46,4.46,0,0,1,0-.63Z"/><path class="cls-1" d="M22.12,20.17c0,.06,0,.12,0,.18a2.15,2.15,0,0,0,.67-.82h-.66Z"/><path class="cls-3" d="M22.12,17.61a4.48,4.48,0,0,0-.05-.64H23.4V15.7H21.61a3.91,3.91,0,0,0-1.17-1.26l1-1-.9-.9L19.2,13.89a4,4,0,0,0-.91-.11,3.82,3.82,0,0,0-.9.11L16,12.5l-.9.9,1,1A4,4,0,0,0,15,15.7H13.18V17h1.34a3.39,3.39,0,0,0-.06.64v.64H13.18v1.28h1.28v.64a4.46,4.46,0,0,0,0,.63H13.18v1.26H15a3.83,3.83,0,0,0,6.64,0H23.4V20.81H22.07c0-.15,0-.31,0-.46s0-.12,0-.18v-.64H23.4V18.25H22.12ZM17,17h2.56v1.28H17Zm0,3.84h0V19.53h2.56V20.8H17Z"/></svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#f4bf75;}</style></defs><title>folder_test_open</title><rect class="cls-1" x="17.01" y="16.97" width="2.56" height="1.28"/><path class="cls-1" d="M3.2,7.5V18.75h10v-.5h1.28v-.64a3.39,3.39,0,0,1,.06-.64H13.18V15.7H15a4,4,0,0,1,1.16-1.26l-1-1,.9-.9,1.39,1.39a3.82,3.82,0,0,1,.9-.11,4,4,0,0,1,.91.11l1.38-1.39.22.22V7.5Z"/><path class="cls-1" d="M20.44,14.44c.13.09.24.21.36.31v-.66Z"/><path class="cls-2" d="M22.12,19.53v.64c0,.06,0,.12,0,.18a1.49,1.49,0,0,0,0,.21,2.2,2.2,0,0,0,.77-1h-.74Z"/><path class="cls-2" d="M22.07,17a4.48,4.48,0,0,1,.05.64v.64H23V17Z"/><path class="cls-2" d="M13.18,20.81h1.33a4.46,4.46,0,0,1,0-.63v-.64H13.18v-.78H3.2V7.5H20.8v5.22l.68.68-.68.69v.66a3.89,3.89,0,0,1,.81.95H23V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h10v-.18Z"/><path class="cls-3" d="M22.12,17.61a4.48,4.48,0,0,0-.05-.64H23.4V15.7H21.61a3.89,3.89,0,0,0-.81-.95c-.12-.1-.23-.22-.36-.31l.36-.35.68-.69-.68-.68-.22-.22L19.2,13.89a4,4,0,0,0-.91-.11,3.82,3.82,0,0,0-.9.11L16,12.5l-.9.9,1,1A4,4,0,0,0,15,15.7H13.18V17h1.34a3.39,3.39,0,0,0-.06.64v.64H13.18v1.28h1.28v.64a4.46,4.46,0,0,0,0,.63H13.18v1.26H15a3.83,3.83,0,0,0,6.64,0H23.4V20.81H22.07c0-.08,0-.17,0-.25a1.49,1.49,0,0,1,0-.21c0-.06,0-.12,0-.18v-.64H23.4V18.25H22.12ZM17,17h2.56v1.28H17Zm2.56,2.56V20.8H17V19.53Z"/></svg>
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1 +0,0 @@
|
|||
<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:#ffcb6b;}</style></defs><title>folder_vscode</title><path class="cls-1" d="M13.66,17.18l-3.3-3,1.38-.81,3.35,2.53,6-5.51,1.92.93V7.4a2.22,2.22,0,0,0-2.2-2.2H12L9.8,3H3.2A2.22,2.22,0,0,0,1,5.2V18.8a2,2,0,0,0,2.2,2h8.17l-1-.59Z"/><path class="cls-2" d="M23,11.29l-1.92-.93-6,5.51-3.35-2.53-1.38.81,3.3,3-3.3,3,1,.59.37.22.3-.22,3.05-2.3,2.51,2.3L21.08,24,24,22.58V11.78ZM21.08,14v6.4l-4.25-3.2Z"/></svg>
|
Before Width: | Height: | Size: 540 B |
|
@ -1 +0,0 @@
|
|||
<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:none;}.cls-2{fill:#80cbc4;}.cls-3{fill:#ffcb6b;}</style></defs><title>folder_vscode_open</title><polygon class="cls-1" points="3.2 7.5 3.2 18.75 11.95 18.75 13.66 17.18 10.36 14.15 11.74 13.35 15.09 15.87 20.8 10.62 20.8 7.5 3.2 7.5"/><polygon class="cls-1" points="20.8 14.19 16.83 17.18 18.92 18.75 20.8 18.75 20.8 14.19"/><polygon class="cls-1" points="15.09 18.5 14.76 18.75 15.37 18.75 15.09 18.5"/><path class="cls-2" d="M12,18.75H3.2V7.5H20.8v3.12l.28-.26,1.92.93V7.5a2.23,2.23,0,0,0-2.2-2.25H12L9.8,3H3.2A2.23,2.23,0,0,0,1,5.25v13.5A2.23,2.23,0,0,0,3.2,21h8.51l-1.35-.79Z"/><path class="cls-3" d="M23,11.29l-1.92-.93-.28.26-5.71,5.25-3.35-2.53-1.38.81,3.3,3L12,18.75l-1.59,1.46,1.35.79,0,0,0,0,3-2.25.34-.25.28.25L17.81,21l3.27,3L24,22.58V11.78Zm-6.17,5.89,4-3,.28-.21v6.4l-2.16-1.63Z"/></svg>
|
Before Width: | Height: | Size: 919 B |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
id="svg2"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="font.svg">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="11.898305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<path
|
||||
d="M9.62,12L12,5.67L14.37,12M11,3L5.5,17H7.75L8.87,14H15.12L16.25,17H18.5L13,3H11Z"
|
||||
id="path4"
|
||||
style="fill:#D14748;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,216 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
width="500"
|
||||
height="500"
|
||||
viewBox="0 0 500 500"
|
||||
sodipodi:docname="fsharp.svg">
|
||||
<metadata
|
||||
id="metadata8">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="729"
|
||||
inkscape:window-height="480"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.472"
|
||||
inkscape:cx="250"
|
||||
inkscape:cy="247.88136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<image
|
||||
width="500"
|
||||
height="500"
|
||||
preserveAspectRatio="none"
|
||||
xlink:href="data:image/png;base64,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
|
||||
"
|
||||
id="image10"
|
||||
x="0"
|
||||
y="0" />
|
||||
</svg>
|
Before Width: | Height: | Size: 13 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="33" height="32" viewBox="0 0 33 32">
|
||||
<path fill="#8251A8" d="M12.001,0.007 C5.326,0.007 0.007,5.326 0.007,12 C0.007,18.674 5.326,23.995 12,23.995 C18.674,23.995 23.994,18.676 23.994,12.001 C23.994,5.326 18.676,0.007 12.001,0.007 Z M2.614,12.105 L11.897,21.388 C6.786,21.388 2.614,17.216 2.614,12.105 Z M14.087,21.179 L2.823,9.915 C3.76,5.743 7.516,2.614 12,2.614 C15.006648,2.61987544 17.832097,4.05226752 19.614,6.474 L18.259,7.62 C16.8241347,5.52011799 14.4402591,4.26972613 11.897,4.283 C8.64896151,4.26213976 5.75110679,6.31966896 4.7,9.393 L14.504,19.198 C16.904,18.363 18.78,16.278 19.302,13.774 L15.234,13.774 L15.234,12.001 L21.388,12.001 C21.388,16.486 18.259,20.241 14.087,21.179 Z" transform="translate(5 4)"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 778 B |