mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
[themes] convert default themes to new format
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Dark Default Colors",
|
||||
"colors": {
|
||||
"editorBackground": "#1e1e1e",
|
||||
"editorForeground": "#D4D4D4"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"name": "Dark+",
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Dark+ (default dark)",
|
||||
"include": "./dark_vs.json",
|
||||
"settings": [
|
||||
"tokenColors": [
|
||||
{
|
||||
"name": "Function declarations",
|
||||
"scope": [
|
||||
"entity.name.function",
|
||||
"support.function",
|
||||
|
||||
"support.constant.handlebars"
|
||||
],
|
||||
"settings": {
|
||||
@@ -22,12 +22,10 @@
|
||||
"support.type",
|
||||
"entity.name.type",
|
||||
"entity.name.class",
|
||||
|
||||
"storage.type.cs",
|
||||
"storage.type.generic.cs",
|
||||
"storage.type.modifier.cs",
|
||||
"storage.type.variable.cs",
|
||||
|
||||
"storage.type.annotation.java",
|
||||
"storage.type.generic.java",
|
||||
"storage.type.java",
|
||||
@@ -35,7 +33,6 @@
|
||||
"storage.type.primitive.array.java",
|
||||
"storage.type.primitive.java",
|
||||
"storage.type.token.java",
|
||||
|
||||
"storage.type.groovy",
|
||||
"storage.type.annotation.groovy",
|
||||
"storage.type.parameters.groovy",
|
||||
@@ -57,7 +54,6 @@
|
||||
"support.constant.math",
|
||||
"support.constant.dom",
|
||||
"support.constant.json",
|
||||
|
||||
"entity.other.inherited-class"
|
||||
],
|
||||
"settings": {
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
{
|
||||
"name": "Dark Visual Studio",
|
||||
"settings": [
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Dark (Visual Studio)",
|
||||
"include": "./dark_defaults.json",
|
||||
"tokenColors": [
|
||||
{
|
||||
"settings": {
|
||||
"foreground": "#D4D4D4",
|
||||
@@ -25,7 +27,6 @@
|
||||
"foreground": "#000080"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"scope": "comment",
|
||||
"settings": {
|
||||
@@ -78,9 +79,7 @@
|
||||
"entity.other.attribute-name.parent-selector.css",
|
||||
"entity.other.attribute-name.pseudo-class.css",
|
||||
"entity.other.attribute-name.pseudo-element.css",
|
||||
|
||||
"source.css.less entity.other.attribute-name.id",
|
||||
|
||||
"entity.other.attribute-name.attribute.scss",
|
||||
"entity.other.attribute-name.scss"
|
||||
],
|
||||
@@ -282,7 +281,10 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"scope": ["keyword.operator.new", "keyword.operator.expression"],
|
||||
"scope": [
|
||||
"keyword.operator.new",
|
||||
"keyword.operator.expression"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#569cd6"
|
||||
}
|
||||
@@ -316,7 +318,10 @@
|
||||
},
|
||||
{
|
||||
"name": "coloring of the Java import and package identifiers",
|
||||
"scope": ["storage.modifier.import.java", "storage.modifier.package.java"],
|
||||
"scope": [
|
||||
"storage.modifier.import.java",
|
||||
"storage.modifier.package.java"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#d4d4d4"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"name": "Dark Visual Studio",
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Dark High Contrast",
|
||||
"include": "./hc_black_defaults.json",
|
||||
"settings": [
|
||||
{
|
||||
"settings": {
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "High Contrast Default Colors",
|
||||
"colors": {
|
||||
"editorBackground": "#000000",
|
||||
"editorForeground": "#FFFFFF"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Light Default Colors",
|
||||
"colors": {
|
||||
"editorBackground": "#ffffff",
|
||||
"editorForeground": "#000000"
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"name": "Light+",
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Light+ (default light)",
|
||||
"include": "./light_vs.json",
|
||||
"settings": [
|
||||
"tokenColors": [
|
||||
{
|
||||
"name": "Function declarations",
|
||||
"scope": [
|
||||
"entity.name.function",
|
||||
"support.function",
|
||||
|
||||
"support.constant.handlebars"
|
||||
],
|
||||
"settings": {
|
||||
@@ -22,12 +22,10 @@
|
||||
"support.type",
|
||||
"entity.name.type",
|
||||
"entity.name.class",
|
||||
|
||||
"storage.type.cs",
|
||||
"storage.type.generic.cs",
|
||||
"storage.type.modifier.cs",
|
||||
"storage.type.variable.cs",
|
||||
|
||||
"storage.type.annotation.java",
|
||||
"storage.type.generic.java",
|
||||
"storage.type.java",
|
||||
@@ -35,7 +33,6 @@
|
||||
"storage.type.primitive.array.java",
|
||||
"storage.type.primitive.java",
|
||||
"storage.type.token.java",
|
||||
|
||||
"storage.type.groovy",
|
||||
"storage.type.annotation.groovy",
|
||||
"storage.type.parameters.groovy",
|
||||
@@ -57,7 +54,6 @@
|
||||
"support.constant.math",
|
||||
"support.constant.dom",
|
||||
"support.constant.json",
|
||||
|
||||
"entity.other.inherited-class"
|
||||
],
|
||||
"settings": {
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
{
|
||||
"name": "Light Visual Studio",
|
||||
"settings": [
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Light (Visual Studio)",
|
||||
"include": "./light_defaults.json",
|
||||
"tokenColors": [
|
||||
{
|
||||
"scope": "emphasis",
|
||||
"settings": {
|
||||
@@ -19,14 +21,12 @@
|
||||
"foreground": "#000080"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"scope": "comment",
|
||||
"settings": {
|
||||
"foreground": "#008000"
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"scope": "constant.language",
|
||||
"settings": {
|
||||
@@ -74,9 +74,7 @@
|
||||
"entity.other.attribute-name.parent-selector.css",
|
||||
"entity.other.attribute-name.pseudo-class.css",
|
||||
"entity.other.attribute-name.pseudo-element.css",
|
||||
|
||||
"source.css.less entity.other.attribute-name.id",
|
||||
|
||||
"entity.other.attribute-name.attribute.scss",
|
||||
"entity.other.attribute-name.scss"
|
||||
],
|
||||
@@ -101,7 +99,6 @@
|
||||
"settings": {
|
||||
"fontStyle": "bold",
|
||||
"foreground": "#000080"
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -213,24 +210,19 @@
|
||||
},
|
||||
{
|
||||
"scope": [
|
||||
|
||||
"string.comment.buffered.block.jade",
|
||||
"string.quoted.jade",
|
||||
"string.interpolated.jade",
|
||||
|
||||
"string.unquoted.plain.in.yaml",
|
||||
"string.unquoted.plain.out.yaml",
|
||||
"string.unquoted.block.yaml",
|
||||
"string.quoted.single.yaml",
|
||||
|
||||
"string.quoted.double.xml",
|
||||
"string.quoted.single.xml",
|
||||
"string.unquoted.cdata.xml",
|
||||
|
||||
"string.quoted.double.html",
|
||||
"string.quoted.single.html",
|
||||
"string.unquoted.html",
|
||||
|
||||
"string.quoted.single.handlebars",
|
||||
"string.quoted.double.handlebars"
|
||||
],
|
||||
@@ -275,7 +267,6 @@
|
||||
"variable.css",
|
||||
"variable.scss",
|
||||
"variable.other.less"
|
||||
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#ff0000"
|
||||
@@ -306,7 +297,10 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"scope": ["keyword.operator.new", "keyword.operator.expression"],
|
||||
"scope": [
|
||||
"keyword.operator.new",
|
||||
"keyword.operator.expression"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#0000ff"
|
||||
}
|
||||
@@ -340,7 +334,10 @@
|
||||
},
|
||||
{
|
||||
"name": "coloring of the Java import and package identifiers",
|
||||
"scope": ["storage.modifier.import.java", "storage.modifier.package.java"],
|
||||
"scope": [
|
||||
"storage.modifier.import.java",
|
||||
"storage.modifier.package.java"
|
||||
],
|
||||
"settings": {
|
||||
"foreground": "#000000"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user