一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術(shù)|正則表達(dá)式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務(wù)器之家 - 編程語言 - 編程技術(shù) - VSCode自定義配色方案的實(shí)現(xiàn)

VSCode自定義配色方案的實(shí)現(xiàn)

2020-07-07 14:59garvenc 編程技術(shù)

這篇文章主要介紹了VSCode自定義配色方案的實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

說明

本文更新于2019-02-18,使用VSCode 1.14.1,操作系統(tǒng)為Windows。

配置文件

“文件-首選項(xiàng)-顏色主題”即可顯示所有可用的顏色主題,上下選擇后Enter即可。也可通過Ctrl+Shift+P輸入color theme回車后調(diào)出“首選項(xiàng):顏色主題”面板。

記VSCode的安裝目錄為$RELEASE,默認(rèn)的顏色主題配置文件都位于$RELEASE/resources/app/extensions目錄中。以theme-開頭的目錄即為顏色主題配置(事實(shí)上,其中有些是文件圖標(biāo)主題)。除若干主題會共用一個目錄外(theme-defaults),大多數(shù)主題都是一個主題一個目錄。

每個顏色主題配置目錄包含以下文件:themes目錄、OSSREADME.jsonpackage.jsonthemes目錄下通常使用.json設(shè)置具體的配色方案OSSREADME.json描述版權(quán)等相關(guān)信息,可以忽略;package.json令VSCode讀取后能區(qū)分不同的配色方案。

下面新增一個灰色調(diào)顏色主題。在$RELEASE/resources/app/extensions目錄下新增如下目錄結(jié)構(gòu)。如果你不關(guān)心配置文件相關(guān)參數(shù)的解釋,可無需細(xì)讀后面內(nèi)容,只需將相應(yīng)的配置文本復(fù)制至配置文件中即可,但需注意文件均為UTF-8編碼。

?
1
2
3
4
5
$RELEASE/resources/app/extensions/
 \_ theme-gv-gray/
   \_ themes/
   |  \_ gv-gray-color-theme.json
   |_ package.json

預(yù)覽圖

VSCode自定義配色方案的實(shí)現(xiàn)

package.json

package.json文件內(nèi)容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "name": "theme-gv-gray",
    "version": "0.1.0",
    "publisher": "GV",
    "engines": { "vscode": "*" },
    "contributes": {
        "themes": [
            {
                "label": "gv-gray",
                "uiTheme": "vs",
                "path": "./themes/gv-gray-color-theme.json"
            }
        ]
    }
}

 

參數(shù)名 作用
name 主題ID,必需在VSCode中全局唯一,即所有主題的package.json中該值均不能重復(fù)
contributes -> themes -> label 主題名,“文件-首選項(xiàng)-顏色主題”的列表中顯示該值
contributes -> themes -> uiTheme VSCode整體的UI主題,vs為淺色主題
contributes -> themes -> path 定義配色方案的文件名,如為相對路徑則相對于此文件

 

因配置文件內(nèi)容太長放至文末,以下說明對照配置文件內(nèi)容閱讀更易理解。

VSCode使用其以下兩個節(jié)點(diǎn):

 

參數(shù)名 作用
colors VSCode各個UI組件的顏色
tokenColors 語法高亮顏色

 

colors節(jié)點(diǎn)的內(nèi)容直接通過鍵值對參數(shù)描述,以下列舉幾個參數(shù)的作用:

 

圖示 參數(shù)名 作用
2 activityBar.background 活動欄背景色
1 activityBar.foreground 活動欄前景色(例如用于圖標(biāo))
12 editor.background 編輯器背景顏色
13 editor.foreground 編輯器默認(rèn)前景色
  editor.findMatchBackground 當(dāng)前搜索匹配項(xiàng)的顏色
  editor.findMatchHighlightBackground 其他搜索匹配項(xiàng)的顏色
15 editor.lineHighlightBackground 光標(biāo)所在行高亮文本的背景顏色
  editor.selectionBackground 編輯器所選內(nèi)容的顏色
  editor.selectionHighlightBackground 與所選內(nèi)容具有相同內(nèi)容的區(qū)域顏色
  editor.rangeHighlightBackground 突出顯示范圍的背景顏色,例如 "Quick Open" 和“查找”功能
16 editorBracketMatch.background 匹配括號的背景色
14 editorCursor.foreground 編輯器光標(biāo)顏色
11 editorGutter.background 編輯器導(dǎo)航線的背景色,導(dǎo)航線包括邊緣符號和行號
10 editorLineNumber.foreground 編輯器行號顏色
5 sideBar.background 側(cè)邊欄背景色
4 sideBar.foreground 側(cè)邊欄前景色
3 sideBarSectionHeader.background 側(cè)邊欄節(jié)標(biāo)題的背景顏色
17 statusBar.background 標(biāo)準(zhǔn)狀態(tài)欄背景色
17 statusBar.noFolderBackground 沒有打開文件夾時狀態(tài)欄的背景色
17 statusBar.debuggingBackground 調(diào)試程序時狀態(tài)欄的背景色
9 tab.activeBackground 活動選項(xiàng)卡的背景色
8 tab.activeForeground 活動組中活動選項(xiàng)卡的前景色
7 tab.inactiveBackground 非活動選項(xiàng)卡的背景色
6 tab.inactiveForeground 活動組中非活動選項(xiàng)卡的前景色

 

VSCode自定義配色方案的實(shí)現(xiàn)

tokenColors

tokenColors使用一個對象數(shù)組描述各語法高亮顏色。每個對象有如下結(jié)構(gòu):

?
1
2
3
4
5
6
7
8
9
10
11
12
{
    "name": "Comment",
    "scope": [
        "comment",
        "punctuation.definition.comment"
    ],
    "settings": {
        "background": "#ffffff",
        "fontStyle": "italic",
        "foreground": "#000000"
    }
}

 

參數(shù)名 作用
name 規(guī)則描述,一段容易理解的描述性文字
scope 作用域,指定使用那些VSCode內(nèi)部對象,其含義參看Scope Naming
setting -> background 背景色,可選
setting -> fontStyle 字體,可選,為bold、italic、underline
setting -> foreground 前景色,可選

 

以下列舉文末的配置文件中幾個name所指定的參數(shù)的作用:

 

參數(shù)名 作用
Character 字符
Class 類名
Comment 注釋
Function 函數(shù)名
Keyword 關(guān)鍵字
Number 數(shù)值
Operator 運(yùn)算符
Parameter 函數(shù)參數(shù)
Punctuation 標(biāo)點(diǎn)符號
String 字符串
Type 內(nèi)置類型
Variable 變量名

 

文件內(nèi)容

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
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
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
{
    "name": "gv-gray",
    "colors": {
        "activityBar.background": "#e0e0e0",
        "activityBar.foreground": "#000000",
        "editor.background": "#c8c8c8",
        "editor.foreground": "#000000",
        "editor.findMatchBackground": "#ffff00",
        "editor.findMatchHighlightBackground": "#ffff00",
        "editor.lineHighlightBackground": "#c0c0c0",
        "editor.selectionBackground": "#b0b0b0",
        "editor.selectionHighlightBackground": "#dfdfdf",
        "editor.rangeHighlightBackground": "#b0b0b0",
        "editorBracketMatch.background": "#b0b0b0",
        "editorCursor.foreground": "#333333",
        "editorGutter.background": "#d3d3d3",
        "editorLineNumber.foreground": "#777777",
        "sideBar.background": "#f5f5f5",
        "sideBar.foreground": "#000000",
        "sideBarSectionHeader.background": "#e0e0e0",
        "statusBar.background": "#444444",
        "statusBar.noFolderBackground": "#444444",
        "statusBar.debuggingBackground": "#444444",
        "tab.activeBackground": "#afafaf",
        "tab.activeForeground": "#000000",
        "tab.inactiveBackground": "#e0e0e0",
        "tab.inactiveForeground": "#000000",
        // Other colors.
        "activityBarBadge.background": "#705697",
        "button.background": "#705697",
        "dropdown.background": "#F5F5F5",
        "editorGroup.dropBackground": "#C9D0D988",
        "editorWhitespace.foreground": "#AAAAAA",
        "focusBorder": "#A6B39B",
        "inputOption.activeBorder": "#adafb7",
        "inputValidation.infoBorder": "#4ec1e5",
        "inputValidation.infoBackground": "#f2fcff",
        "inputValidation.warningBackground": "#fffee2",
        "inputValidation.warningBorder": "#ffe055",
        "inputValidation.errorBackground": "#ffeaea",
        "inputValidation.errorBorder": "#f1897f",
        "list.activeSelectionForeground": "#6c6c6c",
        "list.focusBackground": "#CADEB9",
        "list.activeSelectionBackground": "#c4d9b1",
        "list.inactiveSelectionBackground": "#d3dbcd",
        "list.highlightForeground": "#9769dc",
        "notification.background": "#442e66",
        "panel.background": "#F5F5F5",
        "peekViewEditor.matchHighlightBackground": "#C2DFE3",
        "peekViewTitle.background": "#F2F8FC",
        "peekViewEditor.background": "#F2F8FC",
        "peekViewResult.background": "#F2F8FC",
        "peekView.border": "#705697",
        "peekViewResult.matchHighlightBackground": "#93C6D6",
        "pickerGroup.foreground": "#A6B39B",
        "pickerGroup.border": "#749351"
    },
    "tokenColors": [
        {
            "settings": {
                "background": "#ffffff",
                "foreground": "#000000"
            }
        },
        {
            "name": "Character",
            "scope": [
                "constant",
                "constant.character"
            ],
            "settings": {
                "foreground": "#008000"
            }
        },
        {
            "name": "Class",
            "scope": [
                "entity.name.type",
                "entity.other.inherited-class",
                "support.class"
            ],
            "settings": {
                "foreground": "#000080"
            }
        },
        {
            "name": "Comment",
            "scope": [
                "comment",
                "punctuation.definition.comment"
            ],
            "settings": {
                "fontStyle": "italic",
                "foreground": "#0066ff"
            }
        },
        {
            "name": "Function",
            "scope": [
                "entity.name.function",
                "support.function"
            ],
            "settings": {
                "foreground": "#000000"
            }
        },
        {
            "name": "Keyword",
            "scope": [
                "keyword",
                "storage"
            ],
            "settings": {
                "fontStyle": "bold",
                "foreground": "#000080"
            }
        },
        {
            "name": "Number",
            "scope": [
                "constant.numeric"
            ],
            "settings": {
                "foreground": "#0044bb"
            }
        },
        {
            "name": "Operator",
            "scope": "keyword.operator",
            "settings": {
                "foreground": "#000000"
            }
        },
        {
            "name": "Parameter",
            "scope": "variable.parameter",
            "settings": {
                "fontStyle": "underline"
            }
        },
        {
            "name": "Punctuation",
            "scope": "punctuation",
            "settings": {
                "foreground": "#000000"
            }
        },
        {
            "name": "String",
            "scope": "string",
            "settings": {
                "foreground": "#008000"
            }
        },
        {
            "name": "Type",
            "scope": [
                "storage.type",
                "support.type"
            ],
            "settings": {
                "fontStyle": "",
                "foreground": "#000080"
            }
        },
        {
            "name": "Variable",
            "scope": [
                "support.variable",
                "variable"
            ],
            "settings": {
                "foreground": "#000000"
            }
        },
        // Other token colors.
        {
            "name": "Comments: Preprocessor",
            "scope": "comment.block.preprocessor",
            "settings": {
                "fontStyle": "",
                "foreground": "#AAAAAA"
            }
        },
        {
            "name": "Comments: Documentation",
            "scope": [
                "comment.documentation",
                "comment.block.documentation"
            ],
            "settings": {
                "foreground": "#448C27"
            }
        },
        {
            "name": "Invalid - Deprecated",
            "scope": "invalid.deprecated",
            "settings": {
                "background": "#96000014"
            }
        },
        {
            "name": "Invalid - Illegal",
            "scope": "invalid.illegal",
            "settings": {
                "background": "#96000014",
                "foreground": "#660000"
            }
        },
        {
            "name": "Language Constants",
            "scope": [
                "constant.language",
                "support.constant",
                "variable.language"
            ],
            "settings": {
                "foreground": "#AB6526"
            }
        },
        {
            "name": "Exceptions",
            "scope": "entity.name.exception",
            "settings": {
                "foreground": "#660000"
            }
        },
        {
            "name": "Sections",
            "scope": "entity.name.section",
            "settings": {
                "fontStyle": "bold"
            }
        },
        {
            "name": "Strings: Escape Sequences",
            "scope": "constant.character.escape",
            "settings": {
                "foreground": "#777777"
            }
        },
        {
            "name": "Strings: Regular Expressions",
            "scope": "string.regexp",
            "settings": {
                "foreground": "#4B83CD"
            }
        },
        {
            "name": "Strings: Symbols",
            "scope": "constant.other.symbol",
            "settings": {
                "foreground": "#AB6526"
            }
        },
        {
            "name": "Embedded Source",
            "scope": [
                "string source",
                "text source"
            ],
            "settings": {
                "background": "#EAEBE6"
            }
        },
        {
            "name": "HTML: Doctype Declaration",
            "scope": [
                "meta.tag.sgml.doctype",
                "meta.tag.sgml.doctype string",
                "meta.tag.sgml.doctype entity.name.tag",
                "meta.tag.sgml punctuation.definition.tag.html"
            ],
            "settings": {
                "foreground": "#AAAAAA"
            }
        },
        {
            "name": "HTML: Tags",
            "scope": [
                "meta.tag",
                "punctuation.definition.tag.html",
                "punctuation.definition.tag.begin.html",
                "punctuation.definition.tag.end.html"
            ],
            "settings": {
                "foreground": "#91B3E0"
            }
        },
        {
            "name": "HTML: Tag Names",
            "scope": "entity.name.tag",
            "settings": {
                "foreground": "#4B83CD"
            }
        },
        {
            "name": "HTML: Attribute Names",
            "scope": [
                "meta.tag entity.other.attribute-name",
                "entity.other.attribute-name.html"
            ],
            "settings": {
                "fontStyle": "italic",
                "foreground": "#91B3E0"
            }
        },
        {
            "name": "HTML: Entities",
            "scope": [
                "constant.character.entity",
                "punctuation.definition.entity"
            ],
            "settings": {
                "foreground": "#AB6526"
            }
        },
        {
            "name": "CSS: Selectors",
            "scope": [
                "meta.selector",
                "meta.selector entity",
                "meta.selector entity punctuation",
                "entity.name.tag.css"
            ],
            "settings": {
                "foreground": "#7A3E9D"
            }
        },
        {
            "name": "CSS: Property Names",
            "scope": [
                "meta.property-name",
                "support.type.property-name"
            ],
            "settings": {
                "foreground": "#AB6526"
            }
        },
        {
            "name": "CSS: Property Values",
            "scope": [
                "meta.property-value",
                "meta.property-value constant.other",
                "support.constant.property-value"
            ],
            "settings": {
                "foreground": "#448C27"
            }
        },
        {
            "name": "CSS: Important Keyword",
            "scope": "keyword.other.important",
            "settings": {
                "fontStyle": "bold"
            }
        },
        {
            "name": "Markup: Changed",
            "scope": "markup.changed",
            "settings": {
                "background": "#FFFFDD",
                "foreground": "#000000"
            }
        },
        {
            "name": "Markup: Deletion",
            "scope": "markup.deleted",
            "settings": {
                "background": "#FFDDDD",
                "foreground": "#000000"
            }
        },
        {
            "name": "Markup: Emphasis",
            "scope": "markup.italic",
            "settings": {
                "fontStyle": "italic"
            }
        },
        {
            "name": "Markup: Error",
            "scope": "markup.error",
            "settings": {
                "background": "#96000014",
                "foreground": "#660000"
            }
        },
        {
            "name": "Markup: Insertion",
            "scope": "markup.inserted",
            "settings": {
                "background": "#DDFFDD",
                "foreground": "#000000"
            }
        },
        {
            "name": "Markup: Link",
            "scope": "meta.link",
            "settings": {
                "foreground": "#4B83CD"
            }
        },
        {
            "name": "Markup: Output",
            "scope": [
                "markup.output",
                "markup.raw"
            ],
            "settings": {
                "foreground": "#777777"
            }
        },
        {
            "name": "Markup: Prompt",
            "scope": "markup.prompt",
            "settings": {
                "foreground": "#777777"
            }
        },
        {
            "name": "Markup: Heading",
            "scope": "markup.heading",
            "settings": {
                "foreground": "#AA3731"
            }
        },
        {
            "name": "Markup: Strong",
            "scope": "markup.bold",
            "settings": {
                "fontStyle": "bold"
            }
        },
        {
            "name": "Markup: Traceback",
            "scope": "markup.traceback",
            "settings": {
                "foreground": "#660000"
            }
        },
        {
            "name": "Markup: Underline",
            "scope": "markup.underline",
            "settings": {
                "fontStyle": "underline"
            }
        },
        {
            "name": "Markup Quote",
            "scope": "markup.quote",
            "settings": {
                "foreground": "#7A3E9D"
            }
        },
        {
            "name": "Markup Lists",
            "scope": "markup.list",
            "settings": {
                "foreground": "#4B83CD"
            }
        },
        {
            "name": "Markup Styling",
            "scope": [
                "markup.bold",
                "markup.italic"
            ],
            "settings": {
                "foreground": "#448C27"
            }
        },
        {
            "name": "Markup Inline",
            "scope": "markup.inline.raw",
            "settings": {
                "fontStyle": "",
                "foreground": "#AB6526"
            }
        },
        {
            "name": "Extra: Diff Range",
            "scope": [
                "meta.diff.range",
                "meta.diff.index",
                "meta.separator"
            ],
            "settings": {
                "background": "#DDDDFF",
                "foreground": "#434343"
            }
        },
        {
            "name": "Extra: Diff From",
            "scope": "meta.diff.header.from-file",
            "settings": {
                "background": "#FFDDDD",
                "foreground": "#434343"
            }
        },
        {
            "name": "Extra: Diff To",
            "scope": "meta.diff.header.to-file",
            "settings": {
                "background": "#DDFFDD",
                "foreground": "#434343"
            }
        }
    ]
}

到此這篇關(guān)于VSCode自定義配色方案的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)VSCode自定義配色 內(nèi)容請搜索服務(wù)器之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持服務(wù)器之家!

原文鏈接:https://www.cnblogs.com/garvenc/p/vscode_customize_color_theme.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 欧美亚洲激情在线 | 交欧美 | 久久99精品国产免费观看 | 91高清国产经典在线观看 | 特级老女人淫片高清视频 | 国产精品拍拍拍福利在线观看 | 特黄特色一级aa毛片免费观看 | 午夜宅男在线观看 | 青青草在线播放 | 欧美专区在线视频 | 韩国三级理韩国三级理人伦 | julia ann黑人巨大| 久久久久久久99精品免费观看 | 亚洲国产精品ⅴa在线观看 亚洲国产高清一区二区三区 | 日日干影院 | chinese456老年gay| 四虎成人影院网址 | 99国产精品免费视频 | 丰腴尤物贵妇浪荡小说 | 香港成人社区 | 2019中文字幕在线视频 | kisssis无减删全集在线观看 | 忘忧草在线| 99在线观看国产 | 欧美最猛性xxxxx动态图 | 亚洲伦理影院 | 免费在线观看视频 | 羞羞漫画免费漫画页面在线看漫画秋蝉 | 三级小说网站 | 粗又长好猛好爽视频 | 亚洲天堂视频在线免费观看 | 欧美日韩成人在线 | 免费网站看v片在线成人国产系列 | 好姑娘在线完整版视频 | 五月天色综合 | 美女张开腿让男人桶的 视频 | 欧美灰丝袜丝交nylons | 99视频网址 | 爽爽窝窝午夜精品一区二区 | 亚洲国产无线码在线观看 | 扒开黑女人p大荫蒂老女人 扒开大腿狠狠挺进视频 |