From bc5326598a0a89f34cc146fc210e398d8c457fbc Mon Sep 17 00:00:00 2001 From: "J. Lewis" <6710419+lewxdev@users.noreply.github.com> Date: Thu, 14 Mar 2024 19:07:37 -0400 Subject: [PATCH] feat: minimal icon theme --- package.json | 10 ++++- theme/icons/dark/angular.svg | 3 ++ theme/icons/dark/archive.svg | 3 ++ theme/icons/dark/audio.svg | 3 ++ theme/icons/dark/braces.svg | 3 ++ theme/icons/dark/brackets.svg | 3 ++ theme/icons/dark/camera.svg | 3 ++ theme/icons/dark/cert.svg | 3 ++ theme/icons/dark/commit.svg | 3 ++ theme/icons/dark/copy.svg | 3 ++ theme/icons/dark/database.svg | 3 ++ theme/icons/dark/docs.svg | 3 ++ theme/icons/dark/eslint.svg | 4 ++ theme/icons/dark/expo.svg | 3 ++ theme/icons/dark/file.svg | 3 ++ theme/icons/dark/fingerprint.svg | 3 ++ theme/icons/dark/folder-expanded.svg | 3 ++ theme/icons/dark/folder.svg | 3 ++ theme/icons/dark/foss.svg | 3 ++ theme/icons/dark/gatsby.svg | 3 ++ theme/icons/dark/gear.svg | 3 ++ theme/icons/dark/git.svg | 3 ++ theme/icons/dark/history.svg | 3 ++ theme/icons/dark/i18n.svg | 3 ++ theme/icons/dark/image.svg | 3 ++ theme/icons/dark/indent.svg | 3 ++ theme/icons/dark/info.svg | 4 ++ theme/icons/dark/lock.svg | 3 ++ theme/icons/dark/merge.svg | 3 ++ theme/icons/dark/microsoft.svg | 6 +++ theme/icons/dark/next.svg | 3 ++ theme/icons/dark/parens.svg | 3 ++ theme/icons/dark/prisma.svg | 3 ++ theme/icons/dark/react.svg | 4 ++ theme/icons/dark/root-folder-expanded.svg | 4 ++ theme/icons/dark/root-folder.svg | 4 ++ theme/icons/dark/shell.svg | 3 ++ theme/icons/dark/shield.svg | 3 ++ theme/icons/dark/svelte.svg | 3 ++ theme/icons/dark/table.svg | 3 ++ theme/icons/dark/tag.svg | 3 ++ theme/icons/dark/test.svg | 3 ++ theme/icons/dark/text.svg | 3 ++ theme/icons/dark/vercel.svg | 3 ++ theme/icons/dark/video.svg | 3 ++ theme/icons/dark/vue.svg | 3 ++ theme/icons/light/angular.svg | 3 ++ theme/icons/light/archive.svg | 3 ++ theme/icons/light/audio.svg | 3 ++ theme/icons/light/braces.svg | 3 ++ theme/icons/light/brackets.svg | 3 ++ theme/icons/light/camera.svg | 3 ++ theme/icons/light/cert.svg | 3 ++ theme/icons/light/commit.svg | 3 ++ theme/icons/light/copy.svg | 3 ++ theme/icons/light/database.svg | 3 ++ theme/icons/light/docs.svg | 3 ++ theme/icons/light/eslint.svg | 4 ++ theme/icons/light/expo.svg | 3 ++ theme/icons/light/file.svg | 3 ++ theme/icons/light/fingerprint.svg | 3 ++ theme/icons/light/folder-expanded.svg | 3 ++ theme/icons/light/folder.svg | 3 ++ theme/icons/light/foss.svg | 3 ++ theme/icons/light/gatsby.svg | 3 ++ theme/icons/light/gear.svg | 3 ++ theme/icons/light/git.svg | 3 ++ theme/icons/light/history.svg | 3 ++ theme/icons/light/i18n.svg | 3 ++ theme/icons/light/image.svg | 3 ++ theme/icons/light/indent.svg | 3 ++ theme/icons/light/info.svg | 4 ++ theme/icons/light/lock.svg | 3 ++ theme/icons/light/merge.svg | 3 ++ theme/icons/light/microsoft.svg | 6 +++ theme/icons/light/next.svg | 3 ++ theme/icons/light/parens.svg | 3 ++ theme/icons/light/prisma.svg | 3 ++ theme/icons/light/react.svg | 4 ++ theme/icons/light/root-folder-expanded.svg | 4 ++ theme/icons/light/root-folder.svg | 4 ++ theme/icons/light/shell.svg | 3 ++ theme/icons/light/shield.svg | 3 ++ theme/icons/light/svelte.svg | 3 ++ theme/icons/light/table.svg | 3 ++ theme/icons/light/tag.svg | 3 ++ theme/icons/light/test.svg | 3 ++ theme/icons/light/text.svg | 3 ++ theme/icons/light/vercel.svg | 3 ++ theme/icons/light/video.svg | 3 ++ theme/icons/light/vue.svg | 3 ++ theme/minimal-icon-theme.json | 47 ++++++++++++++++++++++ 92 files changed, 342 insertions(+), 1 deletion(-) create mode 100644 theme/icons/dark/angular.svg create mode 100644 theme/icons/dark/archive.svg create mode 100644 theme/icons/dark/audio.svg create mode 100644 theme/icons/dark/braces.svg create mode 100644 theme/icons/dark/brackets.svg create mode 100644 theme/icons/dark/camera.svg create mode 100644 theme/icons/dark/cert.svg create mode 100644 theme/icons/dark/commit.svg create mode 100644 theme/icons/dark/copy.svg create mode 100644 theme/icons/dark/database.svg create mode 100644 theme/icons/dark/docs.svg create mode 100644 theme/icons/dark/eslint.svg create mode 100644 theme/icons/dark/expo.svg create mode 100644 theme/icons/dark/file.svg create mode 100644 theme/icons/dark/fingerprint.svg create mode 100644 theme/icons/dark/folder-expanded.svg create mode 100644 theme/icons/dark/folder.svg create mode 100644 theme/icons/dark/foss.svg create mode 100644 theme/icons/dark/gatsby.svg create mode 100644 theme/icons/dark/gear.svg create mode 100644 theme/icons/dark/git.svg create mode 100644 theme/icons/dark/history.svg create mode 100644 theme/icons/dark/i18n.svg create mode 100644 theme/icons/dark/image.svg create mode 100644 theme/icons/dark/indent.svg create mode 100644 theme/icons/dark/info.svg create mode 100644 theme/icons/dark/lock.svg create mode 100644 theme/icons/dark/merge.svg create mode 100644 theme/icons/dark/microsoft.svg create mode 100644 theme/icons/dark/next.svg create mode 100644 theme/icons/dark/parens.svg create mode 100644 theme/icons/dark/prisma.svg create mode 100644 theme/icons/dark/react.svg create mode 100644 theme/icons/dark/root-folder-expanded.svg create mode 100644 theme/icons/dark/root-folder.svg create mode 100644 theme/icons/dark/shell.svg create mode 100644 theme/icons/dark/shield.svg create mode 100644 theme/icons/dark/svelte.svg create mode 100644 theme/icons/dark/table.svg create mode 100644 theme/icons/dark/tag.svg create mode 100644 theme/icons/dark/test.svg create mode 100644 theme/icons/dark/text.svg create mode 100644 theme/icons/dark/vercel.svg create mode 100644 theme/icons/dark/video.svg create mode 100644 theme/icons/dark/vue.svg create mode 100644 theme/icons/light/angular.svg create mode 100644 theme/icons/light/archive.svg create mode 100644 theme/icons/light/audio.svg create mode 100644 theme/icons/light/braces.svg create mode 100644 theme/icons/light/brackets.svg create mode 100644 theme/icons/light/camera.svg create mode 100644 theme/icons/light/cert.svg create mode 100644 theme/icons/light/commit.svg create mode 100644 theme/icons/light/copy.svg create mode 100644 theme/icons/light/database.svg create mode 100644 theme/icons/light/docs.svg create mode 100644 theme/icons/light/eslint.svg create mode 100644 theme/icons/light/expo.svg create mode 100644 theme/icons/light/file.svg create mode 100644 theme/icons/light/fingerprint.svg create mode 100644 theme/icons/light/folder-expanded.svg create mode 100644 theme/icons/light/folder.svg create mode 100644 theme/icons/light/foss.svg create mode 100644 theme/icons/light/gatsby.svg create mode 100644 theme/icons/light/gear.svg create mode 100644 theme/icons/light/git.svg create mode 100644 theme/icons/light/history.svg create mode 100644 theme/icons/light/i18n.svg create mode 100644 theme/icons/light/image.svg create mode 100644 theme/icons/light/indent.svg create mode 100644 theme/icons/light/info.svg create mode 100644 theme/icons/light/lock.svg create mode 100644 theme/icons/light/merge.svg create mode 100644 theme/icons/light/microsoft.svg create mode 100644 theme/icons/light/next.svg create mode 100644 theme/icons/light/parens.svg create mode 100644 theme/icons/light/prisma.svg create mode 100644 theme/icons/light/react.svg create mode 100644 theme/icons/light/root-folder-expanded.svg create mode 100644 theme/icons/light/root-folder.svg create mode 100644 theme/icons/light/shell.svg create mode 100644 theme/icons/light/shield.svg create mode 100644 theme/icons/light/svelte.svg create mode 100644 theme/icons/light/table.svg create mode 100644 theme/icons/light/tag.svg create mode 100644 theme/icons/light/test.svg create mode 100644 theme/icons/light/text.svg create mode 100644 theme/icons/light/vercel.svg create mode 100644 theme/icons/light/video.svg create mode 100644 theme/icons/light/vue.svg create mode 100644 theme/minimal-icon-theme.json diff --git a/package.json b/package.json index 4e067d9..3fd2cc8 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,15 @@ "minimal", "theme" ], - "contributes": {}, + "contributes": { + "iconThemes": [ + { + "id": "glyph.minimal", + "label": "%iconThemeLabelMinimal%", + "path": "./theme/minimal-icon-theme.json" + } + ] + }, "scripts": { "prepare": "husky" }, diff --git a/theme/icons/dark/angular.svg b/theme/icons/dark/angular.svg new file mode 100644 index 0000000..0380ea2 --- /dev/null +++ b/theme/icons/dark/angular.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/archive.svg b/theme/icons/dark/archive.svg new file mode 100644 index 0000000..8b5bbb2 --- /dev/null +++ b/theme/icons/dark/archive.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/audio.svg b/theme/icons/dark/audio.svg new file mode 100644 index 0000000..2703999 --- /dev/null +++ b/theme/icons/dark/audio.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/braces.svg b/theme/icons/dark/braces.svg new file mode 100644 index 0000000..913bf9e --- /dev/null +++ b/theme/icons/dark/braces.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/brackets.svg b/theme/icons/dark/brackets.svg new file mode 100644 index 0000000..6680e5f --- /dev/null +++ b/theme/icons/dark/brackets.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/camera.svg b/theme/icons/dark/camera.svg new file mode 100644 index 0000000..0806fb9 --- /dev/null +++ b/theme/icons/dark/camera.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/cert.svg b/theme/icons/dark/cert.svg new file mode 100644 index 0000000..ebe0d33 --- /dev/null +++ b/theme/icons/dark/cert.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/commit.svg b/theme/icons/dark/commit.svg new file mode 100644 index 0000000..1478334 --- /dev/null +++ b/theme/icons/dark/commit.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/copy.svg b/theme/icons/dark/copy.svg new file mode 100644 index 0000000..b43e9bb --- /dev/null +++ b/theme/icons/dark/copy.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/database.svg b/theme/icons/dark/database.svg new file mode 100644 index 0000000..1f2c878 --- /dev/null +++ b/theme/icons/dark/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/docs.svg b/theme/icons/dark/docs.svg new file mode 100644 index 0000000..4293a6c --- /dev/null +++ b/theme/icons/dark/docs.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/eslint.svg b/theme/icons/dark/eslint.svg new file mode 100644 index 0000000..03a21bb --- /dev/null +++ b/theme/icons/dark/eslint.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/dark/expo.svg b/theme/icons/dark/expo.svg new file mode 100644 index 0000000..294424b --- /dev/null +++ b/theme/icons/dark/expo.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/file.svg b/theme/icons/dark/file.svg new file mode 100644 index 0000000..2799f2f --- /dev/null +++ b/theme/icons/dark/file.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/fingerprint.svg b/theme/icons/dark/fingerprint.svg new file mode 100644 index 0000000..ea127ae --- /dev/null +++ b/theme/icons/dark/fingerprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/folder-expanded.svg b/theme/icons/dark/folder-expanded.svg new file mode 100644 index 0000000..2c08c0d --- /dev/null +++ b/theme/icons/dark/folder-expanded.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/folder.svg b/theme/icons/dark/folder.svg new file mode 100644 index 0000000..ce80106 --- /dev/null +++ b/theme/icons/dark/folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/foss.svg b/theme/icons/dark/foss.svg new file mode 100644 index 0000000..0093a16 --- /dev/null +++ b/theme/icons/dark/foss.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/gatsby.svg b/theme/icons/dark/gatsby.svg new file mode 100644 index 0000000..b51bede --- /dev/null +++ b/theme/icons/dark/gatsby.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/gear.svg b/theme/icons/dark/gear.svg new file mode 100644 index 0000000..2d1fd9e --- /dev/null +++ b/theme/icons/dark/gear.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/git.svg b/theme/icons/dark/git.svg new file mode 100644 index 0000000..08c5ad1 --- /dev/null +++ b/theme/icons/dark/git.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/history.svg b/theme/icons/dark/history.svg new file mode 100644 index 0000000..90f8f65 --- /dev/null +++ b/theme/icons/dark/history.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/i18n.svg b/theme/icons/dark/i18n.svg new file mode 100644 index 0000000..082f6a9 --- /dev/null +++ b/theme/icons/dark/i18n.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/image.svg b/theme/icons/dark/image.svg new file mode 100644 index 0000000..21c7a00 --- /dev/null +++ b/theme/icons/dark/image.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/indent.svg b/theme/icons/dark/indent.svg new file mode 100644 index 0000000..5db3681 --- /dev/null +++ b/theme/icons/dark/indent.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/info.svg b/theme/icons/dark/info.svg new file mode 100644 index 0000000..7655089 --- /dev/null +++ b/theme/icons/dark/info.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/dark/lock.svg b/theme/icons/dark/lock.svg new file mode 100644 index 0000000..c777d29 --- /dev/null +++ b/theme/icons/dark/lock.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/merge.svg b/theme/icons/dark/merge.svg new file mode 100644 index 0000000..5e84760 --- /dev/null +++ b/theme/icons/dark/merge.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/microsoft.svg b/theme/icons/dark/microsoft.svg new file mode 100644 index 0000000..6074eb8 --- /dev/null +++ b/theme/icons/dark/microsoft.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/theme/icons/dark/next.svg b/theme/icons/dark/next.svg new file mode 100644 index 0000000..575213d --- /dev/null +++ b/theme/icons/dark/next.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/parens.svg b/theme/icons/dark/parens.svg new file mode 100644 index 0000000..d4ab253 --- /dev/null +++ b/theme/icons/dark/parens.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/prisma.svg b/theme/icons/dark/prisma.svg new file mode 100644 index 0000000..27cc623 --- /dev/null +++ b/theme/icons/dark/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/react.svg b/theme/icons/dark/react.svg new file mode 100644 index 0000000..01ef350 --- /dev/null +++ b/theme/icons/dark/react.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/dark/root-folder-expanded.svg b/theme/icons/dark/root-folder-expanded.svg new file mode 100644 index 0000000..ce412be --- /dev/null +++ b/theme/icons/dark/root-folder-expanded.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/dark/root-folder.svg b/theme/icons/dark/root-folder.svg new file mode 100644 index 0000000..16019c0 --- /dev/null +++ b/theme/icons/dark/root-folder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/dark/shell.svg b/theme/icons/dark/shell.svg new file mode 100644 index 0000000..15b86b4 --- /dev/null +++ b/theme/icons/dark/shell.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/shield.svg b/theme/icons/dark/shield.svg new file mode 100644 index 0000000..4b84439 --- /dev/null +++ b/theme/icons/dark/shield.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/svelte.svg b/theme/icons/dark/svelte.svg new file mode 100644 index 0000000..6d42020 --- /dev/null +++ b/theme/icons/dark/svelte.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/table.svg b/theme/icons/dark/table.svg new file mode 100644 index 0000000..06a82e4 --- /dev/null +++ b/theme/icons/dark/table.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/tag.svg b/theme/icons/dark/tag.svg new file mode 100644 index 0000000..3c011da --- /dev/null +++ b/theme/icons/dark/tag.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/test.svg b/theme/icons/dark/test.svg new file mode 100644 index 0000000..c49af91 --- /dev/null +++ b/theme/icons/dark/test.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/text.svg b/theme/icons/dark/text.svg new file mode 100644 index 0000000..456cb58 --- /dev/null +++ b/theme/icons/dark/text.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/vercel.svg b/theme/icons/dark/vercel.svg new file mode 100644 index 0000000..d957779 --- /dev/null +++ b/theme/icons/dark/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/video.svg b/theme/icons/dark/video.svg new file mode 100644 index 0000000..2a9b544 --- /dev/null +++ b/theme/icons/dark/video.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/dark/vue.svg b/theme/icons/dark/vue.svg new file mode 100644 index 0000000..293623c --- /dev/null +++ b/theme/icons/dark/vue.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/angular.svg b/theme/icons/light/angular.svg new file mode 100644 index 0000000..5734d04 --- /dev/null +++ b/theme/icons/light/angular.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/archive.svg b/theme/icons/light/archive.svg new file mode 100644 index 0000000..f418bd8 --- /dev/null +++ b/theme/icons/light/archive.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/audio.svg b/theme/icons/light/audio.svg new file mode 100644 index 0000000..34c5d3b --- /dev/null +++ b/theme/icons/light/audio.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/braces.svg b/theme/icons/light/braces.svg new file mode 100644 index 0000000..9bbbca6 --- /dev/null +++ b/theme/icons/light/braces.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/brackets.svg b/theme/icons/light/brackets.svg new file mode 100644 index 0000000..e1db4a2 --- /dev/null +++ b/theme/icons/light/brackets.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/camera.svg b/theme/icons/light/camera.svg new file mode 100644 index 0000000..7951552 --- /dev/null +++ b/theme/icons/light/camera.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/cert.svg b/theme/icons/light/cert.svg new file mode 100644 index 0000000..b4a94c6 --- /dev/null +++ b/theme/icons/light/cert.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/commit.svg b/theme/icons/light/commit.svg new file mode 100644 index 0000000..ef2215f --- /dev/null +++ b/theme/icons/light/commit.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/copy.svg b/theme/icons/light/copy.svg new file mode 100644 index 0000000..4b5979d --- /dev/null +++ b/theme/icons/light/copy.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/database.svg b/theme/icons/light/database.svg new file mode 100644 index 0000000..4023535 --- /dev/null +++ b/theme/icons/light/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/docs.svg b/theme/icons/light/docs.svg new file mode 100644 index 0000000..efb5e13 --- /dev/null +++ b/theme/icons/light/docs.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/eslint.svg b/theme/icons/light/eslint.svg new file mode 100644 index 0000000..66850a6 --- /dev/null +++ b/theme/icons/light/eslint.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/light/expo.svg b/theme/icons/light/expo.svg new file mode 100644 index 0000000..612db31 --- /dev/null +++ b/theme/icons/light/expo.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/file.svg b/theme/icons/light/file.svg new file mode 100644 index 0000000..36c9cf1 --- /dev/null +++ b/theme/icons/light/file.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/fingerprint.svg b/theme/icons/light/fingerprint.svg new file mode 100644 index 0000000..5e84d80 --- /dev/null +++ b/theme/icons/light/fingerprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/folder-expanded.svg b/theme/icons/light/folder-expanded.svg new file mode 100644 index 0000000..841bb2d --- /dev/null +++ b/theme/icons/light/folder-expanded.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/folder.svg b/theme/icons/light/folder.svg new file mode 100644 index 0000000..7539de5 --- /dev/null +++ b/theme/icons/light/folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/foss.svg b/theme/icons/light/foss.svg new file mode 100644 index 0000000..712fabe --- /dev/null +++ b/theme/icons/light/foss.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/gatsby.svg b/theme/icons/light/gatsby.svg new file mode 100644 index 0000000..e4935d8 --- /dev/null +++ b/theme/icons/light/gatsby.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/gear.svg b/theme/icons/light/gear.svg new file mode 100644 index 0000000..cd43133 --- /dev/null +++ b/theme/icons/light/gear.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/git.svg b/theme/icons/light/git.svg new file mode 100644 index 0000000..83eeb68 --- /dev/null +++ b/theme/icons/light/git.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/history.svg b/theme/icons/light/history.svg new file mode 100644 index 0000000..3a464d3 --- /dev/null +++ b/theme/icons/light/history.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/i18n.svg b/theme/icons/light/i18n.svg new file mode 100644 index 0000000..fcc34b7 --- /dev/null +++ b/theme/icons/light/i18n.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/image.svg b/theme/icons/light/image.svg new file mode 100644 index 0000000..26059c4 --- /dev/null +++ b/theme/icons/light/image.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/indent.svg b/theme/icons/light/indent.svg new file mode 100644 index 0000000..e7dc4d1 --- /dev/null +++ b/theme/icons/light/indent.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/info.svg b/theme/icons/light/info.svg new file mode 100644 index 0000000..951f1fc --- /dev/null +++ b/theme/icons/light/info.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/light/lock.svg b/theme/icons/light/lock.svg new file mode 100644 index 0000000..f0325da --- /dev/null +++ b/theme/icons/light/lock.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/merge.svg b/theme/icons/light/merge.svg new file mode 100644 index 0000000..637cb13 --- /dev/null +++ b/theme/icons/light/merge.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/microsoft.svg b/theme/icons/light/microsoft.svg new file mode 100644 index 0000000..bf6e1e3 --- /dev/null +++ b/theme/icons/light/microsoft.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/theme/icons/light/next.svg b/theme/icons/light/next.svg new file mode 100644 index 0000000..56213ee --- /dev/null +++ b/theme/icons/light/next.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/parens.svg b/theme/icons/light/parens.svg new file mode 100644 index 0000000..4e62b79 --- /dev/null +++ b/theme/icons/light/parens.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/prisma.svg b/theme/icons/light/prisma.svg new file mode 100644 index 0000000..119a8aa --- /dev/null +++ b/theme/icons/light/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/react.svg b/theme/icons/light/react.svg new file mode 100644 index 0000000..7493550 --- /dev/null +++ b/theme/icons/light/react.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/light/root-folder-expanded.svg b/theme/icons/light/root-folder-expanded.svg new file mode 100644 index 0000000..4653feb --- /dev/null +++ b/theme/icons/light/root-folder-expanded.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/light/root-folder.svg b/theme/icons/light/root-folder.svg new file mode 100644 index 0000000..4f8fc61 --- /dev/null +++ b/theme/icons/light/root-folder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme/icons/light/shell.svg b/theme/icons/light/shell.svg new file mode 100644 index 0000000..f8df7d7 --- /dev/null +++ b/theme/icons/light/shell.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/shield.svg b/theme/icons/light/shield.svg new file mode 100644 index 0000000..7004aed --- /dev/null +++ b/theme/icons/light/shield.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/svelte.svg b/theme/icons/light/svelte.svg new file mode 100644 index 0000000..b2edb82 --- /dev/null +++ b/theme/icons/light/svelte.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/table.svg b/theme/icons/light/table.svg new file mode 100644 index 0000000..ab07f34 --- /dev/null +++ b/theme/icons/light/table.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/tag.svg b/theme/icons/light/tag.svg new file mode 100644 index 0000000..06b290e --- /dev/null +++ b/theme/icons/light/tag.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/test.svg b/theme/icons/light/test.svg new file mode 100644 index 0000000..cb816ba --- /dev/null +++ b/theme/icons/light/test.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/text.svg b/theme/icons/light/text.svg new file mode 100644 index 0000000..419e10f --- /dev/null +++ b/theme/icons/light/text.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/vercel.svg b/theme/icons/light/vercel.svg new file mode 100644 index 0000000..6d50beb --- /dev/null +++ b/theme/icons/light/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/video.svg b/theme/icons/light/video.svg new file mode 100644 index 0000000..0ab8862 --- /dev/null +++ b/theme/icons/light/video.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/icons/light/vue.svg b/theme/icons/light/vue.svg new file mode 100644 index 0000000..da77db9 --- /dev/null +++ b/theme/icons/light/vue.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme/minimal-icon-theme.json b/theme/minimal-icon-theme.json new file mode 100644 index 0000000..a003592 --- /dev/null +++ b/theme/minimal-icon-theme.json @@ -0,0 +1,47 @@ +{ + "hidesExplorerArrows": true, + "iconDefinitions": { + "_file_dark": { + "iconPath": "icons/dark/text.svg" + }, + "_file_light": { + "iconPath": "icons/light/text.svg" + }, + "_folder_dark": { + "iconPath": "icons/dark/folder.svg" + }, + "_folder_light": { + "iconPath": "icons/light/folder.svg" + }, + "_folder_expanded_dark": { + "iconPath": "icons/dark/folder-expanded.svg" + }, + "_folder_expanded_light": { + "iconPath": "icons/light/folder-expanded.svg" + }, + "_root_folder_dark": { + "iconPath": "icons/dark/root-folder.svg" + }, + "_root_folder_light": { + "iconPath": "icons/light/root-folder.svg" + }, + "_root_folder_expanded_dark": { + "iconPath": "icons/dark/root-folder-expanded.svg" + }, + "_root_folder_expanded_light": { + "iconPath": "icons/light/root-folder-expanded.svg" + } + }, + "file": "_file_dark", + "folder": "_folder_dark", + "folderExpanded": "_folder_expanded_dark", + "rootFolder": "_root_folder_dark", + "rootFolderExpanded": "_root_folder_expanded_dark", + "light": { + "file": "_file_light", + "folder": "_folder_light", + "folderExpanded": "_folder_expanded_light", + "rootFolder": "_root_folder_light", + "rootFolderExpanded": "_root_folder_expanded_light" + } +}