-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdevmx.code-workspace
105 lines (105 loc) · 3.01 KB
/
devmx.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"editor.background": "#1C1C1C",
"editor.foreground": "#E6C9B7",
"editorCursor.foreground": "#1A84FF",
"editor.lineHighlightBackground": "#242424",
"editorLineNumber.foreground": "#00A656",
"editor.selectionBackground": "#fbd10050",
"editor.selectionHighlightBackground": "#2A2A2A70",
"editor.wordHighlightBackground": "#2A2A2A70",
"editor.wordHighlightStrongBackground": "#3A3A3A70",
"activityBar.background": "#1C1C1C",
"sideBar.background": "#1C1C1C",
"sideBar.foreground": "#E6C9B7",
"sideBarSectionHeader.background": "#2A2A2A",
"titleBar.activeBackground": "#1C1C1C",
"titleBar.activeForeground": "#1A84FF",
"statusBar.background": "#1C1C1C",
"statusBar.foreground": "#1A84FF",
"panel.background": "#1C1C1C",
"panel.border": "#343434",
"terminal.background": "#1C1C1C",
"terminal.foreground": "#E6C9B7",
"button.background": "#00A656",
"button.foreground": "#FFFFFF",
"dropdown.background": "#2A2A2A",
"dropdown.foreground": "#E6C9B7",
"input.background": "#2A2A2A",
"input.foreground": "#FFFFFF",
"scrollbarSlider.background": "#3A3A3A",
"scrollbarSlider.hoverBackground": "#4A4A4A",
"scrollbarSlider.activeBackground": "#5A5A5A",
"tab.activeBackground": "#1C1C1C",
"tab.activeForeground": "#1A84FF",
"tab.inactiveBackground": "#2A2A2A",
"tab.inactiveForeground": "#A0A0A0",
"tab.border": "#343434",
"editorGroupHeader.tabsBackground": "#1C1C1C",
"editorGroupHeader.tabsBorder": "#343434",
"minimap.background": "#1C1C1C",
"minimapSlider.background": "#3A3A3A",
"minimapSlider.hoverBackground": "#4A4A4A",
"minimapSlider.activeBackground": "#5A5A5A"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"foreground": "#00A656",
"fontStyle": "italic"
}
},
{
"scope": ["keyword", "storage.type"],
"settings": {
"foreground": "#1A84FF"
}
},
{
"scope": "string",
"settings": {
"foreground": "#FB8700"
}
},
{
"scope": "variable.language",
"settings": {
"foreground": "#00A656"
}
},
{
"scope": "variable.other",
"settings": {
"foreground": "#E6C9B7"
}
},
{
"scope": "constant.numeric",
"settings": {
"foreground": "#FB8700"
}
},
{
"scope": "entity.name.function",
"settings": {
"foreground": "#1A84FF"
}
},
{
"scope": "entity.name.type",
"settings": {
"foreground": "#00A656"
}
}
]
}
}
}