diff --git a/extensions/defaults.json b/extensions/defaults.json index 236daf6..bea1892 100644 --- a/extensions/defaults.json +++ b/extensions/defaults.json @@ -96,6 +96,18 @@ "panelTitle.activeBorder": { "alpha": 100, "value": null + }, + "breadcrumb.activeSelectionForeground": { + "alpha": 100, + "value": null + }, + "menu.selectionForeground": { + "alpha": 100, + "value": null + }, + "menubar.selectionForeground": { + "alpha": 100, + "value": null } }, "changelog": { diff --git a/package.json b/package.json index d5b9c6d..4e1a2cf 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "url": "https://github.com/equinusocio/vsc-material-theme/issues" }, "engines": { - "vscode": "^1.19.0" + "vscode": "^1.24.0" }, "standard-version": { "scripts": { @@ -48,6 +48,10 @@ "Themes", "Other" ], + "keywords": [ + "VSCode", + "Themes" + ], "activationEvents": [ "*" ], @@ -77,7 +81,7 @@ ], "configuration": { "type": "object", - "title": "Material Theme configuration", + "title": "Material Theme", "properties": { "materialTheme.accent": { "type": "string", diff --git a/src/icons/partials/fileExtensions.js b/src/icons/partials/fileExtensions.js index 7873616..50ca150 100644 --- a/src/icons/partials/fileExtensions.js +++ b/src/icons/partials/fileExtensions.js @@ -1,4 +1,6 @@ "fileExtensions": { + "cfc": "_file_coldfusion", + "cfm": "_file_coldfusion", "mdx": "_file_mdx", "lnk": "_file_lnk", "pm": "_file_perl", @@ -250,6 +252,7 @@ "txt": "_file_document", "sqlite": "_file_database", "graphql": "_file_graphql", + "graphqlconfig": "_file_graphql", "gql": "_file_graphql", "props": "_file_settings", "toml": "_file_settings", diff --git a/src/icons/partials/fileNames.js b/src/icons/partials/fileNames.js index 814445a..315167a 100644 --- a/src/icons/partials/fileNames.js +++ b/src/icons/partials/fileNames.js @@ -1,4 +1,6 @@ "fileNames": { + ".graphqlconfig.yml": "_file_graphql", + ".graphqlconfig.yaml": "_file_graphql", "prettier.config.js": "_file_prettier", ".prettierrc.js": "_file_prettier", ".prettierrc.json": "_file_prettier", @@ -66,6 +68,10 @@ ".editorconfig": "_file_settings", "procfile": "_file_procfile", ".env": "_file_tune", + ".env.development": "_file_tune", + ".env.testing": "_file_tune", + ".env.staging": "_file_tune", + ".env.production": "_file_tune", "dockerfile": "_file_docker", "license": "_file_license", "license.md": "_file_license", diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 80a4f45..1ad3368 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -823,6 +823,18 @@ "gitDecoration.untrackedResourceForeground": "{{variant.scheme.base.green}}90", "gitDecoration.ignoredResourceForeground": "{{variant.scheme.sidebarForeground}}90", "peekViewResult.selectionBackground": "{{variant.scheme.sidebarForeground}}70", - "settings.modifiedItemForeground": "{{commons.accents.Teal}}" + "settings.modifiedItemForeground": "{{commons.accents.Teal}}", + "breadcrumb.foreground": "{{variant.scheme.sidebarForeground}}", + "breadcrumb.focusForeground": "{{variant.scheme.foreground}}", + "breadcrumb.activeSelectionForeground": "{{commons.accents.Teal}}", + "breadcrumbPicker.background": "{{variant.scheme.backgroundAlt}}", + "menu.background": "{{variant.scheme.background}}", + "menu.foreground": "{{variant.scheme.sidebarForeground}}", + "menu.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}", + "menu.selectionForeground": "{{commons.accents.Teal}}", + "menu.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}", + "menubar.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}", + "menubar.selectionForeground": "{{commons.accents.Teal}}", + "menubar.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}" } }