hc_black.json 2.6 KB
Newer Older
1
{
2 3 4
	"$schema": "vscode://schemas/color-theme",
	"name": "Dark High Contrast",
	"include": "./hc_black_defaults.json",
5 6
	"colors": {
		"selection.background": "#008000",
M
Miguel Solorio 已提交
7
		"editor.selectionBackground": "#FFFFFF",
M
Martin Aeschlimann 已提交
8
		"statusBarItem.remoteBackground": "#00000000"
9
	},
10
	"tokenColors": [
11
		{
12
			"name": "Function declarations",
13
			"scope": [
14 15 16
				"entity.name.function",
				"support.function",
				"support.constant.handlebars"
17
			],
18
			"settings": {
19
				"foreground": "#DCDCAA"
20 21 22
			}
		},
		{
23
			"name": "Types declaration and references",
A
Alex Dima 已提交
24
			"scope": [
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
				"meta.return-type",
				"support.class",
				"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",
				"storage.type.object.array.java",
				"storage.type.primitive.array.java",
				"storage.type.primitive.java",
				"storage.type.token.java",
				"storage.type.groovy",
				"storage.type.annotation.groovy",
				"storage.type.parameters.groovy",
				"storage.type.generic.groovy",
				"storage.type.object.array.groovy",
				"storage.type.primitive.array.groovy",
				"storage.type.primitive.groovy"
A
Alex Dima 已提交
48
			],
49
			"settings": {
50
				"foreground": "#4EC9B0"
51 52 53
			}
		},
		{
54
			"name": "Types declaration and references, TS grammar specific",
A
Alex Dima 已提交
55
			"scope": [
56 57 58 59 60 61
				"meta.type.cast.expr",
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
				"support.constant.json",
				"entity.other.inherited-class"
A
Alex Dima 已提交
62
			],
63
			"settings": {
64
				"foreground": "#4EC9B0"
65 66 67
			}
		},
		{
68
			"name": "Control flow keywords",
A
Alex Ross 已提交
69 70 71 72
			"scope": [
				"keyword.control",
				"keyword.operator.new.cpp",
				"keyword.operator.delete.cpp",
73 74
				"keyword.other.using",
				"keyword.other.operator"
A
Alex Ross 已提交
75
			],
76
			"settings": {
77
				"foreground": "#C586C0"
78 79
			}
		},
80
		{
81
			"name": "Variable and parameter name",
A
Alex Dima 已提交
82
			"scope": [
83 84 85
				"variable",
				"meta.definition.variable.name",
				"support.variable"
A
Alex Dima 已提交
86
			],
87
			"settings": {
88
				"foreground": "#9CDCFE"
89 90
			}
		},
91
		{
92
			"name": "Object keys, TS grammar specific",
93
			"scope": [
94
				"meta.object-literal.key"
95
			],
96
			"settings": {
97
				"foreground": "#9CDCFE"
98 99 100
			}
		},
		{
101
			"name": "CSS property value",
102
			"scope": [
103 104 105 106 107 108 109
				"support.constant.property-value",
				"support.constant.font-name",
				"support.constant.media-type",
				"support.constant.media",
				"constant.other.color.rgb-value",
				"constant.other.rgb-value",
				"support.constant.color"
110
			],
111
			"settings": {
112
				"foreground": "#CE9178"
M
Martin Aeschlimann 已提交
113
			}
114 115 116
		}
	]
}