Merge branch 'develop'
This commit is contained in:
commit
100ca06b4c
5 changed files with 40 additions and 3 deletions
|
@ -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": {
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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}}"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue