hc_black.json 3.0 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
				"entity.name.function",
				"support.function",
16 17
				"support.constant.handlebars",
				"source.powershell variable.other.member"
18
			],
19
			"settings": {
20
				"foreground": "#DCDCAA"
21 22 23
			}
		},
		{
24
			"name": "Types declaration and references",
A
Alex Dima 已提交
25
			"scope": [
26 27 28 29
				"meta.return-type",
				"support.class",
				"support.type",
				"entity.name.type",
30 31
				"entity.name.namespace",
				"entity.name.scope-resolution",
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
				"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 已提交
51
			],
52
			"settings": {
53
				"foreground": "#4EC9B0"
54 55 56
			}
		},
		{
57
			"name": "Types declaration and references, TS grammar specific",
A
Alex Dima 已提交
58
			"scope": [
59 60 61 62 63 64
				"meta.type.cast.expr",
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
				"support.constant.json",
				"entity.other.inherited-class"
A
Alex Dima 已提交
65
			],
66
			"settings": {
67
				"foreground": "#4EC9B0"
68 69 70
			}
		},
		{
71
			"name": "Control flow / Special keywords",
A
Alex Ross 已提交
72 73
			"scope": [
				"keyword.control",
74 75
				"source.cpp keyword.operator.new",
				"source.cpp keyword.operator.delete",
76 77
				"keyword.other.using",
				"keyword.other.operator"
A
Alex Ross 已提交
78
			],
79
			"settings": {
80
				"foreground": "#C586C0"
81 82
			}
		},
83
		{
84
			"name": "Variable and parameter name",
A
Alex Dima 已提交
85
			"scope": [
86 87 88
				"variable",
				"meta.definition.variable.name",
				"support.variable"
A
Alex Dima 已提交
89
			],
90
			"settings": {
91
				"foreground": "#9CDCFE"
92 93
			}
		},
94
		{
95
			"name": "Object keys, TS grammar specific",
96
			"scope": [
97
				"meta.object-literal.key"
98
			],
99
			"settings": {
100
				"foreground": "#9CDCFE"
101 102 103
			}
		},
		{
104
			"name": "CSS property value",
105
			"scope": [
106 107 108 109 110 111 112
				"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"
113
			],
114
			"settings": {
115
				"foreground": "#CE9178"
M
Martin Aeschlimann 已提交
116
			}
117 118 119 120 121 122 123
		},
		{
			"name": "HC Search Editor context line override",
			"scope": "meta.resultLinePrefix.contextLinePrefix.search",
			"settings": {
				"foreground": "#CBEDCB",
			}
124
		}
125 126 127 128 129 130 131
	],
	"semanticTokenColors": {
		"newOperator": "#FFFFFF",
		"stringLiteral": "#ce9178",
		"customLiteral": "#DCDCAA",
		"numberLiteral": "#b5cea8",
	}
132
}