-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
59 lines (57 loc) · 1.38 KB
/
settings.json
File metadata and controls
59 lines (57 loc) · 1.38 KB
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
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit:
// https://code.visualstudio.com/docs/getstarted/settings#_settingsjson
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "docstring.heading.placeholder",
"settings": {
"fontStyle": "bold underline",
"foreground": "#569cd6",
}
},
{
"scope": "docstring.directive.placeholder",
"settings": {
"fontStyle": "bold",
"foreground": "#c586c0"
}
},
{
"scope": "docstring.identifier.placeholder",
"settings": {
"foreground": "#cccccc"
}
},
{
"scope": "docstring.literal.placeholder",
"settings": {
"foreground": "#d7ba7d"
}
},
{
"scope": "docstring.snippet.placeholder",
"settings": {
"fontStyle": "bold",
"foreground": "#f44747"
}
},
{
"scope": "docstring.variable.placeholder",
"settings": {
"fontStyle": "italic",
"foreground": "#9cdcfe"
}
},
{
"scope": "docstring.type.placeholder",
"settings": {
"fontStyle": "strikethrough",
"foreground": "#b5cea8"
}
}
]
}
}