├── .gitignore ├── .ncurc.json ├── .prettierignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── .well-known │ └── assetlinks.json ├── CNAME ├── assets │ ├── ar-TN-hXpJlHQz.js │ ├── be-BY-CNG3QvRr.js │ ├── ca-ES-DaFbzlsN.js │ ├── colorworker-CnMNwOdv.js │ ├── da-DK-BOlqBLAC.js │ ├── de-DE-D8j2hVsF.js │ ├── el-GR-CPghj_w6.js │ ├── en-GB-C7JHOrHG.js │ ├── en-US-B0s0BWzt.js │ ├── es-ES-DBc5Zs2w.js │ ├── filehandling-ppwoROA8.js │ ├── fr-FR-B9l2OUfe.js │ ├── he-IL-eg_IqJCK.js │ ├── id-ID-B0V93tcH.js │ ├── index-aEZOVBVk.js │ ├── install-DX-WpHQu.js │ ├── it-IT-CT3hgywc.js │ ├── ja-JP-9Mx_HtSv.js │ ├── ko-KR-CxGXyVbz.js │ ├── languages-BtQEISXM.js │ ├── module-workers-polyfill.min-B4htaMKj.js │ ├── monochromeworker-CYWnkG-H.js │ ├── nl-NL-BPPnxxwY.js │ ├── no-NO-DiHwyl5f.js │ ├── pl-PL-C9v2eRNf.js │ ├── preprocessworker-BsUKOZia.js │ ├── preprocessworker-CehXHJLM.js │ ├── pt-BR-Dd28HDO_.js │ ├── ru-RU-ClHujSzv.js │ ├── share-BJnRZ6E5.js │ ├── style-_m4aWACL.css │ ├── svgoworker-DfXCDkWJ.js │ ├── uk-UA-BbOKxyWq.js │ ├── windowcontrols-B6bju7oe.js │ ├── workbox-window.prod.es5-DFjpnwFp.js │ └── zh-CN-Ce7uxnjN.js ├── badges │ ├── microsoft-store.svg │ ├── play-store.svg │ └── web-browser.svg ├── copyicon.svg ├── favicon-bw.svg ├── favicon.png ├── favicon.svg ├── filtericon.svg ├── index.html ├── installicon.svg ├── manifest.webmanifest ├── moon.svg ├── openicon.svg ├── optionsicon.svg ├── paletteicon.svg ├── pasteicon.svg ├── potraced-color.svg ├── potraced-monochrome.svg ├── privacy_policy.txt ├── saveicon.svg ├── scaleicon.svg ├── screenshots │ ├── desktop-dark.png │ ├── desktop-light.png │ ├── mobile-dark.png │ └── mobile-light.png ├── shareicon.svg ├── shareiconmac.svg ├── sharetargetsw.js ├── spinner.svg ├── sun.svg ├── sw.js ├── tuneicon.svg └── workbox-3e911b1d.js ├── index.html ├── package.json ├── public ├── .well-known │ └── assetlinks.json ├── badges │ ├── microsoft-store.svg │ ├── play-store.svg │ └── web-browser.svg ├── copyicon.svg ├── favicon-bw.svg ├── favicon.png ├── favicon.svg ├── filtericon.svg ├── installicon.svg ├── moon.svg ├── openicon.svg ├── optionsicon.svg ├── paletteicon.svg ├── pasteicon.svg ├── potraced-color.svg ├── potraced-monochrome.svg ├── privacy_policy.txt ├── saveicon.svg ├── scaleicon.svg ├── screenshots │ ├── desktop-dark.png │ ├── desktop-light.png │ ├── mobile-dark.png │ └── mobile-light.png ├── shareicon.svg ├── shareiconmac.svg ├── sharetargetsw.js ├── spinner.svg ├── sun.svg └── tuneicon.svg ├── scripts └── icons.mjs ├── src ├── css │ ├── dark.css │ ├── light.css │ └── style.css ├── i18n │ ├── ar-TN.js │ ├── be-BY.js │ ├── ca-ES.js │ ├── da-DK.js │ ├── de-DE.js │ ├── el-GR.js │ ├── en-GB.js │ ├── en-US.js │ ├── es-ES.js │ ├── fr-FR.js │ ├── he-IL.js │ ├── id-ID.js │ ├── it-IT.js │ ├── ja-JP.js │ ├── ko-KR.js │ ├── languages.js │ ├── nl-NL.js │ ├── no-NO.js │ ├── pl-PL.js │ ├── pt-BR.js │ ├── ru-RU.js │ ├── uk-UA.js │ └── zh-CN.js ├── js │ ├── clipboard.js │ ├── color.js │ ├── colorworker.js │ ├── domrefs.js │ ├── filehandling.js │ ├── filesystem.js │ ├── i18n.js │ ├── install.js │ ├── main.js │ ├── monochrome.js │ ├── monochromeworker.js │ ├── orchestrate.js │ ├── panzoom.js │ ├── preprocess.js │ ├── preprocessworker.js │ ├── share.js │ ├── svgo.js │ ├── svgoworker.js │ ├── ui.js │ ├── util.js │ └── windowcontrols.js └── manifest.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.local 4 | /.idea/ 5 | -------------------------------------------------------------------------------- /.ncurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/.ncurc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/.well-known/assetlinks.json -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | svgco.de 2 | -------------------------------------------------------------------------------- /docs/assets/ar-TN-hXpJlHQz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/ar-TN-hXpJlHQz.js -------------------------------------------------------------------------------- /docs/assets/be-BY-CNG3QvRr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/be-BY-CNG3QvRr.js -------------------------------------------------------------------------------- /docs/assets/ca-ES-DaFbzlsN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/ca-ES-DaFbzlsN.js -------------------------------------------------------------------------------- /docs/assets/colorworker-CnMNwOdv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/colorworker-CnMNwOdv.js -------------------------------------------------------------------------------- /docs/assets/da-DK-BOlqBLAC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/da-DK-BOlqBLAC.js -------------------------------------------------------------------------------- /docs/assets/de-DE-D8j2hVsF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/de-DE-D8j2hVsF.js -------------------------------------------------------------------------------- /docs/assets/el-GR-CPghj_w6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/el-GR-CPghj_w6.js -------------------------------------------------------------------------------- /docs/assets/en-GB-C7JHOrHG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/en-GB-C7JHOrHG.js -------------------------------------------------------------------------------- /docs/assets/en-US-B0s0BWzt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/en-US-B0s0BWzt.js -------------------------------------------------------------------------------- /docs/assets/es-ES-DBc5Zs2w.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/es-ES-DBc5Zs2w.js -------------------------------------------------------------------------------- /docs/assets/filehandling-ppwoROA8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/filehandling-ppwoROA8.js -------------------------------------------------------------------------------- /docs/assets/fr-FR-B9l2OUfe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/fr-FR-B9l2OUfe.js -------------------------------------------------------------------------------- /docs/assets/he-IL-eg_IqJCK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/he-IL-eg_IqJCK.js -------------------------------------------------------------------------------- /docs/assets/id-ID-B0V93tcH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/id-ID-B0V93tcH.js -------------------------------------------------------------------------------- /docs/assets/index-aEZOVBVk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/index-aEZOVBVk.js -------------------------------------------------------------------------------- /docs/assets/install-DX-WpHQu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/install-DX-WpHQu.js -------------------------------------------------------------------------------- /docs/assets/it-IT-CT3hgywc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/it-IT-CT3hgywc.js -------------------------------------------------------------------------------- /docs/assets/ja-JP-9Mx_HtSv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/ja-JP-9Mx_HtSv.js -------------------------------------------------------------------------------- /docs/assets/ko-KR-CxGXyVbz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/ko-KR-CxGXyVbz.js -------------------------------------------------------------------------------- /docs/assets/languages-BtQEISXM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/languages-BtQEISXM.js -------------------------------------------------------------------------------- /docs/assets/module-workers-polyfill.min-B4htaMKj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/module-workers-polyfill.min-B4htaMKj.js -------------------------------------------------------------------------------- /docs/assets/monochromeworker-CYWnkG-H.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/monochromeworker-CYWnkG-H.js -------------------------------------------------------------------------------- /docs/assets/nl-NL-BPPnxxwY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/nl-NL-BPPnxxwY.js -------------------------------------------------------------------------------- /docs/assets/no-NO-DiHwyl5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/no-NO-DiHwyl5f.js -------------------------------------------------------------------------------- /docs/assets/pl-PL-C9v2eRNf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/pl-PL-C9v2eRNf.js -------------------------------------------------------------------------------- /docs/assets/preprocessworker-BsUKOZia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/preprocessworker-BsUKOZia.js -------------------------------------------------------------------------------- /docs/assets/preprocessworker-CehXHJLM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/preprocessworker-CehXHJLM.js -------------------------------------------------------------------------------- /docs/assets/pt-BR-Dd28HDO_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/pt-BR-Dd28HDO_.js -------------------------------------------------------------------------------- /docs/assets/ru-RU-ClHujSzv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/ru-RU-ClHujSzv.js -------------------------------------------------------------------------------- /docs/assets/share-BJnRZ6E5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/share-BJnRZ6E5.js -------------------------------------------------------------------------------- /docs/assets/style-_m4aWACL.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/style-_m4aWACL.css -------------------------------------------------------------------------------- /docs/assets/svgoworker-DfXCDkWJ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/svgoworker-DfXCDkWJ.js -------------------------------------------------------------------------------- /docs/assets/uk-UA-BbOKxyWq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/uk-UA-BbOKxyWq.js -------------------------------------------------------------------------------- /docs/assets/windowcontrols-B6bju7oe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/windowcontrols-B6bju7oe.js -------------------------------------------------------------------------------- /docs/assets/workbox-window.prod.es5-DFjpnwFp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/workbox-window.prod.es5-DFjpnwFp.js -------------------------------------------------------------------------------- /docs/assets/zh-CN-Ce7uxnjN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/assets/zh-CN-Ce7uxnjN.js -------------------------------------------------------------------------------- /docs/badges/microsoft-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/badges/microsoft-store.svg -------------------------------------------------------------------------------- /docs/badges/play-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/badges/play-store.svg -------------------------------------------------------------------------------- /docs/badges/web-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/badges/web-browser.svg -------------------------------------------------------------------------------- /docs/copyicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/copyicon.svg -------------------------------------------------------------------------------- /docs/favicon-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/favicon-bw.svg -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/filtericon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/filtericon.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/installicon.svg -------------------------------------------------------------------------------- /docs/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/manifest.webmanifest -------------------------------------------------------------------------------- /docs/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/moon.svg -------------------------------------------------------------------------------- /docs/openicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/openicon.svg -------------------------------------------------------------------------------- /docs/optionsicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/optionsicon.svg -------------------------------------------------------------------------------- /docs/paletteicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/paletteicon.svg -------------------------------------------------------------------------------- /docs/pasteicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/pasteicon.svg -------------------------------------------------------------------------------- /docs/potraced-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/potraced-color.svg -------------------------------------------------------------------------------- /docs/potraced-monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/potraced-monochrome.svg -------------------------------------------------------------------------------- /docs/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/privacy_policy.txt -------------------------------------------------------------------------------- /docs/saveicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/saveicon.svg -------------------------------------------------------------------------------- /docs/scaleicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/scaleicon.svg -------------------------------------------------------------------------------- /docs/screenshots/desktop-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/screenshots/desktop-dark.png -------------------------------------------------------------------------------- /docs/screenshots/desktop-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/screenshots/desktop-light.png -------------------------------------------------------------------------------- /docs/screenshots/mobile-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/screenshots/mobile-dark.png -------------------------------------------------------------------------------- /docs/screenshots/mobile-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/screenshots/mobile-light.png -------------------------------------------------------------------------------- /docs/shareicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/shareicon.svg -------------------------------------------------------------------------------- /docs/shareiconmac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/shareiconmac.svg -------------------------------------------------------------------------------- /docs/sharetargetsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/sharetargetsw.js -------------------------------------------------------------------------------- /docs/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/spinner.svg -------------------------------------------------------------------------------- /docs/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/sun.svg -------------------------------------------------------------------------------- /docs/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/sw.js -------------------------------------------------------------------------------- /docs/tuneicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/tuneicon.svg -------------------------------------------------------------------------------- /docs/workbox-3e911b1d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/docs/workbox-3e911b1d.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/package.json -------------------------------------------------------------------------------- /public/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/.well-known/assetlinks.json -------------------------------------------------------------------------------- /public/badges/microsoft-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/badges/microsoft-store.svg -------------------------------------------------------------------------------- /public/badges/play-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/badges/play-store.svg -------------------------------------------------------------------------------- /public/badges/web-browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/badges/web-browser.svg -------------------------------------------------------------------------------- /public/copyicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/copyicon.svg -------------------------------------------------------------------------------- /public/favicon-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/favicon-bw.svg -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/filtericon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/filtericon.svg -------------------------------------------------------------------------------- /public/installicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/installicon.svg -------------------------------------------------------------------------------- /public/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/moon.svg -------------------------------------------------------------------------------- /public/openicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/openicon.svg -------------------------------------------------------------------------------- /public/optionsicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/optionsicon.svg -------------------------------------------------------------------------------- /public/paletteicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/paletteicon.svg -------------------------------------------------------------------------------- /public/pasteicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/pasteicon.svg -------------------------------------------------------------------------------- /public/potraced-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/potraced-color.svg -------------------------------------------------------------------------------- /public/potraced-monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/potraced-monochrome.svg -------------------------------------------------------------------------------- /public/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/privacy_policy.txt -------------------------------------------------------------------------------- /public/saveicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/saveicon.svg -------------------------------------------------------------------------------- /public/scaleicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/scaleicon.svg -------------------------------------------------------------------------------- /public/screenshots/desktop-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/screenshots/desktop-dark.png -------------------------------------------------------------------------------- /public/screenshots/desktop-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/screenshots/desktop-light.png -------------------------------------------------------------------------------- /public/screenshots/mobile-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/screenshots/mobile-dark.png -------------------------------------------------------------------------------- /public/screenshots/mobile-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/screenshots/mobile-light.png -------------------------------------------------------------------------------- /public/shareicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/shareicon.svg -------------------------------------------------------------------------------- /public/shareiconmac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/shareiconmac.svg -------------------------------------------------------------------------------- /public/sharetargetsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/sharetargetsw.js -------------------------------------------------------------------------------- /public/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/spinner.svg -------------------------------------------------------------------------------- /public/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/sun.svg -------------------------------------------------------------------------------- /public/tuneicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/public/tuneicon.svg -------------------------------------------------------------------------------- /scripts/icons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/scripts/icons.mjs -------------------------------------------------------------------------------- /src/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/css/dark.css -------------------------------------------------------------------------------- /src/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/css/light.css -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/i18n/ar-TN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/ar-TN.js -------------------------------------------------------------------------------- /src/i18n/be-BY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/be-BY.js -------------------------------------------------------------------------------- /src/i18n/ca-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/ca-ES.js -------------------------------------------------------------------------------- /src/i18n/da-DK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/da-DK.js -------------------------------------------------------------------------------- /src/i18n/de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/de-DE.js -------------------------------------------------------------------------------- /src/i18n/el-GR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/el-GR.js -------------------------------------------------------------------------------- /src/i18n/en-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/en-GB.js -------------------------------------------------------------------------------- /src/i18n/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/en-US.js -------------------------------------------------------------------------------- /src/i18n/es-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/es-ES.js -------------------------------------------------------------------------------- /src/i18n/fr-FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/fr-FR.js -------------------------------------------------------------------------------- /src/i18n/he-IL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/he-IL.js -------------------------------------------------------------------------------- /src/i18n/id-ID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/id-ID.js -------------------------------------------------------------------------------- /src/i18n/it-IT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/it-IT.js -------------------------------------------------------------------------------- /src/i18n/ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/ja-JP.js -------------------------------------------------------------------------------- /src/i18n/ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/ko-KR.js -------------------------------------------------------------------------------- /src/i18n/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/languages.js -------------------------------------------------------------------------------- /src/i18n/nl-NL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/nl-NL.js -------------------------------------------------------------------------------- /src/i18n/no-NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/no-NO.js -------------------------------------------------------------------------------- /src/i18n/pl-PL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/pl-PL.js -------------------------------------------------------------------------------- /src/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/pt-BR.js -------------------------------------------------------------------------------- /src/i18n/ru-RU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/ru-RU.js -------------------------------------------------------------------------------- /src/i18n/uk-UA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/uk-UA.js -------------------------------------------------------------------------------- /src/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/i18n/zh-CN.js -------------------------------------------------------------------------------- /src/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/clipboard.js -------------------------------------------------------------------------------- /src/js/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/color.js -------------------------------------------------------------------------------- /src/js/colorworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/colorworker.js -------------------------------------------------------------------------------- /src/js/domrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/domrefs.js -------------------------------------------------------------------------------- /src/js/filehandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/filehandling.js -------------------------------------------------------------------------------- /src/js/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/filesystem.js -------------------------------------------------------------------------------- /src/js/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/i18n.js -------------------------------------------------------------------------------- /src/js/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/install.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/monochrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/monochrome.js -------------------------------------------------------------------------------- /src/js/monochromeworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/monochromeworker.js -------------------------------------------------------------------------------- /src/js/orchestrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/orchestrate.js -------------------------------------------------------------------------------- /src/js/panzoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/panzoom.js -------------------------------------------------------------------------------- /src/js/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/preprocess.js -------------------------------------------------------------------------------- /src/js/preprocessworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/preprocessworker.js -------------------------------------------------------------------------------- /src/js/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/share.js -------------------------------------------------------------------------------- /src/js/svgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/svgo.js -------------------------------------------------------------------------------- /src/js/svgoworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/svgoworker.js -------------------------------------------------------------------------------- /src/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/ui.js -------------------------------------------------------------------------------- /src/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/util.js -------------------------------------------------------------------------------- /src/js/windowcontrols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/js/windowcontrols.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/src/manifest.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomayac/SVGcode/HEAD/vite.config.js --------------------------------------------------------------------------------