Release 29.2 (#367)
* fix: Fix search highlight matched result color Close #358 * fix: Fix inputs selection background Close #362 * Release: 29.1.0 * feat: Add support for tree's guidelines * fix: Fix terminal cursor color * Release 29.2
This commit is contained in:
parent
2c915942b0
commit
05afbe7af5
4 changed files with 13 additions and 11 deletions
1
.nvmrc
Normal file
1
.nvmrc
Normal file
|
@ -0,0 +1 @@
|
|||
11
|
|
@ -104,7 +104,7 @@
|
|||
}
|
||||
},
|
||||
"changelog": {
|
||||
"lastversion": "2.8.2"
|
||||
"lastversion": "29.1.0"
|
||||
},
|
||||
"themeVariants": {
|
||||
"Darker": "./themes/Material-Theme-Darker.json",
|
||||
|
|
11
package.json
11
package.json
|
@ -2,7 +2,7 @@
|
|||
"name": "vsc-material-theme",
|
||||
"displayName": "Material Theme",
|
||||
"description": "The most epic theme now for Visual Studio Code",
|
||||
"version": "29.1.0",
|
||||
"version": "29.2.0",
|
||||
"publisher": "Equinusocio",
|
||||
"license": "Apache-2.0",
|
||||
"author": "Mattia Astorino [@equinusocio]",
|
||||
|
@ -47,8 +47,7 @@
|
|||
"extensionKind": "ui",
|
||||
"main": "./out/src/material.theme.config",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"commands": [{
|
||||
"command": "materialTheme.setAccent",
|
||||
"title": "Set accent color",
|
||||
"category": "🎨 Material Theme"
|
||||
|
@ -89,8 +88,7 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"themes": [
|
||||
{
|
||||
"themes": [{
|
||||
"label": "Material Theme",
|
||||
"path": "./out/themes/Material-Theme-Default.json",
|
||||
"uiTheme": "vs-dark"
|
||||
|
@ -145,8 +143,7 @@
|
|||
"extensionDependency": [
|
||||
"Equinusocio.vsc-material-theme-icons"
|
||||
],
|
||||
"badges": [
|
||||
{
|
||||
"badges": [{
|
||||
"url": "https://camo.githubusercontent.com/d3c6e53aa66426dead24cdedab0e83082103bea6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f657175696e75736f63696f2f7673632d6d6174657269616c2d7468656d652e7376673f7374796c653d666c61742d737175617265",
|
||||
"href": "https://github.com/equinusocio/vsc-material-theme/issues",
|
||||
"description": "Open issues"
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
{
|
||||
"name": "{{variant.name}}",
|
||||
"type": "{{variant.type}}",
|
||||
"tokenColors": [
|
||||
{
|
||||
"tokenColors": [{
|
||||
"settings": {
|
||||
"background": "{{variant.scheme.background}}",
|
||||
"foreground": "{{variant.scheme.base.white}}"
|
||||
|
@ -802,6 +801,9 @@
|
|||
"terminal.ansiBrightRed": "{{variant.scheme.base.red}}",
|
||||
"terminal.ansiBrightYellow": "{{variant.scheme.base.yellow}}",
|
||||
|
||||
"terminalCursor.foreground": "{{variant.scheme.base.yellow}}",
|
||||
"terminalCursor.background": "{{variant.scheme.base.black}}",
|
||||
|
||||
"scrollbarSlider.background": "{{variant.scheme.scrollbars}}",
|
||||
"scrollbarSlider.hoverBackground": "{{variant.scheme.scrollbarsHover}}",
|
||||
"scrollbarSlider.activeBackground": "{{commons.accents.Teal}}",
|
||||
|
@ -883,6 +885,8 @@
|
|||
|
||||
"listFilterWidget.background": "{{variant.scheme.inactiveSelectionBackground}}",
|
||||
"listFilterWidget.outline": "{{variant.scheme.inactiveSelectionBackground}}",
|
||||
"listFilterWidget.noMatchesOutline": "{{variant.scheme.inactiveSelectionBackground}}"
|
||||
"listFilterWidget.noMatchesOutline": "{{variant.scheme.inactiveSelectionBackground}}",
|
||||
|
||||
"tree.indentGuidesStroke": "{{variant.scheme.guides}}"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue