diff --git a/extensions/defaults.json b/extensions/defaults.json
index 2b55b24..ff61bcf 100644
--- a/extensions/defaults.json
+++ b/extensions/defaults.json
@@ -28,7 +28,8 @@
"_folder_src_open",
"_folder_assets_open",
"_folder_bower_open",
- "_folder_git_open"
+ "_folder_git_open",
+ "_folder_github_open"
],
"changelog": {
"lastversion": "1.1.1"
@@ -36,6 +37,12 @@
"icons": {
"theme": {
"iconDefinitions": {
+ "_folder_github": {
+ "iconPath": "../icons/folder_github.svg"
+ },
+ "_folder_github_open": {
+ "iconPath": "../icons/folder_github_open.svg"
+ },
"_folder_git": {
"iconPath": "../icons/folder_git.svg"
},
@@ -160,6 +167,7 @@
"_folder_src",
"_folder_assets",
"_folder_bower",
- "_folder_git"
+ "_folder_git",
+ "_folder_github"
]
}
\ No newline at end of file
diff --git a/src/icons/partials/folderNames.js b/src/icons/partials/folderNames.js
index 4b7e6e2..9d07158 100644
--- a/src/icons/partials/folderNames.js
+++ b/src/icons/partials/folderNames.js
@@ -6,7 +6,7 @@
"src": "_folder_src",
"images": "_folder_images",
".git": "_folder_git",
- ".github": "_file_github",
+ ".github": "_folder_github",
".vscode": "_folder_vscode",
".gulp": "_folder_gulp",
"build": "_folder_dark_build",
@@ -20,7 +20,7 @@
"images": "_folder_images_open",
"js": "_folder_js_open",
".git": "_folder_git_open",
- ".github": "_file_github",
+ ".github": "_folder_github_open",
".gulp": "_folder_gulp_open",
".vscode": "_folder_vscode_open",
"build": "_folder_open_build",
diff --git a/src/icons/partials/light.js b/src/icons/partials/light.js
index fa316d5..8ca9105 100644
--- a/src/icons/partials/light.js
+++ b/src/icons/partials/light.js
@@ -2,22 +2,30 @@
"folderExpanded": "_folder_open",
"folder": "_folder_light",
"folderNames": {
- "node_modules": "_file_nodejs",
- ".git": "_file_git",
- ".github": "_file_github",
- ".gulp": "_file_gulp",
+ "node_modules": "_folder_node",
+ "assets": "_folder_assets",
+ "bower_components": "_folder_bower",
+ "js": "_folder_js",
+ "src": "_folder_src",
+ "images": "_folder_images",
+ ".git": "_folder_git",
+ ".github": "_folder_github",
".vscode": "_folder_vscode",
- "bower_components": "_file_bower",
- "build": "_folder_light_build",
- "dist": "_folder_light_build"
+ ".gulp": "_folder_gulp",
+ "build": "_folder_dark_build",
+ "dist": "_folder_dark_build"
},
"folderNamesExpanded": {
- "node_modules": "_file_nodejs",
- ".git": "_file_git",
- ".github": "_file_github",
- ".gulp": "_file_gulp",
+ "node_modules": "_folder_node_open",
+ "bower_components": "_folder_bower_open",
+ "assets": "_folder_assets_open",
+ "src": "_folder_src_open",
+ "images": "_folder_images_open",
+ "js": "_folder_js_open",
+ ".git": "_folder_git_open",
+ ".github": "_folder_github_open",
+ ".gulp": "_folder_gulp_open",
".vscode": "_folder_vscode_open",
- "bower_components": "_file_bower",
"build": "_folder_open_build",
"dist": "_folder_open_build"
}
diff --git a/src/icons/svgs/folder_github.svg b/src/icons/svgs/folder_github.svg
new file mode 100644
index 0000000..52e29dd
--- /dev/null
+++ b/src/icons/svgs/folder_github.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/icons/svgs/folder_github_open.svg b/src/icons/svgs/folder_github_open.svg
new file mode 100644
index 0000000..9f33463
--- /dev/null
+++ b/src/icons/svgs/folder_github_open.svg
@@ -0,0 +1 @@
+
\ No newline at end of file