abyss-color-theme.json 10.1 KB
Newer Older
M
Martin Aeschlimann 已提交
1
{
M
Martin Aeschlimann 已提交
2 3
	"name": "Abyss",
	"tokenColors": [
M
Martin Aeschlimann 已提交
4 5 6 7 8 9 10 11 12 13
		{
			"settings": {
				"background": "#000c18",
				"foreground": "#6688cc"
			}
		},
		{
			"name": "Comment",
			"scope": "comment",
			"settings": {
14
				"foreground": "#384887"
M
Martin Aeschlimann 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
			}
		},
		{
			"name": "String",
			"scope": "string",
			"settings": {
				"foreground": "#22aa44"
			}
		},
		{
			"name": "Number",
			"scope": "constant.numeric",
			"settings": {
				"foreground": "#f280d0"
			}
		},
		{
			"name": "Built-in constant",
			"scope": "constant.language",
			"settings": {
				"foreground": "#f280d0"
			}
		},
		{
			"name": "User-defined constant",
			"scope": [
				"constant.character",
				"constant.other"
			],
			"settings": {
				"foreground": "#f280d0"
			}
		},
		{
			"name": "Variable",
			"scope": "variable",
			"settings": {
				"fontStyle": ""
			}
		},
		{
			"name": "Keyword",
			"scope": "keyword",
			"settings": {
				"foreground": "#225588"
			}
		},
		{
			"name": "Storage",
			"scope": "storage",
			"settings": {
				"fontStyle": "",
				"foreground": "#225588"
			}
		},
		{
			"name": "Storage type",
			"scope": "storage.type",
			"settings": {
				"fontStyle": "italic",
				"foreground": "#9966b8"
			}
		},
		{
			"name": "Class name",
			"scope": [
				"entity.name.class",
				"entity.name.type"
			],
			"settings": {
				"fontStyle": "underline",
				"foreground": "#ffeebb"
			}
		},
		{
			"name": "Inherited class",
			"scope": "entity.other.inherited-class",
			"settings": {
				"fontStyle": "italic underline",
				"foreground": "#ddbb88"
			}
		},
		{
			"name": "Function name",
			"scope": "entity.name.function",
			"settings": {
				"fontStyle": "",
				"foreground": "#ddbb88"
			}
		},
		{
			"name": "Function argument",
			"scope": "variable.parameter",
			"settings": {
				"fontStyle": "italic",
				"foreground": "#2277ff"
			}
		},
		{
			"name": "Tag name",
			"scope": "entity.name.tag",
			"settings": {
				"fontStyle": "",
				"foreground": "#225588"
			}
		},
		{
			"name": "Tag attribute",
			"scope": "entity.other.attribute-name",
			"settings": {
				"fontStyle": "",
				"foreground": "#ddbb88"
			}
		},
		{
			"name": "Library function",
			"scope": "support.function",
			"settings": {
				"fontStyle": "",
				"foreground": "#9966b8"
			}
		},
		{
			"name": "Library constant",
			"scope": "support.constant",
			"settings": {
				"fontStyle": "",
				"foreground": "#9966b8"
			}
		},
		{
			"name": "Library class/type",
			"scope": [
				"support.type",
				"support.class"
			],
			"settings": {
				"fontStyle": "italic",
				"foreground": "#9966b8"
			}
		},
		{
			"name": "Library variable",
			"scope": "support.other.variable",
			"settings": {
				"fontStyle": ""
			}
		},
		{
			"name": "Invalid",
			"scope": "invalid",
			"settings": {
				"background": "#F92672",
				"fontStyle": "",
				"foreground": "#F8F8F0"
			}
		},
		{
			"name": "Invalid deprecated",
			"scope": "invalid.deprecated",
			"settings": {
				"background": "#AE81FF",
				"foreground": "#F8F8F0"
			}
		},
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
		{
			"name": "diff: header",
			"scope": [
				"meta.diff",
				"meta.diff.header"
			],
			"settings": {
				"background": "#b58900",
				"fontStyle": "italic",
				"foreground": "#E0EDDD"
			}
		},
		{
			"name": "diff: deleted",
			"scope": "markup.deleted",
			"settings": {
				"background": "#eee8d5",
				"fontStyle": "",
				"foreground": "#dc322f"
			}
		},
		{
			"name": "diff: changed",
			"scope": "markup.changed",
			"settings": {
				"background": "#eee8d5",
				"fontStyle": "",
				"foreground": "#cb4b16"
			}
		},
		{
			"name": "diff: inserted",
			"scope": "markup.inserted",
			"settings": {
				"background": "#eee8d5",
				"foreground": "#219186"
			}
		},
M
Martin Aeschlimann 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
		{
			"name": "Markup Quote",
			"scope": "markup.quote",
			"settings": {
				"foreground": "#22aa44"
			}
		},
		{
			"name": "Markup Styling",
			"scope": [
				"markup.bold",
				"markup.italic"
			],
			"settings": {
				"foreground": "#22aa44"
			}
		},
		{
			"name": "Markup Inline",
			"scope": "markup.inline.raw",
			"settings": {
				"fontStyle": "",
				"foreground": "#9966b8"
			}
		},
		{
			"name": "Markup Setext Header",
			"scope": "markup.heading.setext",
			"settings": {
				"fontStyle": "",
				"foreground": "#ddbb88"
			}
		}
	],
	"colors": {
B
Benjamin Pasero 已提交
253

B
Benjamin Pasero 已提交
254 255
		// Base
		// "foreground": "",
256
		"focusBorder": "#596F99",
257 258
		// "contrastActiveBorder": "",
		// "contrastBorder": "",
B
Benjamin Pasero 已提交
259

260
		// "widget.shadow": "",
B
Benjamin Pasero 已提交
261

262 263 264 265 266 267 268 269 270 271
		"input.background": "#181f2f",
		// "input.border": "",
		// "input.foreground": "",
		"inputOption.activeBorder": "#1D4A87",
		"inputValidation.infoBorder": "#384078",
		"inputValidation.infoBackground": "#051336",
		"inputValidation.warningBackground": "#5B7E7A",
		"inputValidation.warningBorder": "#5B7E7A",
		"inputValidation.errorBackground": "#A22D44",
		"inputValidation.errorBorder": "#AB395B",
B
Benjamin Pasero 已提交
272

273
		"badge.background": "#0063a5",
B
Benjamin Pasero 已提交
274
		"progressBar.background": "#0063a5",
275

276
		"dropdown.background": "#181f2f",
277 278
		// "dropdown.foreground": "",
		// "dropdown.border": "",
B
Benjamin Pasero 已提交
279

280
		"button.background": "#2B3C5D",
281
		// "button.foreground": "",
B
Benjamin Pasero 已提交
282

283
		"list.activeSelectionBackground": "#08286b",
284 285
		// "list.activeSelectionForeground": "",
		"list.focusBackground": "#08286b",
286
		"list.hoverBackground": "#061940",
287 288
		"list.inactiveSelectionBackground": "#152037",
		"list.dropBackground": "#041D52",
289
		"list.highlightForeground": "#0063a5",
B
Benjamin Pasero 已提交
290

291 292
		"scrollbar.shadow": "#515E91AA",
		"scrollbarSlider.activeBackground": "#3B3F5188",
293
		"scrollbarSlider.background": "#1F2230AA",
294
		"scrollbarSlider.hoverBackground": "#3B3F5188",
B
Benjamin Pasero 已提交
295 296

		// Editor
297
		"editor.background": "#000c18",
298
		// "editor.foreground": "#6688cc",
299 300 301 302 303 304 305 306 307 308
		"editorWidget.background": "#262641",
		"editorCursor.foreground": "#ddbb88",
		"editorWhitespace.foreground": "#103050",
		"editor.lineHighlightBackground": "#082050",
		"editor.selectionBackground": "#770811",
		"editorIndentGuide.background": "#002952",
		"editorHoverWidget.background": "#000c38",
		"editorHoverWidget.border": "#004c18",
		"editorLineNumber.foreground": "#406385",
		"editorMarkerNavigation.background": "#060621",
309 310
		"editorMarkerNavigationError.background": "#AB395B",
		"editorMarkerNavigationWarning.background": "#5B7E7A",
311 312 313 314 315 316 317 318 319 320 321
		"editorLink.activeForeground": "#0063a5",
		// "editor.findMatchBackground": "",
		"editor.findMatchHighlightBackground": "#eeeeee44",
		// "editor.findRangeHighlightBackground": "",
		// "editor.hoverHighlightBackground": "",
		// "editor.inactiveSelectionBackground": "",
		// "editor.lineHighlightBorder": "",
		// "editor.rangeHighlightBackground": "",
		// "editor.selectionHighlightBackground": "",
		// "editor.wordHighlightBackground": "",
		// "editor.wordHighlightStrongBackground": "",
B
Benjamin Pasero 已提交
322

323 324 325 326 327 328 329
		// Editor: Suggest Widget
		// "editorSuggestWidget.background": "",
		// "editorSuggestWidget.border": "",
		// "editorSuggestWidget.foreground": "",
		// "editorSuggestWidget.highlightForeground": "",
		// "editorSuggestWidget.selectedBackground": "",

B
Benjamin Pasero 已提交
330
		// Editor: Peek View
331 332 333 334 335 336 337 338 339 340 341 342
		"peekViewResult.background": "#060621",
		// "peekViewResult.lineForeground": "",
		// "peekViewResult.selectionBackground": "",
		// "peekViewResult.selectionForeground": "",
		"peekViewEditor.background": "#10192c",
		"peekViewTitle.background": "#10192c",
		"peekView.border": "#2b2b4a",
		"peekViewEditor.matchHighlightBackground": "#eeeeee33",
		// "peekViewResult.fileForeground": "",
		"peekViewResult.matchHighlightBackground": "#eeeeee44",
		// "peekViewTitleLabel.foreground": "",
		// "peekViewTitleDescription.foreground": "",
343

B
Benjamin Pasero 已提交
344
		// Editor: Diff
345 346 347 348
		"diffEditor.insertedTextBackground": "#31958A55",
		// "diffEditor.insertedTextBorder": "",
		"diffEditor.removedTextBackground": "#892F4688",
		// "diffEditor.removedTextBorder": "",
B
Benjamin Pasero 已提交
349 350

		// Workbench: Title
351 352
		"titleBar.activeBackground": "#10192c",
		// "titleBar.activeForeground": "",
353
		// "titleBar.inactiveBackground": "",
354
		// "titleBar.inactiveForeground": "",
B
Benjamin Pasero 已提交
355 356

		// Workbench: Editors
357 358 359 360
		// "editorGroupHeader.noTabsBackground": "",
		"editorGroup.border": "#2b2b4a",
		"editorGroup.background": "#1c1c2a",
		"editorGroup.dropBackground": "#25375daa",
361
		"editorGroupHeader.tabsBackground": "#1c1c2a",
B
Benjamin Pasero 已提交
362 363

		// Workbench: Tabs
364 365 366 367 368
		"tab.border": "#2b2b4a",
		// "tab.activeBackground": "",
		"tab.inactiveBackground": "#10192c",
		// "tab.activeForeground": "",
		// "tab.inactiveForeground": "",
B
Benjamin Pasero 已提交
369 370

		// Workbench: Activity Bar
371 372
		"activityBar.background": "#051336",
		// "activityBar.foreground": "",
373
		// "activityBarBadge.background": "",
374
		// "activityBarBadge.foreground": "",
375
		// "activityBar.dropBackground": "",
B
Benjamin Pasero 已提交
376 377

		// Workbench: Panel
378 379 380 381
		"panel.border": "#2b2b4a",
		// "panelTitle.activeBorder": "",
		// "panelTitle.activeForeground": "",
		// "panelTitle.inactiveForeground": "",
B
Benjamin Pasero 已提交
382 383

		// Workbench: Side Bar
384 385 386
		"sideBar.background": "#060621",
		// "sideBarTitle.foreground": "",
		"sideBarSectionHeader.background": "#10192c",
B
Benjamin Pasero 已提交
387 388

		// Workbench: Status Bar
389 390 391 392 393 394
		"statusBar.background": "#10192c",
		"statusBar.noFolderBackground": "#10192c",
		"statusBar.debuggingBackground": "#10192c",
		// "statusBar.foreground": "",
		"statusBarItem.prominentBackground": "#0063a5",
		"statusBarItem.prominentHoverBackground": "#0063a5dd",
395 396
		// "statusBarItem.activeBackground": "",
		// "statusBarItem.hoverBackground": "",
B
Benjamin Pasero 已提交
397 398

		// Workbench: Debug
399 400
		"debugToolBar.background": "#051336",
		"debugExceptionWidget.background": "#051336",
401
		"debugExceptionWidget.border": "#AB395B",
B
Benjamin Pasero 已提交
402 403

		// Workbench: Notifications
404
		"notification.background": "#182543",
405
		// "notification.foreground": "",
B
Benjamin Pasero 已提交
406 407

		// Workbench: Quick Open
408
		"pickerGroup.border": "#596F99",
409
		"pickerGroup.foreground": "#596F99",
B
Benjamin Pasero 已提交
410

411 412 413 414
		// Workbench: Extensions
		"extensionButton.prominentBackground": "#5f8b3b",
		"extensionButton.prominentHoverBackground": "#5f8b3bbb",

B
Benjamin Pasero 已提交
415
		// Workbench: Terminal
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
		"terminal.ansiBlack": "#111111",
		"terminal.ansiRed": "#ff9da4",
		"terminal.ansiGreen": "#d1f1a9",
		"terminal.ansiYellow": "#ffeead",
		"terminal.ansiBlue": "#bbdaff",
		"terminal.ansiMagenta": "#ebbbff",
		"terminal.ansiCyan": "#99ffff",
		"terminal.ansiWhite": "#cccccc",
		"terminal.ansiBrightBlack": "#333333",
		"terminal.ansiBrightRed": "#ff7882",
		"terminal.ansiBrightGreen": "#b8f171",
		"terminal.ansiBrightYellow": "#ffe580",
		"terminal.ansiBrightBlue": "#80baff",
		"terminal.ansiBrightMagenta": "#d778ff",
		"terminal.ansiBrightCyan": "#78ffff",
		"terminal.ansiBrightWhite": "#ffffff"
M
Martin Aeschlimann 已提交
432 433
	}
}