Skip to content

Commit

Permalink
feat: add test and story icons (#4)
Browse files Browse the repository at this point in the history
* feat: add test variants

* docs: update previews

* refactor: remove bin icon
  • Loading branch information
littensy authored Jun 20, 2024
1 parent b35d65f commit 3948fe0
Show file tree
Hide file tree
Showing 25 changed files with 124 additions and 35 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
![GitHub Stars](https://img.shields.io/github/stars/littensy/charmed-icons?style=for-the-badge&logo=github)

<img src="assets/files.png" alt="Files" width="512" />
<br>
<br><br>
<img src="assets/folders.png" alt="Folders" width="512" />

</div>
Expand Down
Binary file modified assets/files.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/folders-alt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/folders.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 52 additions & 11 deletions themes/charmed-icon-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,40 @@
"image": { "iconPath": "files/image.svg" },
"java": { "iconPath": "files/java.svg" },
"javascript-config": { "iconPath": "files/javascript-config.svg" },
"javascript-test": { "iconPath": "files/javascript-test.svg" },
"javascript": { "iconPath": "files/javascript.svg" },
"json": { "iconPath": "files/json.svg" },
"kotlin": { "iconPath": "files/kotlin.svg" },
"license": { "iconPath": "files/license.svg" },
"lua-test": { "iconPath": "files/lua-test.svg" },
"lua": { "iconPath": "files/lua.svg" },
"luau-config": { "iconPath": "files/luau-config.svg" },
"luau-def": { "iconPath": "files/luau-def.svg" },
"luau-test": { "iconPath": "files/luau-test.svg" },
"luau": { "iconPath": "files/luau.svg" },
"markdown": { "iconPath": "files/markdown.svg" },
"node": { "iconPath": "files/node.svg" },
"npm": { "iconPath": "files/npm.svg" },
"php": { "iconPath": "files/php.svg" },
"python": { "iconPath": "files/python.svg" },
"react-typescript": { "iconPath": "files/react-typescript.svg" },
"react-typescript-test": { "iconPath": "files/react-typescript-test.svg" },
"react": { "iconPath": "files/react.svg" },
"react-test": { "iconPath": "files/react-test.svg" },
"roblox": { "iconPath": "files/roblox.svg" },
"ruby": { "iconPath": "files/ruby.svg" },
"rust": { "iconPath": "files/rust.svg" },
"scala": { "iconPath": "files/scala.svg" },
"scss": { "iconPath": "files/scss.svg" },
"shell": { "iconPath": "files/shell.svg" },
"storybook": { "iconPath": "files/storybook.svg" },
"swift": { "iconPath": "files/swift.svg" },
"terraform": { "iconPath": "files/terraform.svg" },
"text": { "iconPath": "files/text.svg" },
"toml": { "iconPath": "files/toml.svg" },
"typescript-config": { "iconPath": "files/typescript-config.svg" },
"typescript-def": { "iconPath": "files/typescript-def.svg" },
"typescript-test": { "iconPath": "files/typescript-test.svg" },
"typescript": { "iconPath": "files/typescript.svg" },
"video": { "iconPath": "files/video.svg" },
"web-assembly": { "iconPath": "files/web-assembly.svg" },
Expand All @@ -62,8 +69,6 @@
"folder-asset": { "iconPath": "folders/asset.svg" },
"folder-audio-alt": { "iconPath": "folders-alt/audio.svg" },
"folder-audio": { "iconPath": "folders/audio.svg" },
"folder-bin-alt": { "iconPath": "folders-alt/bin.svg" },
"folder-bin": { "iconPath": "folders/bin.svg" },
"folder-client-alt": { "iconPath": "folders-alt/client.svg" },
"folder-client": { "iconPath": "folders/client.svg" },
"folder-component-alt": { "iconPath": "folders-alt/component.svg" },
Expand Down Expand Up @@ -152,17 +157,41 @@
"js": "javascript",
"mjs": "javascript",
"cjs": "javascript",
"test.js": "javascript-test",
"spec.js": "javascript-test",
"jsx": "react",
"test.jsx": "react-test",
"spec.jsx": "react-test",
"json": "json",
"jsonc": "json",
"ts": "typescript",
"d.ts": "typescript-def",
"test.ts": "typescript-test",
"spec.ts": "typescript-test",
"tsx": "react-typescript",
"test.tsx": "react-typescript-test",
"spec.tsx": "react-typescript-test",
"config.ts": "typescript-config",
"tsbuildinfo": "typescript-config",
"story.ts": "storybook",
"story.tsx": "storybook",
"story.js": "storybook",
"story.jsx": "storybook",
"story.lua": "storybook",
"story.luau": "storybook",
"stories.ts": "storybook",
"stories.tsx": "storybook",
"stories.js": "storybook",
"stories.jsx": "storybook",
"stories.lua": "storybook",
"stories.luau": "storybook",
"lua": "lua",
"test.lua": "lua-test",
"spec.lua": "lua-test",
"luau": "luau",
"d.luau": "luau-def",
"test.luau": "luau-test",
"spec.luau": "luau-test",
"config.luau": "luau-config",
"luaurc": "luau-config",
"rbxm": "roblox",
Expand Down Expand Up @@ -242,7 +271,19 @@
"LICENSE.rst": "license",
"LICENSE-MIT": "license",
"README": "markdown",
".env": "config"
".env": "config",
"jest.config.js": "javascript-test",
"jest.setup.js": "javascript-test",
"jest.config.ts": "typescript-test",
"jest.setup.ts": "typescript-test",
"jest.config.lua": "lua-test",
"jest.setup.lua": "lua-test",
"jest.config.luau": "luau-test",
"jest.setup.luau": "luau-test",
"jest.config.tsx": "react-typescript-test",
"jest.setup.tsx": "react-typescript-test",
"jest.config.jsx": "react-test",
"jest.setup.jsx": "react-test"
},
"folderNames": {
"app": "folder-app",
Expand All @@ -256,9 +297,6 @@
"sound": "folder-audio",
"sounds": "folder-audio",
"music": "folder-audio",
"bin": "folder-bin",
"binary": "folder-bin",
"workflows": "folder-bin",
"client": "folder-client",
"clients": "folder-client",
"component": "folder-component",
Expand Down Expand Up @@ -318,6 +356,9 @@
"shared": "folder-shared",
"script": "folder-shared",
"scripts": "folder-shared",
"bin": "folder-shared",
"binary": "folder-shared",
"workflows": "folder-shared",
"source": "folder-source",
"src": "folder-source",
"lib": "folder-source",
Expand Down Expand Up @@ -374,8 +415,6 @@
"sound": "folder-audio-alt",
"sounds": "folder-audio-alt",
"music": "folder-audio-alt",
"bin": "folder-bin-alt",
"binary": "folder-bin-alt",
"client": "folder-client-alt",
"clients": "folder-client-alt",
"component": "folder-component-alt",
Expand All @@ -386,8 +425,8 @@
"configs": "folder-config-alt",
"configuration": "folder-config-alt",
"configurations": "folder-config-alt",
".vscode": "folder-alt-config",
".github": "folder-alt-config",
".vscode": "folder-config-alt",
".github": "folder-config-alt",
"context": "folder-context-alt",
"contexts": "folder-context-alt",
"dist": "folder-dist-alt",
Expand All @@ -396,7 +435,6 @@
"output": "folder-dist-alt",
"package": "folder-dist-alt",
"packages": "folder-dist-alt",
"devpackages": "folder-dist-alt",
"release": "folder-dist-alt",
"releases": "folder-dist-alt",
"error": "folder-error-alt",
Expand Down Expand Up @@ -436,6 +474,9 @@
"shared": "folder-shared-alt",
"script": "folder-shared-alt",
"scripts": "folder-shared-alt",
"bin": "folder-shared-alt",
"binary": "folder-shared-alt",
"workflows": "folder-shared-alt",
"source": "folder-source-alt",
"src": "folder-source-alt",
"lib": "folder-source-alt",
Expand Down
2 changes: 1 addition & 1 deletion themes/files/c.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion themes/files/cpp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion themes/files/eslint.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3948fe0

Please sign in to comment.