├── VSC-Material-Theme.json
├── Author-website.url
├── Author-website.desktop
├── Material-Theme-Darker.json
├── Material-Theme-Default.json
├── Material-Theme-Ocean.json
├── Material-Theme-Lighter.json
├── Material-Theme-Palenight.json
├── Material-Theme-Deepforest.json
└── Material-Theme-Darker-High-Contrast.json
└── README.md
/VSC-Material-Theme.json/Author-website.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=https://www.astorinomattia.com/
3 |
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Author-website.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Icon=text-html
3 | Name=Author-website
4 | Type=Link
5 | URL[$e]=https://www.astorinomattia.com/
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## How It Works
2 |
3 | First, you should know the goal is to **replace the `.json` code** of your chosen Material Theme (which I have included in this repository) with the code from one of the default VS Code themes. This way, whenever you select that specific default theme in the program, your chosen Material Theme will be applied instead.
4 |
5 | Some features and scripts, such as color accents, may not work as before, and will appear with default settings.
6 |
7 | Use the links to jump directly to any section:
8 | - [Windows Instructions](#for-windows)
9 | - [Linux Instructions](#for-linux)
10 | - [macOS Instructions](#for-macos)
11 | - [Additional Steps](#additional-steps-to-prevent-potential-issues)
12 |
13 | ---
14 |
15 |
16 | ## For Windows
17 |
18 | 1. **Choose Your Favorite Material Theme**
19 | First, select your preferred Material Theme from the files in this repository
20 |
21 | 2. **Locate the VS Code Default Themes Folder**
22 | Next, you can find the VS Code default themes folder in this directory:
23 |
24 | ```
25 | C:\Users\Your-user-name\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions
26 | ```
27 | *(Or the equivalent path on your system, make sure to replace `"Your-user-name"` with your actual username.)*
28 |
29 | Within this directory, there are several subfolders whose names start with `theme-`. These are the default themes we are looking for. Almost every theme has a corresponding name in the application.
30 |
31 | 3. **Choose the Default Theme to Replace**
32 | Now, pick a default theme folder (*e.g., `theme-defaults`*) and open it. Note the name of the `.json` file in its themes subfolder.
33 |
34 | 4. **Replace or overwrite the file**
35 | Next, you will need to edit the `.json` file in the ‘themes’ folder that you open in this step. At this point, we have two options:
36 |
37 | **Option 1 : Edit the Existing File**, Alternatively, you can copy all the code from your chosen Material Theme and paste it into the default theme's `.json` file in the 'themes' folder, then save it using an IDE.
38 |
39 | **Option 2 : Copy and Replace the File**, Rename the chosen Material Theme `.json` file to the exact name of the default theme's `.json` file in the 'themes' folder and replace the existing file.
40 | (*You may need to run File Explorer as administrator because permission issues*)
41 |
42 | Now you can select the edited theme in the application and enjoy!
43 |
44 | ---
45 |
46 |
47 | ## Additional Steps to Prevent Potential Issues
48 |
49 | I recommend these two additional steps to prevent potential issues caused by updates:
50 |
51 | ### Make the Edited `.json` File Read-Only
52 |
53 | **On Windows:** Right-click on the edited `.json` file > Select Properties > Mark "Read-Only"
54 |
55 | **On Linux:** Run in the terminal:
56 | ```bash
57 | sudo chmod 444 /path/to/your/file.json
58 | ```
59 |
60 | ### Add the Following Lines to Your `settings.json`
61 | This can be easily find by searching for "customizations" in the application settings:
62 |
63 | ```json
64 | "update.mode": "manual",
65 | "extensions.autoCheckUpdates": false,
66 | "extensions.autoUpdate": false
67 | ```
68 |
69 | Additionally, if you want to turn off extension recommendations, you can add the following lines to your `settings.json`:
70 |
71 | ```json
72 | "extensions.ignoreRecommendations": true,
73 | "extensions.showRecommendationsOnlyOnDemand": true
74 | ```
75 |
76 | **Attention:** Don't forget to check for updates manually if you're doing this.
77 |
78 | ### Important Note:
79 | Be sure to save the files externally. You may need to redo this process if you ever have to recreate the setup.
80 |
81 | ---
82 |
83 |
84 | ## For Linux
85 |
86 | We will follow the same steps as in Windows, but using terminal commands for a more direct and efficient approach.
87 |
88 | 1. **Choose Your Favorite Material Theme**
89 | Select your preferred Material Theme from the files in this repository.
90 |
91 | 2. **Locate the Default Themes Folder**
92 | Find the default theme you want to replace it with in the following directory:
93 | ```
94 | /usr/share/code/resources/app/extensions/
95 | ```
96 | *(Or the equivalent path in your system)*
97 |
98 | Within this directory, you will find several folders whose names start with `theme-`. These are the default themes linked to the application. After selecting the default VS Code theme you want to replace, open its folder and look for the subfolder named ‘themes’. Make sure to remember the exact directory path and the `.json` file name (*actually copy this and use it from the clipboard later*).
99 |
100 | 3. **Replace or overwrite the File**
101 | replacing files or overwrite the codes via copy & paste. In this guide, Examples below use `Material-Theme-Ocean.json` replacing `kimbie-dark-color-theme.json` in `theme-kimbie-dark/themes/`. You can follow these steps with your chosen theme’s name. You may need to adapt the commands depending on your distribution or preferred method.
102 |
103 | **Option 1 : Edit the existing file via Copy & Paste**, Open the file with a text editor like nano:
104 |
105 | ```bash
106 | sudo nano /usr/share/code/resources/app/extensions/theme-kimbie-dark/themes/kimbie-dark-color-theme.json
107 | ```
108 |
109 | Once the file opens, paste the copied code into it and save the file by pressing `Ctrl + O` and exit.
110 |
111 |
112 | **Option 2 : Replacing the File**, Navigate to this repository's folder in the terminal(*open Terminal there*).
113 |
114 | To replace the themes file, use the following command:
115 |
116 | ```bash
117 | sudo cp Material-Theme-Ocean.json /usr/share/code/resources/app/extensions/theme-kimbie-dark/themes/kimbie-dark-color-theme.json
118 | ```
119 | *(Pay attention to the name of the destination file if you're using different stuff)*
120 |
121 | Restart VS Code and select the modified theme.
122 |
123 | ---
124 |
125 |
126 | ## For macOS
127 | If you are on macOS, the process is similar to Linux; the default path is `/Applications/Visual Studio Code.app/Contents/Resources/app/extensions/`, Use sudo for commands.
128 |
129 |
130 | ---
131 |
132 | ### Additional Note:
133 | Ensure don't miss the Additional Steps to Prevent Potential Issues mentioned above.
134 |
135 | **Thanks for your attention :heart:**
136 |
137 |
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Darker.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Darker",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#212121",
9 | "foreground": "#EEFFFF"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#C3E88D"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#89DDFF"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#EEFFFF"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#ff9cac"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#F78C6C"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#EEFFFF"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#F78C6C"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#89DDFF"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#82AAFF"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#C792EA"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#f07178",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#FFCB6B"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#FFCB6B"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#545454",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#545454",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#89DDFF"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#FFCB6B"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#f07178"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#f07178"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#82AAFF"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#89DDFF"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#EEFFFF"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#f07178"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#f07178"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#89DDFF"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#FFCB6B"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#F78C6C"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#FFCB6B"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#B2CCD6"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#89DDFF"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#f07178"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#C792EA"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#EEFFFF"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#89DDFF"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#f07178"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#89DDFF"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#f07178",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#f07178",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#f07178",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#C3E88D"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#C3E88D"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#f07178"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#89DDFF"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#FFCB6B"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#f07178"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#82AAFF"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#FFCB6B"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#FFCB6B"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#545454"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#EEFFFF"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#EEFFFF"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#FFCB6B"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#EEFFFF"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#f07178"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#82AAFF"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#f07178"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#82AAFF"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#EEFFFF"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#89DDFF",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#82AAFF"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#212121",
443 | "foreground": "#EEFFFF"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#f07178"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#f07178"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#C3E88D"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#89DDFF",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#f07178",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#F78C6C"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#89DDFF"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#EEFFFF90"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#ff9cac"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#C792EA"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#FFCB6B"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#F78C6C"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#f07178"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#916b53"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#82AAFF"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#ff9cac"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#C792EA"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#C3E88D"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#EEFFFF",
633 | "button.background": "#61616150",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#212121",
636 | "input.background": "#2B2B2B",
637 | "inputOption.activeBorder": "#EEFFFF30",
638 | "list.activeSelectionBackground": "#212121",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#f0717880",
641 | "list.focusBackground": "#EEFFFF20",
642 | "list.focusForeground": "#EEFFFF",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#212121",
645 | "list.inactiveSelectionBackground": "#00000030",
646 | "activityBar.background": "#212121",
647 | "activityBar.dropBackground": "#f0717880",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#00000030",
651 | "badge.foreground": "#545454",
652 | "sideBar.background": "#212121",
653 | "sideBarSectionHeader.background": "#212121",
654 | "editorGroup.dropBackground": "#f0717880",
655 | "editorGroup.focusedEmptyBorder": "#f07178",
656 | "editorGroupHeader.tabsBackground": "#212121",
657 | "tab.border": "#212121",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#212121",
660 | "tab.activeModifiedBorder": "#676767",
661 | "tab.inactiveModifiedBorder": "#904348",
662 | "tab.unfocusedActiveModifiedBorder": "#c05a60",
663 | "tab.unfocusedInactiveModifiedBorder": "#904348",
664 | "editor.background": "#212121",
665 | "editor.foreground": "#EEFFFF",
666 | "editorLineNumber.foreground": "#424242",
667 | "editorLineNumber.activeForeground": "#676767",
668 | "editorCursor.foreground": "#FFCC00",
669 | "editor.selectionBackground": "#61616150",
670 | "editor.selectionHighlightBackground": "#FFCC0020",
671 | "editor.wordHighlightBackground": "#ff9cac30",
672 | "editor.wordHighlightStrongBackground": "#C3E88D30",
673 | "editor.findMatchHighlight": "#EEFFFF",
674 | "editor.findRangeHighlightBackground": "#FFCB6B30",
675 | "editor.lineHighlightBorder": "#00000000",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#EEFFFF40",
678 | "editorWidget.background": "#212121",
679 | "editorHoverWidget.background": "#212121",
680 | "editorMarkerNavigation.background": "#EEFFFF05",
681 | "peekView.border": "#00000030",
682 | "peekViewEditor.background": "#2B2B2B",
683 | "peekViewResult.background": "#2B2B2B",
684 | "peekViewTitle.background": "#2B2B2B",
685 | "panel.background": "#212121",
686 | "panel.border": "#21212160",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#EEFFFF",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#212121",
692 | "statusBar.debuggingBackground": "#C792EA",
693 | "statusBar.debuggingForeground": "#ffffff",
694 | "statusBar.noFolderBackground": "#212121",
695 | "statusBarItem.activeBackground": "#f0717880",
696 | "statusBarItem.hoverBackground": "#54545420",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#212121",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#82AAFF",
703 | "terminal.ansiBrightBlack": "#545454",
704 | "terminal.ansiBrightBlue": "#82AAFF",
705 | "terminal.ansiBrightCyan": "#89DDFF",
706 | "terminal.ansiBrightGreen": "#C3E88D",
707 | "terminal.ansiBrightMagenta": "#C792EA",
708 | "terminal.ansiBrightRed": "#f07178",
709 | "terminal.ansiBrightWhite": "#ffffff",
710 | "terminal.ansiBrightYellow": "#FFCB6B",
711 | "terminal.ansiCyan": "#89DDFF",
712 | "terminal.ansiGreen": "#C3E88D",
713 | "terminal.ansiMagenta": "#C792EA",
714 | "terminal.ansiRed": "#f07178",
715 | "terminal.ansiWhite": "#ffffff",
716 | "terminal.ansiYellow": "#FFCB6B",
717 | "debugToolBar.background": "#212121",
718 | "debugConsole.errorForeground": "#f07178",
719 | "debugConsole.infoForeground": "#89DDFF",
720 | "debugConsole.warningForeground": "#FFCB6B",
721 | "selection.background": "#00000080",
722 | "editorRuler.foreground": "#424242",
723 | "widget.shadow": "#00000030",
724 | "scrollbar.shadow": "#00000030",
725 | "editorLink.activeForeground": "#EEFFFF",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#424242",
729 | "terminalCursor.foreground": "#FFCB6B",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#EEFFFF30",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#EEFFFF",
734 | "sideBar.foreground": "#676767",
735 | "sideBar.border": "#21212160",
736 | "sideBarTitle.foreground": "#EEFFFF",
737 | "sideBarSectionHeader.border": "#21212160",
738 | "panel.dropBackground": "#EEFFFF",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#FFFFFF",
741 | "editor.lineHighlightBackground": "#00000050",
742 | "editor.findMatchBackground": "#000000",
743 | "editor.findMatchHighlightBackground": "#00000050",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#ffffff30",
746 | "editorIndentGuide.background": "#42424270",
747 | "editorIndentGuide.activeBackground": "#424242",
748 | "editorGroup.border": "#00000030",
749 | "editorGutter.modifiedBackground": "#82AAFF60",
750 | "editorGutter.addedBackground": "#C3E88D60",
751 | "editorGutter.deletedBackground": "#f0717860",
752 | "activityBar.border": "#21212160",
753 | "activityBar.foreground": "#EEFFFF",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#EEFFFF",
756 | "scrollbarSlider.background": "#EEFFFF20",
757 | "scrollbarSlider.hoverBackground": "#EEFFFF10",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#545454",
760 | "tab.activeForeground": "#FFFFFF",
761 | "tab.inactiveForeground": "#676767",
762 | "tab.activeBackground": "#212121",
763 | "tab.unfocusedActiveForeground": "#EEFFFF",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#21212160",
767 | "statusBar.foreground": "#616161",
768 | "editorBracketMatch.border": "#FFCC0050",
769 | "editorBracketMatch.background": "#212121",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#212121",
772 | "editorOverviewRuler.errorForeground": "#f0717840",
773 | "editorOverviewRuler.infoForeground": "#82AAFF40",
774 | "editorOverviewRuler.warningForeground": "#FFCB6B40",
775 | "editorInfo.foreground": "#82AAFF70",
776 | "editorWarning.foreground": "#FFCB6B70",
777 | "editorError.foreground": "#f0717870",
778 | "editorHoverWidget.border": "#FFFFFF10",
779 | "titleBar.activeForeground": "#EEFFFF",
780 | "titleBar.inactiveBackground": "#212121",
781 | "titleBar.inactiveForeground": "#676767",
782 | "titleBar.border": "#21212160",
783 | "input.foreground": "#EEFFFF",
784 | "input.placeholderForeground": "#EEFFFF60",
785 | "input.border": "#FFFFFF10",
786 | "inputValidation.errorBorder": "#f07178",
787 | "inputValidation.infoBorder": "#82AAFF",
788 | "inputValidation.warningBorder": "#FFCB6B",
789 | "dropdown.border": "#FFFFFF10",
790 | "quickInput.background": "#212121",
791 | "quickInput.foreground": "#676767",
792 | "list.hoverForeground": "#FFFFFF",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#EEFFFF20",
795 | "editorSuggestWidget.background": "#212121",
796 | "editorSuggestWidget.foreground": "#EEFFFF",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#00000050",
799 | "editorSuggestWidget.border": "#FFFFFF10",
800 | "diffEditor.insertedTextBackground": "#89DDFF20",
801 | "diffEditor.removedTextBackground": "#ff9cac20",
802 | "notifications.background": "#212121",
803 | "notifications.foreground": "#EEFFFF",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#C3E88D90",
806 | "extensionButton.prominentHoverBackground": "#C3E88D",
807 | "extensionButton.prominentForeground": "#EEFFFF",
808 | "peekViewEditorGutter.background": "#2B2B2B",
809 | "peekViewTitleDescription.foreground": "#EEFFFF60",
810 | "peekViewResult.matchHighlightBackground": "#61616150",
811 | "peekViewEditor.matchHighlightBackground": "#61616150",
812 | "peekViewResult.selectionBackground": "#67676770",
813 | "gitDecoration.deletedResourceForeground": "#f0717890",
814 | "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
815 | "gitDecoration.modifiedResourceForeground": "#82AAFF90",
816 | "gitDecoration.untrackedResourceForeground": "#C3E88D90",
817 | "gitDecoration.ignoredResourceForeground": "#67676790",
818 | "breadcrumb.background": "#212121",
819 | "breadcrumb.foreground": "#676767",
820 | "breadcrumb.focusForeground": "#EEFFFF",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#212121",
823 | "menu.background": "#212121",
824 | "menu.foreground": "#EEFFFF",
825 | "menu.selectionBackground": "#00000050",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#00000030",
828 | "menu.separatorBackground": "#EEFFFF",
829 | "menubar.selectionBackground": "#00000030",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#00000030",
832 | "settings.dropdownForeground": "#EEFFFF",
833 | "settings.dropdownBackground": "#212121",
834 | "settings.numberInputForeground": "#EEFFFF",
835 | "settings.numberInputBackground": "#212121",
836 | "settings.textInputForeground": "#EEFFFF",
837 | "settings.textInputBackground": "#212121",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#212121",
841 | "settings.checkboxForeground": "#EEFFFF",
842 | "listFilterWidget.background": "#00000030",
843 | "listFilterWidget.outline": "#00000030",
844 | "listFilterWidget.noMatchesOutline": "#00000030",
845 | "terminalCommandGuide.foreground": "#424242"
846 | }
847 | }
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Default.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Default",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#263238",
9 | "foreground": "#EEFFFF"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#C3E88D"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#89DDFF"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#EEFFFF"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#ff9cac"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#F78C6C"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#EEFFFF"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#F78C6C"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#89DDFF"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#82AAFF"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#C792EA"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#f07178",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#FFCB6B"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#FFCB6B"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#546E7A",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#546E7A",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#89DDFF"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#FFCB6B"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#f07178"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#f07178"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#82AAFF"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#89DDFF"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#EEFFFF"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#f07178"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#f07178"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#89DDFF"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#FFCB6B"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#F78C6C"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#FFCB6B"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#B2CCD6"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#89DDFF"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#f07178"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#C792EA"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#EEFFFF"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#89DDFF"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#f07178"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#89DDFF"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#f07178",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#f07178",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#f07178",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#C3E88D"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#C3E88D"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#f07178"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#89DDFF"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#FFCB6B"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#f07178"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#82AAFF"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#FFCB6B"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#FFCB6B"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#546E7A"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#EEFFFF"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#EEFFFF"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#FFCB6B"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#EEFFFF"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#f07178"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#82AAFF"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#f07178"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#82AAFF"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#EEFFFF"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#89DDFF",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#82AAFF"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#263238",
443 | "foreground": "#EEFFFF"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#f07178"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#f07178"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#C3E88D"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#89DDFF",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#f07178",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#F78C6C"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#89DDFF"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#EEFFFF90"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#ff9cac"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#C792EA"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#FFCB6B"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#F78C6C"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#f07178"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#916b53"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#82AAFF"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#ff9cac"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#C792EA"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#C3E88D"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#EEFFFF",
633 | "button.background": "#80CBC420",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#263238",
636 | "input.background": "#303C41",
637 | "inputOption.activeBorder": "#EEFFFF30",
638 | "list.activeSelectionBackground": "#263238",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#f0717880",
641 | "list.focusBackground": "#EEFFFF20",
642 | "list.focusForeground": "#EEFFFF",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#263238",
645 | "list.inactiveSelectionBackground": "#00000030",
646 | "activityBar.background": "#263238",
647 | "activityBar.dropBackground": "#f0717880",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#00000030",
651 | "badge.foreground": "#546E7A",
652 | "sideBar.background": "#263238",
653 | "sideBarSectionHeader.background": "#263238",
654 | "editorGroup.dropBackground": "#f0717880",
655 | "editorGroup.focusedEmptyBorder": "#f07178",
656 | "editorGroupHeader.tabsBackground": "#263238",
657 | "tab.border": "#263238",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#263238",
660 | "tab.activeModifiedBorder": "#6c8692",
661 | "tab.inactiveModifiedBorder": "#904348",
662 | "tab.unfocusedActiveModifiedBorder": "#c05a60",
663 | "tab.unfocusedInactiveModifiedBorder": "#904348",
664 | "editor.background": "#263238",
665 | "editor.foreground": "#EEFFFF",
666 | "editorLineNumber.foreground": "#465A64",
667 | "editorLineNumber.activeForeground": "#6c8692",
668 | "editorCursor.foreground": "#FFCC00",
669 | "editor.selectionBackground": "#80CBC420",
670 | "editor.selectionHighlightBackground": "#FFCC0020",
671 | "editor.wordHighlightBackground": "#ff9cac30",
672 | "editor.wordHighlightStrongBackground": "#C3E88D30",
673 | "editor.findMatchHighlight": "#EEFFFF",
674 | "editor.findRangeHighlightBackground": "#FFCB6B30",
675 | "editor.lineHighlightBorder": "#00000000",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#EEFFFF40",
678 | "editorWidget.background": "#263238",
679 | "editorHoverWidget.background": "#263238",
680 | "editorMarkerNavigation.background": "#EEFFFF05",
681 | "peekView.border": "#00000030",
682 | "peekViewEditor.background": "#303C41",
683 | "peekViewResult.background": "#303C41",
684 | "peekViewTitle.background": "#303C41",
685 | "panel.background": "#263238",
686 | "panel.border": "#26323860",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#EEFFFF",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#263238",
692 | "statusBar.debuggingBackground": "#C792EA",
693 | "statusBar.debuggingForeground": "#ffffff",
694 | "statusBar.noFolderBackground": "#263238",
695 | "statusBarItem.activeBackground": "#f0717880",
696 | "statusBarItem.hoverBackground": "#546E7A20",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#263238",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#82AAFF",
703 | "terminal.ansiBrightBlack": "#546E7A",
704 | "terminal.ansiBrightBlue": "#82AAFF",
705 | "terminal.ansiBrightCyan": "#89DDFF",
706 | "terminal.ansiBrightGreen": "#C3E88D",
707 | "terminal.ansiBrightMagenta": "#C792EA",
708 | "terminal.ansiBrightRed": "#f07178",
709 | "terminal.ansiBrightWhite": "#ffffff",
710 | "terminal.ansiBrightYellow": "#FFCB6B",
711 | "terminal.ansiCyan": "#89DDFF",
712 | "terminal.ansiGreen": "#C3E88D",
713 | "terminal.ansiMagenta": "#C792EA",
714 | "terminal.ansiRed": "#f07178",
715 | "terminal.ansiWhite": "#ffffff",
716 | "terminal.ansiYellow": "#FFCB6B",
717 | "debugToolBar.background": "#263238",
718 | "debugConsole.errorForeground": "#f07178",
719 | "debugConsole.infoForeground": "#89DDFF",
720 | "debugConsole.warningForeground": "#FFCB6B",
721 | "selection.background": "#00000080",
722 | "editorRuler.foreground": "#37474F",
723 | "widget.shadow": "#00000030",
724 | "scrollbar.shadow": "#00000030",
725 | "editorLink.activeForeground": "#EEFFFF",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#37474F",
729 | "terminalCursor.foreground": "#FFCB6B",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#EEFFFF30",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#EEFFFF",
734 | "sideBar.foreground": "#6c8692",
735 | "sideBar.border": "#26323860",
736 | "sideBarTitle.foreground": "#EEFFFF",
737 | "sideBarSectionHeader.border": "#26323860",
738 | "panel.dropBackground": "#EEFFFF",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#FFFFFF",
741 | "editor.lineHighlightBackground": "#00000050",
742 | "editor.findMatchBackground": "#000000",
743 | "editor.findMatchHighlightBackground": "#00000050",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#ffffff30",
746 | "editorIndentGuide.background": "#37474F70",
747 | "editorIndentGuide.activeBackground": "#37474F",
748 | "editorGroup.border": "#00000030",
749 | "editorGutter.modifiedBackground": "#82AAFF60",
750 | "editorGutter.addedBackground": "#C3E88D60",
751 | "editorGutter.deletedBackground": "#f0717860",
752 | "activityBar.border": "#26323860",
753 | "activityBar.foreground": "#EEFFFF",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#EEFFFF",
756 | "scrollbarSlider.background": "#EEFFFF20",
757 | "scrollbarSlider.hoverBackground": "#EEFFFF10",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#546E7A",
760 | "tab.activeForeground": "#FFFFFF",
761 | "tab.inactiveForeground": "#6c8692",
762 | "tab.activeBackground": "#263238",
763 | "tab.unfocusedActiveForeground": "#EEFFFF",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#26323860",
767 | "statusBar.foreground": "#546E7A",
768 | "editorBracketMatch.border": "#FFCC0050",
769 | "editorBracketMatch.background": "#263238",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#263238",
772 | "editorOverviewRuler.errorForeground": "#f0717840",
773 | "editorOverviewRuler.infoForeground": "#82AAFF40",
774 | "editorOverviewRuler.warningForeground": "#FFCB6B40",
775 | "editorInfo.foreground": "#82AAFF70",
776 | "editorWarning.foreground": "#FFCB6B70",
777 | "editorError.foreground": "#f0717870",
778 | "editorHoverWidget.border": "#FFFFFF10",
779 | "titleBar.activeForeground": "#EEFFFF",
780 | "titleBar.inactiveBackground": "#263238",
781 | "titleBar.inactiveForeground": "#6c8692",
782 | "titleBar.border": "#26323860",
783 | "input.foreground": "#EEFFFF",
784 | "input.placeholderForeground": "#EEFFFF60",
785 | "input.border": "#FFFFFF10",
786 | "inputValidation.errorBorder": "#f07178",
787 | "inputValidation.infoBorder": "#82AAFF",
788 | "inputValidation.warningBorder": "#FFCB6B",
789 | "dropdown.border": "#FFFFFF10",
790 | "quickInput.background": "#263238",
791 | "quickInput.foreground": "#6c8692",
792 | "list.hoverForeground": "#FFFFFF",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#EEFFFF20",
795 | "editorSuggestWidget.background": "#263238",
796 | "editorSuggestWidget.foreground": "#EEFFFF",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#00000050",
799 | "editorSuggestWidget.border": "#FFFFFF10",
800 | "diffEditor.insertedTextBackground": "#89DDFF20",
801 | "diffEditor.removedTextBackground": "#ff9cac20",
802 | "notifications.background": "#263238",
803 | "notifications.foreground": "#EEFFFF",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#C3E88D90",
806 | "extensionButton.prominentHoverBackground": "#C3E88D",
807 | "extensionButton.prominentForeground": "#EEFFFF",
808 | "peekViewEditorGutter.background": "#303C41",
809 | "peekViewTitleDescription.foreground": "#EEFFFF60",
810 | "peekViewResult.matchHighlightBackground": "#80CBC420",
811 | "peekViewEditor.matchHighlightBackground": "#80CBC420",
812 | "peekViewResult.selectionBackground": "#6c869270",
813 | "gitDecoration.deletedResourceForeground": "#f0717890",
814 | "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
815 | "gitDecoration.modifiedResourceForeground": "#82AAFF90",
816 | "gitDecoration.untrackedResourceForeground": "#C3E88D90",
817 | "gitDecoration.ignoredResourceForeground": "#6c869290",
818 | "breadcrumb.background": "#263238",
819 | "breadcrumb.foreground": "#6c8692",
820 | "breadcrumb.focusForeground": "#EEFFFF",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#263238",
823 | "menu.background": "#263238",
824 | "menu.foreground": "#EEFFFF",
825 | "menu.selectionBackground": "#00000050",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#00000030",
828 | "menu.separatorBackground": "#EEFFFF",
829 | "menubar.selectionBackground": "#00000030",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#00000030",
832 | "settings.dropdownForeground": "#EEFFFF",
833 | "settings.dropdownBackground": "#263238",
834 | "settings.numberInputForeground": "#EEFFFF",
835 | "settings.numberInputBackground": "#263238",
836 | "settings.textInputForeground": "#EEFFFF",
837 | "settings.textInputBackground": "#263238",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#263238",
841 | "settings.checkboxForeground": "#EEFFFF",
842 | "listFilterWidget.background": "#00000030",
843 | "listFilterWidget.outline": "#00000030",
844 | "listFilterWidget.noMatchesOutline": "#00000030",
845 | "terminalCommandGuide.foreground": "#465A64"
846 | }
847 | }
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Ocean.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Ocean",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#0F111A",
9 | "foreground": "#babed8"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#C3E88D"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#89DDFF"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#babed8"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#ff9cac"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#F78C6C"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#babed8"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#F78C6C"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#89DDFF"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#82AAFF"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#C792EA"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#f07178",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#FFCB6B"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#FFCB6B"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#464B5D",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#464B5D",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#89DDFF"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#FFCB6B"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#f07178"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#f07178"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#82AAFF"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#89DDFF"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#babed8"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#f07178"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#f07178"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#89DDFF"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#FFCB6B"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#F78C6C"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#FFCB6B"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#B2CCD6"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#89DDFF"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#f07178"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#C792EA"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#babed8"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#89DDFF"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#f07178"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#89DDFF"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#f07178",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#f07178",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#f07178",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#C3E88D"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#C3E88D"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#f07178"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#89DDFF"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#FFCB6B"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#f07178"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#82AAFF"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#FFCB6B"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#FFCB6B"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#464B5D"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#babed8"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#babed8"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#FFCB6B"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#babed8"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#f07178"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#82AAFF"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#f07178"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#82AAFF"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#babed8"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#89DDFF",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#82AAFF"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#0F111A",
443 | "foreground": "#babed8"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#f07178"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#f07178"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#C3E88D"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#89DDFF",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#f07178",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#F78C6C"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#89DDFF"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#babed890"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#ff9cac"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#C792EA"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#FFCB6B"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#F78C6C"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#f07178"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#916b53"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#82AAFF"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#ff9cac"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#C792EA"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#C3E88D"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#babed8",
633 | "button.background": "#717CB450",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#0F111A",
636 | "input.background": "#1A1C25",
637 | "inputOption.activeBorder": "#babed830",
638 | "list.activeSelectionBackground": "#0F111A",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#f0717880",
641 | "list.focusBackground": "#babed820",
642 | "list.focusForeground": "#babed8",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#0F111A",
645 | "list.inactiveSelectionBackground": "#00000030",
646 | "activityBar.background": "#0F111A",
647 | "activityBar.dropBackground": "#f0717880",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#00000030",
651 | "badge.foreground": "#464B5D",
652 | "sideBar.background": "#0F111A",
653 | "sideBarSectionHeader.background": "#0F111A",
654 | "editorGroup.dropBackground": "#f0717880",
655 | "editorGroup.focusedEmptyBorder": "#f07178",
656 | "editorGroupHeader.tabsBackground": "#0F111A",
657 | "tab.border": "#0F111A",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#0F111A",
660 | "tab.activeModifiedBorder": "#525975",
661 | "tab.inactiveModifiedBorder": "#904348",
662 | "tab.unfocusedActiveModifiedBorder": "#c05a60",
663 | "tab.unfocusedInactiveModifiedBorder": "#904348",
664 | "editor.background": "#0F111A",
665 | "editor.foreground": "#babed8",
666 | "editorLineNumber.foreground": "#3B3F5180",
667 | "editorLineNumber.activeForeground": "#525975",
668 | "editorCursor.foreground": "#FFCC00",
669 | "editor.selectionBackground": "#717CB450",
670 | "editor.selectionHighlightBackground": "#FFCC0020",
671 | "editor.wordHighlightBackground": "#ff9cac30",
672 | "editor.wordHighlightStrongBackground": "#C3E88D30",
673 | "editor.findMatchHighlight": "#babed8",
674 | "editor.findRangeHighlightBackground": "#FFCB6B30",
675 | "editor.lineHighlightBorder": "#00000000",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#babed840",
678 | "editorWidget.background": "#0F111A",
679 | "editorHoverWidget.background": "#0F111A",
680 | "editorMarkerNavigation.background": "#babed805",
681 | "peekView.border": "#00000030",
682 | "peekViewEditor.background": "#1A1C25",
683 | "peekViewResult.background": "#1A1C25",
684 | "peekViewTitle.background": "#1A1C25",
685 | "panel.background": "#0F111A",
686 | "panel.border": "#0F111A60",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#babed8",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#0F111A",
692 | "statusBar.debuggingBackground": "#C792EA",
693 | "statusBar.debuggingForeground": "#ffffff",
694 | "statusBar.noFolderBackground": "#0F111A",
695 | "statusBarItem.activeBackground": "#f0717880",
696 | "statusBarItem.hoverBackground": "#464B5D20",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#0F111A",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#82AAFF",
703 | "terminal.ansiBrightBlack": "#464B5D",
704 | "terminal.ansiBrightBlue": "#82AAFF",
705 | "terminal.ansiBrightCyan": "#89DDFF",
706 | "terminal.ansiBrightGreen": "#C3E88D",
707 | "terminal.ansiBrightMagenta": "#C792EA",
708 | "terminal.ansiBrightRed": "#f07178",
709 | "terminal.ansiBrightWhite": "#ffffff",
710 | "terminal.ansiBrightYellow": "#FFCB6B",
711 | "terminal.ansiCyan": "#89DDFF",
712 | "terminal.ansiGreen": "#C3E88D",
713 | "terminal.ansiMagenta": "#C792EA",
714 | "terminal.ansiRed": "#f07178",
715 | "terminal.ansiWhite": "#ffffff",
716 | "terminal.ansiYellow": "#FFCB6B",
717 | "debugToolBar.background": "#0F111A",
718 | "debugConsole.errorForeground": "#f07178",
719 | "debugConsole.infoForeground": "#89DDFF",
720 | "debugConsole.warningForeground": "#FFCB6B",
721 | "selection.background": "#00000080",
722 | "editorRuler.foreground": "#3B3F51",
723 | "widget.shadow": "#00000030",
724 | "scrollbar.shadow": "#00000030",
725 | "editorLink.activeForeground": "#babed8",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#3B3F51",
729 | "terminalCursor.foreground": "#FFCB6B",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#babed830",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#babed8",
734 | "sideBar.foreground": "#525975",
735 | "sideBar.border": "#0F111A60",
736 | "sideBarTitle.foreground": "#babed8",
737 | "sideBarSectionHeader.border": "#0F111A60",
738 | "panel.dropBackground": "#babed8",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#FFFFFF",
741 | "editor.lineHighlightBackground": "#00000050",
742 | "editor.findMatchBackground": "#000000",
743 | "editor.findMatchHighlightBackground": "#00000050",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#ffffff30",
746 | "editorIndentGuide.background": "#3B3F5170",
747 | "editorIndentGuide.activeBackground": "#3B3F51",
748 | "editorGroup.border": "#00000030",
749 | "editorGutter.modifiedBackground": "#82AAFF60",
750 | "editorGutter.addedBackground": "#C3E88D60",
751 | "editorGutter.deletedBackground": "#f0717860",
752 | "activityBar.border": "#0F111A60",
753 | "activityBar.foreground": "#babed8",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#babed8",
756 | "scrollbarSlider.background": "#8F93A220",
757 | "scrollbarSlider.hoverBackground": "#8F93A210",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#464B5D",
760 | "tab.activeForeground": "#FFFFFF",
761 | "tab.inactiveForeground": "#525975",
762 | "tab.activeBackground": "#0F111A",
763 | "tab.unfocusedActiveForeground": "#babed8",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#0F111A60",
767 | "statusBar.foreground": "#4B526D",
768 | "editorBracketMatch.border": "#FFCC0050",
769 | "editorBracketMatch.background": "#0F111A",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#0F111A",
772 | "editorOverviewRuler.errorForeground": "#f0717840",
773 | "editorOverviewRuler.infoForeground": "#82AAFF40",
774 | "editorOverviewRuler.warningForeground": "#FFCB6B40",
775 | "editorInfo.foreground": "#82AAFF70",
776 | "editorWarning.foreground": "#FFCB6B70",
777 | "editorError.foreground": "#f0717870",
778 | "editorHoverWidget.border": "#FFFFFF10",
779 | "titleBar.activeForeground": "#babed8",
780 | "titleBar.inactiveBackground": "#0F111A",
781 | "titleBar.inactiveForeground": "#525975",
782 | "titleBar.border": "#0F111A60",
783 | "input.foreground": "#babed8",
784 | "input.placeholderForeground": "#babed860",
785 | "input.border": "#FFFFFF10",
786 | "inputValidation.errorBorder": "#f07178",
787 | "inputValidation.infoBorder": "#82AAFF",
788 | "inputValidation.warningBorder": "#FFCB6B",
789 | "dropdown.border": "#FFFFFF10",
790 | "quickInput.background": "#0F111A",
791 | "quickInput.foreground": "#525975",
792 | "list.hoverForeground": "#FFFFFF",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#babed820",
795 | "editorSuggestWidget.background": "#0F111A",
796 | "editorSuggestWidget.foreground": "#babed8",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#00000050",
799 | "editorSuggestWidget.border": "#FFFFFF10",
800 | "diffEditor.insertedTextBackground": "#89DDFF20",
801 | "diffEditor.removedTextBackground": "#ff9cac20",
802 | "notifications.background": "#0F111A",
803 | "notifications.foreground": "#babed8",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#C3E88D90",
806 | "extensionButton.prominentHoverBackground": "#C3E88D",
807 | "extensionButton.prominentForeground": "#babed8",
808 | "peekViewEditorGutter.background": "#1A1C25",
809 | "peekViewTitleDescription.foreground": "#babed860",
810 | "peekViewResult.matchHighlightBackground": "#717CB450",
811 | "peekViewEditor.matchHighlightBackground": "#717CB450",
812 | "peekViewResult.selectionBackground": "#52597570",
813 | "gitDecoration.deletedResourceForeground": "#f0717890",
814 | "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
815 | "gitDecoration.modifiedResourceForeground": "#82AAFF90",
816 | "gitDecoration.untrackedResourceForeground": "#C3E88D90",
817 | "gitDecoration.ignoredResourceForeground": "#52597590",
818 | "breadcrumb.background": "#0F111A",
819 | "breadcrumb.foreground": "#525975",
820 | "breadcrumb.focusForeground": "#babed8",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#0F111A",
823 | "menu.background": "#0F111A",
824 | "menu.foreground": "#babed8",
825 | "menu.selectionBackground": "#00000050",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#00000030",
828 | "menu.separatorBackground": "#babed8",
829 | "menubar.selectionBackground": "#00000030",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#00000030",
832 | "settings.dropdownForeground": "#babed8",
833 | "settings.dropdownBackground": "#0F111A",
834 | "settings.numberInputForeground": "#babed8",
835 | "settings.numberInputBackground": "#0F111A",
836 | "settings.textInputForeground": "#babed8",
837 | "settings.textInputBackground": "#0F111A",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#0F111A",
841 | "settings.checkboxForeground": "#babed8",
842 | "listFilterWidget.background": "#00000030",
843 | "listFilterWidget.outline": "#00000030",
844 | "listFilterWidget.noMatchesOutline": "#00000030",
845 | "terminalCommandGuide.foreground": "#3B3F5180"
846 | }
847 | }
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Lighter.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Lighter",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#FAFAFA",
9 | "foreground": "#90A4AE"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#91B859"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#39ADB5"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#90A4AE"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#FF5370"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#F76D47"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#90A4AE"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#F76D47"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#39ADB5"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#6182B8"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#9C3EDA"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#E53935",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#E2931D"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#E2931D"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#90A4AE",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#90A4AE",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#39ADB5"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#E2931D"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#E53935"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#E53935"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#6182B8"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#39ADB5"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#90A4AE"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#E53935"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#E53935"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#39ADB5"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#E2931D"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#F76D47"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#E2931D"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#8796B0"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#39ADB5"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#E53935"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#9C3EDA"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#90A4AE"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#39ADB5"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#E53935"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#39ADB5"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#E53935",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#E53935",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#E53935",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#91B859"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#91B859"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#E53935"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#39ADB5"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#E2931D"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#E53935"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#6182B8"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#E2931D"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#E2931D"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#90A4AE"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#90A4AE"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#90A4AE"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#E2931D"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#90A4AE"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#E53935"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#6182B8"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#E53935"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#6182B8"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#90A4AE"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#39ADB5",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#6182B8"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#FAFAFA",
443 | "foreground": "#90A4AE"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#E53935"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#E53935"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#91B859"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#39ADB5",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#E53935",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#F76D47"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#39ADB5"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#90A4AE90"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#FF5370"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#9C3EDA"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#E2931D"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#F76D47"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#E53935"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#916b53"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#6182B8"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#FF5370"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#9C3EDA"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#91B859"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#90A4AE",
633 | "button.background": "#80CBC440",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#FAFAFA",
636 | "input.background": "#EEEEEE",
637 | "inputOption.activeBorder": "#90A4AE30",
638 | "list.activeSelectionBackground": "#FAFAFA",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#E5393580",
641 | "list.focusBackground": "#90A4AE20",
642 | "list.focusForeground": "#90A4AE",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#FAFAFA",
645 | "list.inactiveSelectionBackground": "#CCD7DA50",
646 | "activityBar.background": "#FAFAFA",
647 | "activityBar.dropBackground": "#E5393580",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#CCD7DA30",
651 | "badge.foreground": "#90A4AE",
652 | "sideBar.background": "#FAFAFA",
653 | "sideBarSectionHeader.background": "#FAFAFA",
654 | "editorGroup.dropBackground": "#E5393580",
655 | "editorGroup.focusedEmptyBorder": "#E53935",
656 | "editorGroupHeader.tabsBackground": "#FAFAFA",
657 | "tab.border": "#FAFAFA",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#FAFAFA",
660 | "tab.activeModifiedBorder": "#758a95",
661 | "tab.inactiveModifiedBorder": "#89221f",
662 | "tab.unfocusedActiveModifiedBorder": "#b72d2a",
663 | "tab.unfocusedInactiveModifiedBorder": "#89221f",
664 | "editor.background": "#FAFAFA",
665 | "editor.foreground": "#90A4AE",
666 | "editorLineNumber.foreground": "#CFD8DC",
667 | "editorLineNumber.activeForeground": "#758a95",
668 | "editorCursor.foreground": "#272727",
669 | "editor.selectionBackground": "#80CBC440",
670 | "editor.selectionHighlightBackground": "#27272720",
671 | "editor.wordHighlightBackground": "#FF537030",
672 | "editor.wordHighlightStrongBackground": "#91B85930",
673 | "editor.findMatchHighlight": "#90A4AE",
674 | "editor.findRangeHighlightBackground": "#E2931D30",
675 | "editor.lineHighlightBorder": "#CCD7DA00",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#90A4AE40",
678 | "editorWidget.background": "#FAFAFA",
679 | "editorHoverWidget.background": "#FAFAFA",
680 | "editorMarkerNavigation.background": "#90A4AE05",
681 | "peekView.border": "#00000020",
682 | "peekViewEditor.background": "#EEEEEE",
683 | "peekViewResult.background": "#EEEEEE",
684 | "peekViewTitle.background": "#EEEEEE",
685 | "panel.background": "#FAFAFA",
686 | "panel.border": "#FAFAFA60",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#90A4AE",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#FAFAFA",
692 | "statusBar.debuggingBackground": "#9C3EDA",
693 | "statusBar.debuggingForeground": "#FFFFFF",
694 | "statusBar.noFolderBackground": "#FAFAFA",
695 | "statusBarItem.activeBackground": "#E5393580",
696 | "statusBarItem.hoverBackground": "#90A4AE20",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#FAFAFA",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#6182B8",
703 | "terminal.ansiBrightBlack": "#90A4AE",
704 | "terminal.ansiBrightBlue": "#6182B8",
705 | "terminal.ansiBrightCyan": "#39ADB5",
706 | "terminal.ansiBrightGreen": "#91B859",
707 | "terminal.ansiBrightMagenta": "#9C3EDA",
708 | "terminal.ansiBrightRed": "#E53935",
709 | "terminal.ansiBrightWhite": "#FFFFFF",
710 | "terminal.ansiBrightYellow": "#E2931D",
711 | "terminal.ansiCyan": "#39ADB5",
712 | "terminal.ansiGreen": "#91B859",
713 | "terminal.ansiMagenta": "#9C3EDA",
714 | "terminal.ansiRed": "#E53935",
715 | "terminal.ansiWhite": "#FFFFFF",
716 | "terminal.ansiYellow": "#E2931D",
717 | "debugToolBar.background": "#FAFAFA",
718 | "debugConsole.errorForeground": "#E53935",
719 | "debugConsole.infoForeground": "#39ADB5",
720 | "debugConsole.warningForeground": "#E2931D",
721 | "selection.background": "#CCD7DA80",
722 | "editorRuler.foreground": "#B0BEC5",
723 | "widget.shadow": "#00000020",
724 | "scrollbar.shadow": "#00000020",
725 | "editorLink.activeForeground": "#90A4AE",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#B0BEC5",
729 | "terminalCursor.foreground": "#E2931D",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#90A4AE30",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#90A4AE",
734 | "sideBar.foreground": "#758a95",
735 | "sideBar.border": "#FAFAFA60",
736 | "sideBarTitle.foreground": "#90A4AE",
737 | "sideBarSectionHeader.border": "#FAFAFA60",
738 | "panel.dropBackground": "#90A4AE",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#000000",
741 | "editor.lineHighlightBackground": "#CCD7DA50",
742 | "editor.findMatchBackground": "#00000020",
743 | "editor.findMatchHighlightBackground": "#00000010",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#00000030",
746 | "editorIndentGuide.background": "#B0BEC570",
747 | "editorIndentGuide.activeBackground": "#B0BEC5",
748 | "editorGroup.border": "#00000020",
749 | "editorGutter.modifiedBackground": "#6182B860",
750 | "editorGutter.addedBackground": "#91B85960",
751 | "editorGutter.deletedBackground": "#E5393560",
752 | "activityBar.border": "#FAFAFA60",
753 | "activityBar.foreground": "#90A4AE",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#90A4AE",
756 | "scrollbarSlider.background": "#90A4AE20",
757 | "scrollbarSlider.hoverBackground": "#90A4AE10",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#90A4AE",
760 | "tab.activeForeground": "#000000",
761 | "tab.inactiveForeground": "#758a95",
762 | "tab.activeBackground": "#FAFAFA",
763 | "tab.unfocusedActiveForeground": "#90A4AE",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#FAFAFA60",
767 | "statusBar.foreground": "#7E939E",
768 | "editorBracketMatch.border": "#27272750",
769 | "editorBracketMatch.background": "#FAFAFA",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#FAFAFA",
772 | "editorOverviewRuler.errorForeground": "#E5393540",
773 | "editorOverviewRuler.infoForeground": "#6182B840",
774 | "editorOverviewRuler.warningForeground": "#E2931D40",
775 | "editorInfo.foreground": "#6182B870",
776 | "editorWarning.foreground": "#E2931D70",
777 | "editorError.foreground": "#E5393570",
778 | "editorHoverWidget.border": "#00000010",
779 | "titleBar.activeForeground": "#90A4AE",
780 | "titleBar.inactiveBackground": "#FAFAFA",
781 | "titleBar.inactiveForeground": "#758a95",
782 | "titleBar.border": "#FAFAFA60",
783 | "input.foreground": "#90A4AE",
784 | "input.placeholderForeground": "#90A4AE60",
785 | "input.border": "#00000010",
786 | "inputValidation.errorBorder": "#E53935",
787 | "inputValidation.infoBorder": "#6182B8",
788 | "inputValidation.warningBorder": "#E2931D",
789 | "dropdown.border": "#00000010",
790 | "quickInput.background": "#FAFAFA",
791 | "quickInput.foreground": "#758a95",
792 | "list.hoverForeground": "#B1C7D3",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#90A4AE20",
795 | "editorSuggestWidget.background": "#FAFAFA",
796 | "editorSuggestWidget.foreground": "#90A4AE",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#CCD7DA50",
799 | "editorSuggestWidget.border": "#00000010",
800 | "diffEditor.insertedTextBackground": "#39ADB520",
801 | "diffEditor.removedTextBackground": "#FF537020",
802 | "notifications.background": "#FAFAFA",
803 | "notifications.foreground": "#90A4AE",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#91B85990",
806 | "extensionButton.prominentHoverBackground": "#91B859",
807 | "extensionButton.prominentForeground": "#90A4AE",
808 | "peekViewEditorGutter.background": "#EEEEEE",
809 | "peekViewTitleDescription.foreground": "#90A4AE60",
810 | "peekViewResult.matchHighlightBackground": "#80CBC440",
811 | "peekViewEditor.matchHighlightBackground": "#80CBC440",
812 | "peekViewResult.selectionBackground": "#758a9570",
813 | "gitDecoration.deletedResourceForeground": "#E5393590",
814 | "gitDecoration.conflictingResourceForeground": "#E2931D90",
815 | "gitDecoration.modifiedResourceForeground": "#6182B890",
816 | "gitDecoration.untrackedResourceForeground": "#91B85990",
817 | "gitDecoration.ignoredResourceForeground": "#758a9590",
818 | "breadcrumb.background": "#FAFAFA",
819 | "breadcrumb.foreground": "#758a95",
820 | "breadcrumb.focusForeground": "#90A4AE",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#FAFAFA",
823 | "menu.background": "#FAFAFA",
824 | "menu.foreground": "#90A4AE",
825 | "menu.selectionBackground": "#CCD7DA50",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#CCD7DA50",
828 | "menu.separatorBackground": "#90A4AE",
829 | "menubar.selectionBackground": "#CCD7DA50",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#CCD7DA50",
832 | "settings.dropdownForeground": "#90A4AE",
833 | "settings.dropdownBackground": "#FAFAFA",
834 | "settings.numberInputForeground": "#90A4AE",
835 | "settings.numberInputBackground": "#FAFAFA",
836 | "settings.textInputForeground": "#90A4AE",
837 | "settings.textInputBackground": "#FAFAFA",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#FAFAFA",
841 | "settings.checkboxForeground": "#90A4AE",
842 | "listFilterWidget.background": "#CCD7DA50",
843 | "listFilterWidget.outline": "#CCD7DA50",
844 | "listFilterWidget.noMatchesOutline": "#CCD7DA50",
845 | "terminalCommandGuide.foreground": "#CFD8DC"
846 | }
847 | }
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Palenight.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Palenight",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#292D3E",
9 | "foreground": "#babed8"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#C3E88D"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#89DDFF"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#babed8"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#ff9cac"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#F78C6C"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#babed8"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#F78C6C"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#89DDFF"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#82AAFF"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#C792EA"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#f07178",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#FFCB6B"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#FFCB6B"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#676E95",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#676E95",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#89DDFF"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#FFCB6B"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#f07178"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#f07178"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#82AAFF"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#89DDFF"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#babed8"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#f07178"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#f07178"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#89DDFF"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#FFCB6B"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#F78C6C"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#FFCB6B"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#B2CCD6"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#89DDFF"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#f07178"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#C792EA"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#babed8"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#89DDFF"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#f07178"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#89DDFF"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#f07178",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#f07178",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#f07178",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#C3E88D"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#C3E88D"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#f07178"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#89DDFF"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#FFCB6B"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#f07178"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#82AAFF"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#FFCB6B"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#FFCB6B"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#676E95"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#babed8"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#babed8"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#FFCB6B"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#babed8"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#f07178"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#82AAFF"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#f07178"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#82AAFF"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#babed8"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#89DDFF",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#82AAFF"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#292D3E",
443 | "foreground": "#babed8"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#f07178"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#f07178"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#C3E88D"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#89DDFF",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#f07178",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#F78C6C"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#89DDFF"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#babed890"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#ff9cac"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#C792EA"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#FFCB6B"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#F78C6C"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#f07178"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#916b53"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#82AAFF"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#ff9cac"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#C792EA"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#C3E88D"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#babed8",
633 | "button.background": "#717CB450",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#292D3E",
636 | "input.background": "#333747",
637 | "inputOption.activeBorder": "#babed830",
638 | "list.activeSelectionBackground": "#292D3E",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#f0717880",
641 | "list.focusBackground": "#babed820",
642 | "list.focusForeground": "#babed8",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#292D3E",
645 | "list.inactiveSelectionBackground": "#00000030",
646 | "activityBar.background": "#292D3E",
647 | "activityBar.dropBackground": "#f0717880",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#00000030",
651 | "badge.foreground": "#676E95",
652 | "sideBar.background": "#292D3E",
653 | "sideBarSectionHeader.background": "#292D3E",
654 | "editorGroup.dropBackground": "#f0717880",
655 | "editorGroup.focusedEmptyBorder": "#f07178",
656 | "editorGroupHeader.tabsBackground": "#292D3E",
657 | "tab.border": "#292D3E",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#292D3E",
660 | "tab.activeModifiedBorder": "#676E95",
661 | "tab.inactiveModifiedBorder": "#904348",
662 | "tab.unfocusedActiveModifiedBorder": "#c05a60",
663 | "tab.unfocusedInactiveModifiedBorder": "#904348",
664 | "editor.background": "#292D3E",
665 | "editor.foreground": "#babed8",
666 | "editorLineNumber.foreground": "#3A3F58",
667 | "editorLineNumber.activeForeground": "#676E95",
668 | "editorCursor.foreground": "#FFCC00",
669 | "editor.selectionBackground": "#717CB450",
670 | "editor.selectionHighlightBackground": "#FFCC0020",
671 | "editor.wordHighlightBackground": "#ff9cac30",
672 | "editor.wordHighlightStrongBackground": "#C3E88D30",
673 | "editor.findMatchHighlight": "#babed8",
674 | "editor.findRangeHighlightBackground": "#FFCB6B30",
675 | "editor.lineHighlightBorder": "#00000000",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#babed840",
678 | "editorWidget.background": "#292D3E",
679 | "editorHoverWidget.background": "#292D3E",
680 | "editorMarkerNavigation.background": "#babed805",
681 | "peekView.border": "#00000030",
682 | "peekViewEditor.background": "#333747",
683 | "peekViewResult.background": "#333747",
684 | "peekViewTitle.background": "#333747",
685 | "panel.background": "#292D3E",
686 | "panel.border": "#292D3E60",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#babed8",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#292D3E",
692 | "statusBar.debuggingBackground": "#C792EA",
693 | "statusBar.debuggingForeground": "#ffffff",
694 | "statusBar.noFolderBackground": "#292D3E",
695 | "statusBarItem.activeBackground": "#f0717880",
696 | "statusBarItem.hoverBackground": "#676E9520",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#292D3E",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#82AAFF",
703 | "terminal.ansiBrightBlack": "#676E95",
704 | "terminal.ansiBrightBlue": "#82AAFF",
705 | "terminal.ansiBrightCyan": "#89DDFF",
706 | "terminal.ansiBrightGreen": "#C3E88D",
707 | "terminal.ansiBrightMagenta": "#C792EA",
708 | "terminal.ansiBrightRed": "#f07178",
709 | "terminal.ansiBrightWhite": "#ffffff",
710 | "terminal.ansiBrightYellow": "#FFCB6B",
711 | "terminal.ansiCyan": "#89DDFF",
712 | "terminal.ansiGreen": "#C3E88D",
713 | "terminal.ansiMagenta": "#C792EA",
714 | "terminal.ansiRed": "#f07178",
715 | "terminal.ansiWhite": "#ffffff",
716 | "terminal.ansiYellow": "#FFCB6B",
717 | "debugToolBar.background": "#292D3E",
718 | "debugConsole.errorForeground": "#f07178",
719 | "debugConsole.infoForeground": "#89DDFF",
720 | "debugConsole.warningForeground": "#FFCB6B",
721 | "selection.background": "#00000080",
722 | "editorRuler.foreground": "#4E5579",
723 | "widget.shadow": "#00000030",
724 | "scrollbar.shadow": "#00000030",
725 | "editorLink.activeForeground": "#babed8",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#4E5579",
729 | "terminalCursor.foreground": "#FFCB6B",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#babed830",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#babed8",
734 | "sideBar.foreground": "#676E95",
735 | "sideBar.border": "#292D3E60",
736 | "sideBarTitle.foreground": "#babed8",
737 | "sideBarSectionHeader.border": "#292D3E60",
738 | "panel.dropBackground": "#babed8",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#FFFFFF",
741 | "editor.lineHighlightBackground": "#00000050",
742 | "editor.findMatchBackground": "#000000",
743 | "editor.findMatchHighlightBackground": "#00000050",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#ffffff30",
746 | "editorIndentGuide.background": "#4E557970",
747 | "editorIndentGuide.activeBackground": "#4E5579",
748 | "editorGroup.border": "#00000030",
749 | "editorGutter.modifiedBackground": "#82AAFF60",
750 | "editorGutter.addedBackground": "#C3E88D60",
751 | "editorGutter.deletedBackground": "#f0717860",
752 | "activityBar.border": "#292D3E60",
753 | "activityBar.foreground": "#babed8",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#babed8",
756 | "scrollbarSlider.background": "#A6ACCD20",
757 | "scrollbarSlider.hoverBackground": "#A6ACCD10",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#676E95",
760 | "tab.activeForeground": "#FFFFFF",
761 | "tab.inactiveForeground": "#676E95",
762 | "tab.activeBackground": "#292D3E",
763 | "tab.unfocusedActiveForeground": "#babed8",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#292D3E60",
767 | "statusBar.foreground": "#676E95",
768 | "editorBracketMatch.border": "#FFCC0050",
769 | "editorBracketMatch.background": "#292D3E",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#292D3E",
772 | "editorOverviewRuler.errorForeground": "#f0717840",
773 | "editorOverviewRuler.infoForeground": "#82AAFF40",
774 | "editorOverviewRuler.warningForeground": "#FFCB6B40",
775 | "editorInfo.foreground": "#82AAFF70",
776 | "editorWarning.foreground": "#FFCB6B70",
777 | "editorError.foreground": "#f0717870",
778 | "editorHoverWidget.border": "#FFFFFF10",
779 | "titleBar.activeForeground": "#babed8",
780 | "titleBar.inactiveBackground": "#292D3E",
781 | "titleBar.inactiveForeground": "#676E95",
782 | "titleBar.border": "#292D3E60",
783 | "input.foreground": "#babed8",
784 | "input.placeholderForeground": "#babed860",
785 | "input.border": "#FFFFFF10",
786 | "inputValidation.errorBorder": "#f07178",
787 | "inputValidation.infoBorder": "#82AAFF",
788 | "inputValidation.warningBorder": "#FFCB6B",
789 | "dropdown.border": "#FFFFFF10",
790 | "quickInput.background": "#292D3E",
791 | "quickInput.foreground": "#676E95",
792 | "list.hoverForeground": "#FFFFFF",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#babed820",
795 | "editorSuggestWidget.background": "#292D3E",
796 | "editorSuggestWidget.foreground": "#babed8",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#00000050",
799 | "editorSuggestWidget.border": "#FFFFFF10",
800 | "diffEditor.insertedTextBackground": "#89DDFF20",
801 | "diffEditor.removedTextBackground": "#ff9cac20",
802 | "notifications.background": "#292D3E",
803 | "notifications.foreground": "#babed8",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#C3E88D90",
806 | "extensionButton.prominentHoverBackground": "#C3E88D",
807 | "extensionButton.prominentForeground": "#babed8",
808 | "peekViewEditorGutter.background": "#333747",
809 | "peekViewTitleDescription.foreground": "#babed860",
810 | "peekViewResult.matchHighlightBackground": "#717CB450",
811 | "peekViewEditor.matchHighlightBackground": "#717CB450",
812 | "peekViewResult.selectionBackground": "#676E9570",
813 | "gitDecoration.deletedResourceForeground": "#f0717890",
814 | "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
815 | "gitDecoration.modifiedResourceForeground": "#82AAFF90",
816 | "gitDecoration.untrackedResourceForeground": "#C3E88D90",
817 | "gitDecoration.ignoredResourceForeground": "#676E9590",
818 | "breadcrumb.background": "#292D3E",
819 | "breadcrumb.foreground": "#676E95",
820 | "breadcrumb.focusForeground": "#babed8",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#292D3E",
823 | "menu.background": "#292D3E",
824 | "menu.foreground": "#babed8",
825 | "menu.selectionBackground": "#00000050",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#00000030",
828 | "menu.separatorBackground": "#babed8",
829 | "menubar.selectionBackground": "#00000030",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#00000030",
832 | "settings.dropdownForeground": "#babed8",
833 | "settings.dropdownBackground": "#292D3E",
834 | "settings.numberInputForeground": "#babed8",
835 | "settings.numberInputBackground": "#292D3E",
836 | "settings.textInputForeground": "#babed8",
837 | "settings.textInputBackground": "#292D3E",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#292D3E",
841 | "settings.checkboxForeground": "#babed8",
842 | "listFilterWidget.background": "#00000030",
843 | "listFilterWidget.outline": "#00000030",
844 | "listFilterWidget.noMatchesOutline": "#00000030",
845 | "terminalCommandGuide.foreground": "#3A3F58"
846 | }
847 | }
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Deepforest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Deepforest",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#141F1D",
9 | "foreground": "#C2EDD3"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#C3E88D"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#74C9DE"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#C2EDD3"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#D3959B"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#CC8868"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#C2EDD3"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#CC8868"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#74C9DE"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#6FA0DE"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#A68DCD"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#f07178",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#FFCB6B"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#FFCB6B"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#476352",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#476352",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#74C9DE"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#FFCB6B"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#f07178"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#f07178"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#6FA0DE"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#74C9DE"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#C2EDD3"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#f07178"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#f07178"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#74C9DE"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#FFCB6B"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#CC8868"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#FFCB6B"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#95BBBD"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#74C9DE"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#f07178"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#A68DCD"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#C2EDD3"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#74C9DE"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#f07178"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#74C9DE"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#f07178",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#f07178",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#f07178",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#C3E88D"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#C3E88D"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#f07178"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#74C9DE"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#FFCB6B"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#f07178"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#6FA0DE"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#FFCB6B"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#FFCB6B"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#476352"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#C2EDD3"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#C2EDD3"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#FFCB6B"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#C2EDD3"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#f07178"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#6FA0DE"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#f07178"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#6FA0DE"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#C2EDD3"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#74C9DE",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#6FA0DE"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#141F1D",
443 | "foreground": "#C2EDD3"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#f07178"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#f07178"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#C3E88D"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#74C9DE",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#f07178",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#CC8868"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#74C9DE"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#C2EDD390"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#D3959B"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#A68DCD"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#FFCB6B"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#CC8868"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#f07178"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#7B6E54"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#6FA0DE"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#D3959B"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#A68DCD"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#C3E88D"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#C2EDD3",
633 | "button.background": "#71B48050",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#141F1D",
636 | "input.background": "#1A2520",
637 | "inputOption.activeBorder": "#C2EDD330",
638 | "list.activeSelectionBackground": "#141F1D",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#f0717880",
641 | "list.focusBackground": "#C2EDD320",
642 | "list.focusForeground": "#C2EDD3",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#141F1D",
645 | "list.inactiveSelectionBackground": "#00000030",
646 | "activityBar.background": "#141F1D",
647 | "activityBar.dropBackground": "#f0717880",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#00000030",
651 | "badge.foreground": "#476352",
652 | "sideBar.background": "#141F1D",
653 | "sideBarSectionHeader.background": "#141F1D",
654 | "editorGroup.dropBackground": "#f0717880",
655 | "editorGroup.focusedEmptyBorder": "#f07178",
656 | "editorGroupHeader.tabsBackground": "#141F1D",
657 | "tab.border": "#141F1D",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#141F1D",
660 | "tab.activeModifiedBorder": "#4d6457",
661 | "tab.inactiveModifiedBorder": "#904348",
662 | "tab.unfocusedActiveModifiedBorder": "#c05a60",
663 | "tab.unfocusedInactiveModifiedBorder": "#904348",
664 | "editor.background": "#141F1D",
665 | "editor.foreground": "#C2EDD3",
666 | "editorLineNumber.foreground": "#52735C80",
667 | "editorLineNumber.activeForeground": "#4d6457",
668 | "editorCursor.foreground": "#FFCC00",
669 | "editor.selectionBackground": "#71B48050",
670 | "editor.selectionHighlightBackground": "#FFCC0020",
671 | "editor.wordHighlightBackground": "#D3959B30",
672 | "editor.wordHighlightStrongBackground": "#C3E88D30",
673 | "editor.findMatchHighlight": "#C2EDD3",
674 | "editor.findRangeHighlightBackground": "#FFCB6B30",
675 | "editor.lineHighlightBorder": "#00000000",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#C2EDD340",
678 | "editorWidget.background": "#141F1D",
679 | "editorHoverWidget.background": "#141F1D",
680 | "editorMarkerNavigation.background": "#C2EDD305",
681 | "peekView.border": "#00000030",
682 | "peekViewEditor.background": "#1A2520",
683 | "peekViewResult.background": "#1A2520",
684 | "peekViewTitle.background": "#1A2520",
685 | "panel.background": "#141F1D",
686 | "panel.border": "#141F1D60",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#C2EDD3",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#141F1D",
692 | "statusBar.debuggingBackground": "#A68DCD",
693 | "statusBar.debuggingForeground": "#ffffff",
694 | "statusBar.noFolderBackground": "#141F1D",
695 | "statusBarItem.activeBackground": "#f0717880",
696 | "statusBarItem.hoverBackground": "#47635220",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#141F1D",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#6FA0DE",
703 | "terminal.ansiBrightBlack": "#476352",
704 | "terminal.ansiBrightBlue": "#6FA0DE",
705 | "terminal.ansiBrightCyan": "#74C9DE",
706 | "terminal.ansiBrightGreen": "#C3E88D",
707 | "terminal.ansiBrightMagenta": "#A68DCD",
708 | "terminal.ansiBrightRed": "#f07178",
709 | "terminal.ansiBrightWhite": "#ffffff",
710 | "terminal.ansiBrightYellow": "#FFCB6B",
711 | "terminal.ansiCyan": "#74C9DE",
712 | "terminal.ansiGreen": "#C3E88D",
713 | "terminal.ansiMagenta": "#A68DCD",
714 | "terminal.ansiRed": "#f07178",
715 | "terminal.ansiWhite": "#ffffff",
716 | "terminal.ansiYellow": "#FFCB6B",
717 | "debugToolBar.background": "#141F1D",
718 | "debugConsole.errorForeground": "#f07178",
719 | "debugConsole.infoForeground": "#74C9DE",
720 | "debugConsole.warningForeground": "#FFCB6B",
721 | "selection.background": "#00000080",
722 | "editorRuler.foreground": "#52735C",
723 | "widget.shadow": "#00000030",
724 | "scrollbar.shadow": "#00000030",
725 | "editorLink.activeForeground": "#C2EDD3",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#52735C",
729 | "terminalCursor.foreground": "#FFCB6B",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#C2EDD330",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#C2EDD3",
734 | "sideBar.foreground": "#4d6457",
735 | "sideBar.border": "#141F1D60",
736 | "sideBarTitle.foreground": "#C2EDD3",
737 | "sideBarSectionHeader.border": "#141F1D60",
738 | "panel.dropBackground": "#C2EDD3",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#FFFFFF",
741 | "editor.lineHighlightBackground": "#00000050",
742 | "editor.findMatchBackground": "#000000",
743 | "editor.findMatchHighlightBackground": "#00000050",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#ffffff30",
746 | "editorIndentGuide.background": "#52735C70",
747 | "editorIndentGuide.activeBackground": "#52735C",
748 | "editorGroup.border": "#00000030",
749 | "editorGutter.modifiedBackground": "#6FA0DE60",
750 | "editorGutter.addedBackground": "#C3E88D60",
751 | "editorGutter.deletedBackground": "#f0717860",
752 | "activityBar.border": "#141F1D60",
753 | "activityBar.foreground": "#C2EDD3",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#C2EDD3",
756 | "scrollbarSlider.background": "#8CA59920",
757 | "scrollbarSlider.hoverBackground": "#8CA59910",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#476352",
760 | "tab.activeForeground": "#FFFFFF",
761 | "tab.inactiveForeground": "#4d6457",
762 | "tab.activeBackground": "#141F1D",
763 | "tab.unfocusedActiveForeground": "#C2EDD3",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#141F1D60",
767 | "statusBar.foreground": "#4D6A59",
768 | "editorBracketMatch.border": "#FFCC0050",
769 | "editorBracketMatch.background": "#141F1D",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#141F1D",
772 | "editorOverviewRuler.errorForeground": "#f0717840",
773 | "editorOverviewRuler.infoForeground": "#6FA0DE40",
774 | "editorOverviewRuler.warningForeground": "#FFCB6B40",
775 | "editorInfo.foreground": "#6FA0DE70",
776 | "editorWarning.foreground": "#FFCB6B70",
777 | "editorError.foreground": "#f0717870",
778 | "editorHoverWidget.border": "#FFFFFF10",
779 | "titleBar.activeForeground": "#C2EDD3",
780 | "titleBar.inactiveBackground": "#141F1D",
781 | "titleBar.inactiveForeground": "#4d6457",
782 | "titleBar.border": "#141F1D60",
783 | "input.foreground": "#C2EDD3",
784 | "input.placeholderForeground": "#C2EDD360",
785 | "input.border": "#FFFFFF10",
786 | "inputValidation.errorBorder": "#f07178",
787 | "inputValidation.infoBorder": "#6FA0DE",
788 | "inputValidation.warningBorder": "#FFCB6B",
789 | "dropdown.border": "#FFFFFF10",
790 | "quickInput.background": "#141F1D",
791 | "quickInput.foreground": "#4d6457",
792 | "list.hoverForeground": "#FFFFFF",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#C2EDD320",
795 | "editorSuggestWidget.background": "#141F1D",
796 | "editorSuggestWidget.foreground": "#C2EDD3",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#00000050",
799 | "editorSuggestWidget.border": "#FFFFFF10",
800 | "diffEditor.insertedTextBackground": "#74C9DE20",
801 | "diffEditor.removedTextBackground": "#D3959B20",
802 | "notifications.background": "#141F1D",
803 | "notifications.foreground": "#C2EDD3",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#C3E88D90",
806 | "extensionButton.prominentHoverBackground": "#C3E88D",
807 | "extensionButton.prominentForeground": "#C2EDD3",
808 | "peekViewEditorGutter.background": "#1A2520",
809 | "peekViewTitleDescription.foreground": "#C2EDD360",
810 | "peekViewResult.matchHighlightBackground": "#71B48050",
811 | "peekViewEditor.matchHighlightBackground": "#71B48050",
812 | "peekViewResult.selectionBackground": "#4d645770",
813 | "gitDecoration.deletedResourceForeground": "#f0717890",
814 | "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
815 | "gitDecoration.modifiedResourceForeground": "#6FA0DE90",
816 | "gitDecoration.untrackedResourceForeground": "#C3E88D90",
817 | "gitDecoration.ignoredResourceForeground": "#4d645790",
818 | "breadcrumb.background": "#141F1D",
819 | "breadcrumb.foreground": "#4d6457",
820 | "breadcrumb.focusForeground": "#C2EDD3",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#141F1D",
823 | "menu.background": "#141F1D",
824 | "menu.foreground": "#C2EDD3",
825 | "menu.selectionBackground": "#00000050",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#00000030",
828 | "menu.separatorBackground": "#C2EDD3",
829 | "menubar.selectionBackground": "#00000030",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#00000030",
832 | "settings.dropdownForeground": "#C2EDD3",
833 | "settings.dropdownBackground": "#141F1D",
834 | "settings.numberInputForeground": "#C2EDD3",
835 | "settings.numberInputBackground": "#141F1D",
836 | "settings.textInputForeground": "#C2EDD3",
837 | "settings.textInputBackground": "#141F1D",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#141F1D",
841 | "settings.checkboxForeground": "#C2EDD3",
842 | "listFilterWidget.background": "#00000030",
843 | "listFilterWidget.outline": "#00000030",
844 | "listFilterWidget.noMatchesOutline": "#00000030",
845 | "terminalCommandGuide.foreground": "#52735C80"
846 | }
847 | }
--------------------------------------------------------------------------------
/VSC-Material-Theme.json/Material-Theme-Darker-High-Contrast.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Material-Theme-Darker-High-Contrast",
3 | "semanticHighlighting": true,
4 | "tokenColors": [
5 | {
6 | "name": "Global settings",
7 | "settings": {
8 | "background": "#212121",
9 | "foreground": "#EEFFFF"
10 | }
11 | },
12 | {
13 | "name": "String",
14 | "scope": "string",
15 | "settings": {
16 | "foreground": "#C3E88D"
17 | }
18 | },
19 | {
20 | "name": "Punctuation",
21 | "scope": "punctuation, constant.other.symbol",
22 | "settings": {
23 | "foreground": "#89DDFF"
24 | }
25 | },
26 | {
27 | "name": "String Escape",
28 | "scope": "constant.character.escape, text.html constant.character.entity.named",
29 | "settings": {
30 | "foreground": "#EEFFFF"
31 | }
32 | },
33 | {
34 | "name": "Boolean",
35 | "scope": "constant.language.boolean",
36 | "settings": {
37 | "foreground": "#ff9cac"
38 | }
39 | },
40 | {
41 | "name": "Number",
42 | "scope": "constant.numeric",
43 | "settings": {
44 | "foreground": "#F78C6C"
45 | }
46 | },
47 | {
48 | "name": "Variable",
49 | "scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
50 | "settings": {
51 | "foreground": "#EEFFFF"
52 | }
53 | },
54 | {
55 | "name": "Other Keyword",
56 | "scope": "keyword.other",
57 | "settings": {
58 | "foreground": "#F78C6C"
59 | }
60 | },
61 | {
62 | "name": "Keyword",
63 | "scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
64 | "settings": {
65 | "foreground": "#89DDFF"
66 | }
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "entity.name.function, support.function",
71 | "settings": {
72 | "foreground": "#82AAFF"
73 | }
74 | },
75 | {
76 | "name": "Storage",
77 | "scope": "storage.type, storage.modifier, storage.control",
78 | "settings": {
79 | "foreground": "#C792EA"
80 | }
81 | },
82 | {
83 | "name": "Modules",
84 | "scope": "support.module, support.node",
85 | "settings": {
86 | "foreground": "#f07178",
87 | "fontStyle": "italic"
88 | }
89 | },
90 | {
91 | "name": "Type",
92 | "scope": "support.type, constant.other.key",
93 | "settings": {
94 | "foreground": "#FFCB6B"
95 | }
96 | },
97 | {
98 | "name": "Type",
99 | "scope": "entity.name.type, entity.other.inherited-class, entity.other",
100 | "settings": {
101 | "foreground": "#FFCB6B"
102 | }
103 | },
104 | {
105 | "name": "Comment",
106 | "scope": "comment",
107 | "settings": {
108 | "foreground": "#4A4A4A",
109 | "fontStyle": "italic"
110 | }
111 | },
112 | {
113 | "name": "Comment",
114 | "scope": "comment punctuation.definition.comment, string.quoted.docstring",
115 | "settings": {
116 | "foreground": "#4A4A4A",
117 | "fontStyle": "italic"
118 | }
119 | },
120 | {
121 | "name": "Punctuation",
122 | "scope": "punctuation",
123 | "settings": {
124 | "foreground": "#89DDFF"
125 | }
126 | },
127 | {
128 | "name": "Class",
129 | "scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
130 | "settings": {
131 | "foreground": "#FFCB6B"
132 | }
133 | },
134 | {
135 | "name": "Class variable",
136 | "scope": "variable.object.property, meta.field.declaration entity.name.function",
137 | "settings": {
138 | "foreground": "#f07178"
139 | }
140 | },
141 | {
142 | "name": "Class method",
143 | "scope": "meta.definition.method entity.name.function",
144 | "settings": {
145 | "foreground": "#f07178"
146 | }
147 | },
148 | {
149 | "name": "Function definition",
150 | "scope": "meta.function entity.name.function",
151 | "settings": {
152 | "foreground": "#82AAFF"
153 | }
154 | },
155 | {
156 | "name": "Template expression",
157 | "scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
158 | "settings": {
159 | "foreground": "#89DDFF"
160 | }
161 | },
162 | {
163 | "name": "Reset embedded/template expression colors",
164 | "scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
165 | "settings": {
166 | "foreground": "#EEFFFF"
167 | }
168 | },
169 | {
170 | "name": "YAML key",
171 | "scope": "entity.name.tag.yaml",
172 | "settings": {
173 | "foreground": "#f07178"
174 | }
175 | },
176 | {
177 | "name": "JSON key",
178 | "scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
179 | "settings": {
180 | "foreground": "#f07178"
181 | }
182 | },
183 | {
184 | "name": "JSON constant",
185 | "scope": "constant.language.json",
186 | "settings": {
187 | "foreground": "#89DDFF"
188 | }
189 | },
190 | {
191 | "name": "CSS class",
192 | "scope": "entity.other.attribute-name.class",
193 | "settings": {
194 | "foreground": "#FFCB6B"
195 | }
196 | },
197 | {
198 | "name": "CSS ID",
199 | "scope": "entity.other.attribute-name.id",
200 | "settings": {
201 | "foreground": "#F78C6C"
202 | }
203 | },
204 | {
205 | "name": "CSS tag",
206 | "scope": "source.css entity.name.tag",
207 | "settings": {
208 | "foreground": "#FFCB6B"
209 | }
210 | },
211 | {
212 | "name": "CSS properties",
213 | "scope": "support.type.property-name.css",
214 | "settings": {
215 | "foreground": "#B2CCD6"
216 | }
217 | },
218 | {
219 | "name": "HTML tag outer",
220 | "scope": "meta.tag, punctuation.definition.tag",
221 | "settings": {
222 | "foreground": "#89DDFF"
223 | }
224 | },
225 | {
226 | "name": "HTML tag inner",
227 | "scope": "entity.name.tag",
228 | "settings": {
229 | "foreground": "#f07178"
230 | }
231 | },
232 | {
233 | "name": "HTML tag attribute",
234 | "scope": "entity.other.attribute-name",
235 | "settings": {
236 | "foreground": "#C792EA"
237 | }
238 | },
239 | {
240 | "name": "HTML entities",
241 | "scope": "punctuation.definition.entity.html",
242 | "settings": {
243 | "foreground": "#EEFFFF"
244 | }
245 | },
246 | {
247 | "name": "Markdown heading",
248 | "scope": "markup.heading",
249 | "settings": {
250 | "foreground": "#89DDFF"
251 | }
252 | },
253 | {
254 | "name": "Markdown link text",
255 | "scope": "text.html.markdown meta.link.inline, meta.link.reference",
256 | "settings": {
257 | "foreground": "#f07178"
258 | }
259 | },
260 | {
261 | "name": "Markdown list item",
262 | "scope": "text.html.markdown beginning.punctuation.definition.list",
263 | "settings": {
264 | "foreground": "#89DDFF"
265 | }
266 | },
267 | {
268 | "name": "Markdown italic",
269 | "scope": "markup.italic",
270 | "settings": {
271 | "foreground": "#f07178",
272 | "fontStyle": "italic"
273 | }
274 | },
275 | {
276 | "name": "Markdown bold",
277 | "scope": "markup.bold",
278 | "settings": {
279 | "foreground": "#f07178",
280 | "fontStyle": "bold"
281 | }
282 | },
283 | {
284 | "name": "Markdown bold italic",
285 | "scope": "markup.bold markup.italic, markup.italic markup.bold",
286 | "settings": {
287 | "foreground": "#f07178",
288 | "fontStyle": "italic bold"
289 | }
290 | },
291 | {
292 | "name": "Markdown code block",
293 | "scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
294 | "settings": {
295 | "foreground": "#C3E88D"
296 | }
297 | },
298 | {
299 | "name": "Markdown inline code",
300 | "scope": "markup.inline.raw.string.markdown",
301 | "settings": {
302 | "foreground": "#C3E88D"
303 | }
304 | },
305 | {
306 | "name": "INI property name",
307 | "scope": "keyword.other.definition.ini",
308 | "settings": {
309 | "foreground": "#f07178"
310 | }
311 | },
312 | {
313 | "name": "INI section title",
314 | "scope": "entity.name.section.group-title.ini",
315 | "settings": {
316 | "foreground": "#89DDFF"
317 | }
318 | },
319 | {
320 | "name": "C# class",
321 | "scope": "source.cs meta.class.identifier storage.type",
322 | "settings": {
323 | "foreground": "#FFCB6B"
324 | }
325 | },
326 | {
327 | "name": "C# class method",
328 | "scope": "source.cs meta.method.identifier entity.name.function",
329 | "settings": {
330 | "foreground": "#f07178"
331 | }
332 | },
333 | {
334 | "name": "C# function call",
335 | "scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
336 | "settings": {
337 | "foreground": "#82AAFF"
338 | }
339 | },
340 | {
341 | "name": "C# type",
342 | "scope": "source.cs storage.type",
343 | "settings": {
344 | "foreground": "#FFCB6B"
345 | }
346 | },
347 | {
348 | "name": "C# return type",
349 | "scope": "source.cs meta.method.return-type",
350 | "settings": {
351 | "foreground": "#FFCB6B"
352 | }
353 | },
354 | {
355 | "name": "C# preprocessor",
356 | "scope": "source.cs meta.preprocessor",
357 | "settings": {
358 | "foreground": "#4A4A4A"
359 | }
360 | },
361 | {
362 | "name": "C# namespace",
363 | "scope": "source.cs entity.name.type.namespace",
364 | "settings": {
365 | "foreground": "#EEFFFF"
366 | }
367 | },
368 | {
369 | "name": "JSX Text",
370 | "scope": "meta.jsx.children, SXNested",
371 | "settings": {
372 | "foreground": "#EEFFFF"
373 | }
374 | },
375 | {
376 | "name": "JSX Components name",
377 | "scope": "support.class.component",
378 | "settings": {
379 | "foreground": "#FFCB6B"
380 | }
381 | },
382 | {
383 | "name": "C-related Block Level Variables",
384 | "scope": "source.cpp meta.block variable.other",
385 | "settings": {
386 | "foreground": "#EEFFFF"
387 | }
388 | },
389 | {
390 | "name": "Member Access Meta",
391 | "scope": "source.python meta.member.access.python",
392 | "settings": {
393 | "foreground": "#f07178"
394 | }
395 | },
396 | {
397 | "name": "Function Call",
398 | "scope": "source.python meta.function-call.python, meta.function-call.arguments",
399 | "settings": {
400 | "foreground": "#82AAFF"
401 | }
402 | },
403 | {
404 | "name": "Blocks",
405 | "scope": "meta.block",
406 | "settings": {
407 | "foreground": "#f07178"
408 | }
409 | },
410 | {
411 | "name": "Function Call",
412 | "scope": "entity.name.function.call",
413 | "settings": {
414 | "foreground": "#82AAFF"
415 | }
416 | },
417 | {
418 | "name": "Namespaces",
419 | "scope": "source.php support.other.namespace, source.php meta.use support.class",
420 | "settings": {
421 | "foreground": "#EEFFFF"
422 | }
423 | },
424 | {
425 | "name": "Constant keywords",
426 | "scope": "constant.keyword",
427 | "settings": {
428 | "foreground": "#89DDFF",
429 | "fontStyle": "italic"
430 | }
431 | },
432 | {
433 | "name": "Entity name",
434 | "scope": "entity.name.function",
435 | "settings": {
436 | "foreground": "#82AAFF"
437 | }
438 | },
439 | {
440 | "name": "Global settings",
441 | "settings": {
442 | "background": "#212121",
443 | "foreground": "#EEFFFF"
444 | }
445 | },
446 | {
447 | "name": "Constant Placeholder",
448 | "scope": [
449 | "constant.other.placeholder"
450 | ],
451 | "settings": {
452 | "foreground": "#f07178"
453 | }
454 | },
455 | {
456 | "name": "Markup Deleted",
457 | "scope": [
458 | "markup.deleted"
459 | ],
460 | "settings": {
461 | "foreground": "#f07178"
462 | }
463 | },
464 | {
465 | "name": "Markup Inserted",
466 | "scope": [
467 | "markup.inserted"
468 | ],
469 | "settings": {
470 | "foreground": "#C3E88D"
471 | }
472 | },
473 | {
474 | "name": "Markup Underline",
475 | "scope": [
476 | "markup.underline"
477 | ],
478 | "settings": {
479 | "fontStyle": "underline"
480 | }
481 | },
482 | {
483 | "name": "Keyword Control",
484 | "scope": [
485 | "keyword.control"
486 | ],
487 | "settings": {
488 | "foreground": "#89DDFF",
489 | "fontStyle": "italic"
490 | }
491 | },
492 | {
493 | "name": "Parameter",
494 | "scope": [
495 | "variable.parameter"
496 | ],
497 | "settings": {
498 | "fontStyle": "italic"
499 | }
500 | },
501 | {
502 | "name": "Python - Self Parameter",
503 | "scope": [
504 | "variable.parameter.function.language.special.self.python"
505 | ],
506 | "settings": {
507 | "foreground": "#f07178",
508 | "fontStyle": "italic"
509 | }
510 | },
511 | {
512 | "name": "Python - Format Placeholder",
513 | "scope": [
514 | "constant.character.format.placeholder.other.python"
515 | ],
516 | "settings": {
517 | "foreground": "#F78C6C"
518 | }
519 | },
520 | {
521 | "name": "Markdown - Blockquote",
522 | "scope": [
523 | "markup.quote"
524 | ],
525 | "settings": {
526 | "fontStyle": "italic",
527 | "foreground": "#89DDFF"
528 | }
529 | },
530 | {
531 | "name": "Markdown - Fenced Language",
532 | "scope": [
533 | "markup.fenced_code.block"
534 | ],
535 | "settings": {
536 | "foreground": "#EEFFFF90"
537 | }
538 | },
539 | {
540 | "name": "Markdown - Blockquote Punctuation",
541 | "scope": [
542 | "punctuation.definition.quote"
543 | ],
544 | "settings": {
545 | "foreground": "#ff9cac"
546 | }
547 | },
548 | {
549 | "name": "JSON Key - Level 0",
550 | "scope": [
551 | "meta.structure.dictionary.json support.type.property-name.json"
552 | ],
553 | "settings": {
554 | "foreground": "#C792EA"
555 | }
556 | },
557 | {
558 | "name": "JSON Key - Level 1",
559 | "scope": [
560 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
561 | ],
562 | "settings": {
563 | "foreground": "#FFCB6B"
564 | }
565 | },
566 | {
567 | "name": "JSON Key - Level 2",
568 | "scope": [
569 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
570 | ],
571 | "settings": {
572 | "foreground": "#F78C6C"
573 | }
574 | },
575 | {
576 | "name": "JSON Key - Level 3",
577 | "scope": [
578 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
579 | ],
580 | "settings": {
581 | "foreground": "#f07178"
582 | }
583 | },
584 | {
585 | "name": "JSON Key - Level 4",
586 | "scope": [
587 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588 | ],
589 | "settings": {
590 | "foreground": "#916b53"
591 | }
592 | },
593 | {
594 | "name": "JSON Key - Level 5",
595 | "scope": [
596 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
597 | ],
598 | "settings": {
599 | "foreground": "#82AAFF"
600 | }
601 | },
602 | {
603 | "name": "JSON Key - Level 6",
604 | "scope": [
605 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
606 | ],
607 | "settings": {
608 | "foreground": "#ff9cac"
609 | }
610 | },
611 | {
612 | "name": "JSON Key - Level 7",
613 | "scope": [
614 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
615 | ],
616 | "settings": {
617 | "foreground": "#C792EA"
618 | }
619 | },
620 | {
621 | "name": "JSON Key - Level 8",
622 | "scope": [
623 | "meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
624 | ],
625 | "settings": {
626 | "foreground": "#C3E88D"
627 | }
628 | }
629 | ],
630 | "colors": {
631 | "focusBorder": "#FFFFFF00",
632 | "foreground": "#EEFFFF",
633 | "button.background": "#61616150",
634 | "button.foreground": "#ffffff",
635 | "dropdown.background": "#212121",
636 | "input.background": "#2B2B2B",
637 | "inputOption.activeBorder": "#EEFFFF30",
638 | "list.activeSelectionBackground": "#1a1a1a",
639 | "list.activeSelectionForeground": "#80CBC4",
640 | "list.dropBackground": "#f0717880",
641 | "list.focusBackground": "#EEFFFF20",
642 | "list.focusForeground": "#EEFFFF",
643 | "list.highlightForeground": "#80CBC4",
644 | "list.hoverBackground": "#1a1a1a",
645 | "list.inactiveSelectionBackground": "#00000030",
646 | "activityBar.background": "#1a1a1a",
647 | "activityBar.dropBackground": "#f0717880",
648 | "activityBarBadge.background": "#80CBC4",
649 | "activityBarBadge.foreground": "#000000",
650 | "badge.background": "#00000030",
651 | "badge.foreground": "#4A4A4A",
652 | "sideBar.background": "#1a1a1a",
653 | "sideBarSectionHeader.background": "#1a1a1a",
654 | "editorGroup.dropBackground": "#f0717880",
655 | "editorGroup.focusedEmptyBorder": "#f07178",
656 | "editorGroupHeader.tabsBackground": "#212121",
657 | "tab.border": "#212121",
658 | "tab.activeBorder": "#80CBC4",
659 | "tab.inactiveBackground": "#212121",
660 | "tab.activeModifiedBorder": "#848484",
661 | "tab.inactiveModifiedBorder": "#904348",
662 | "tab.unfocusedActiveModifiedBorder": "#c05a60",
663 | "tab.unfocusedInactiveModifiedBorder": "#904348",
664 | "editor.background": "#212121",
665 | "editor.foreground": "#EEFFFF",
666 | "editorLineNumber.foreground": "#424242",
667 | "editorLineNumber.activeForeground": "#848484",
668 | "editorCursor.foreground": "#FFCC00",
669 | "editor.selectionBackground": "#61616150",
670 | "editor.selectionHighlightBackground": "#FFCC0020",
671 | "editor.wordHighlightBackground": "#ff9cac30",
672 | "editor.wordHighlightStrongBackground": "#C3E88D30",
673 | "editor.findMatchHighlight": "#EEFFFF",
674 | "editor.findRangeHighlightBackground": "#FFCB6B30",
675 | "editor.lineHighlightBorder": "#00000000",
676 | "editor.rangeHighlightBackground": "#FFFFFF0d",
677 | "editorWhitespace.foreground": "#EEFFFF40",
678 | "editorWidget.background": "#1a1a1a",
679 | "editorHoverWidget.background": "#212121",
680 | "editorMarkerNavigation.background": "#EEFFFF05",
681 | "peekView.border": "#00000030",
682 | "peekViewEditor.background": "#2B2B2B",
683 | "peekViewResult.background": "#2B2B2B",
684 | "peekViewTitle.background": "#2B2B2B",
685 | "panel.background": "#1a1a1a",
686 | "panel.border": "#44444460",
687 | "panelTitle.activeBorder": "#80CBC4",
688 | "panelTitle.inactiveForeground": "#EEFFFF",
689 | "notebook.focusedCellBorder": "#80CBC4",
690 | "notebook.inactiveFocusedCellBorder": "#80CBC450",
691 | "statusBar.background": "#1a1a1a",
692 | "statusBar.debuggingBackground": "#C792EA",
693 | "statusBar.debuggingForeground": "#ffffff",
694 | "statusBar.noFolderBackground": "#212121",
695 | "statusBarItem.activeBackground": "#f0717880",
696 | "statusBarItem.hoverBackground": "#4A4A4A20",
697 | "statusBarItem.remoteBackground": "#80CBC4",
698 | "statusBarItem.remoteForeground": "#000000",
699 | "titleBar.activeBackground": "#1a1a1a",
700 | "pickerGroup.border": "#FFFFFF1a",
701 | "terminal.ansiBlack": "#000000",
702 | "terminal.ansiBlue": "#82AAFF",
703 | "terminal.ansiBrightBlack": "#4A4A4A",
704 | "terminal.ansiBrightBlue": "#82AAFF",
705 | "terminal.ansiBrightCyan": "#89DDFF",
706 | "terminal.ansiBrightGreen": "#C3E88D",
707 | "terminal.ansiBrightMagenta": "#C792EA",
708 | "terminal.ansiBrightRed": "#f07178",
709 | "terminal.ansiBrightWhite": "#ffffff",
710 | "terminal.ansiBrightYellow": "#FFCB6B",
711 | "terminal.ansiCyan": "#89DDFF",
712 | "terminal.ansiGreen": "#C3E88D",
713 | "terminal.ansiMagenta": "#C792EA",
714 | "terminal.ansiRed": "#f07178",
715 | "terminal.ansiWhite": "#ffffff",
716 | "terminal.ansiYellow": "#FFCB6B",
717 | "debugToolBar.background": "#212121",
718 | "debugConsole.errorForeground": "#f07178",
719 | "debugConsole.infoForeground": "#89DDFF",
720 | "debugConsole.warningForeground": "#FFCB6B",
721 | "selection.background": "#00000080",
722 | "editorRuler.foreground": "#424242",
723 | "widget.shadow": "#00000030",
724 | "scrollbar.shadow": "#00000030",
725 | "editorLink.activeForeground": "#EEFFFF",
726 | "progressBar.background": "#80CBC4",
727 | "pickerGroup.foreground": "#80CBC4",
728 | "tree.indentGuidesStroke": "#424242",
729 | "terminalCursor.foreground": "#FFCB6B",
730 | "terminalCursor.background": "#000000",
731 | "inputOption.activeBackground": "#EEFFFF30",
732 | "textLink.foreground": "#80CBC4",
733 | "textLink.activeForeground": "#EEFFFF",
734 | "sideBar.foreground": "#848484",
735 | "sideBar.border": "#44444460",
736 | "sideBarTitle.foreground": "#EEFFFF",
737 | "sideBarSectionHeader.border": "#44444460",
738 | "panel.dropBackground": "#EEFFFF",
739 | "sash.hoverBorder": "#80CBC450",
740 | "panelTitle.activeForeground": "#FFFFFF",
741 | "editor.lineHighlightBackground": "#00000050",
742 | "editor.findMatchBackground": "#000000",
743 | "editor.findMatchHighlightBackground": "#00000050",
744 | "editor.findMatchBorder": "#80CBC4",
745 | "editor.findMatchHighlightBorder": "#ffffff50",
746 | "editorIndentGuide.background": "#42424270",
747 | "editorIndentGuide.activeBackground": "#424242",
748 | "editorGroup.border": "#00000030",
749 | "editorGutter.modifiedBackground": "#82AAFF60",
750 | "editorGutter.addedBackground": "#C3E88D60",
751 | "editorGutter.deletedBackground": "#f0717860",
752 | "activityBar.border": "#44444460",
753 | "activityBar.foreground": "#EEFFFF",
754 | "activityBar.activeBorder": "#80CBC4",
755 | "extensionBadge.remoteForeground": "#EEFFFF",
756 | "scrollbarSlider.background": "#EEFFFF20",
757 | "scrollbarSlider.hoverBackground": "#EEFFFF10",
758 | "scrollbarSlider.activeBackground": "#80CBC4",
759 | "tab.unfocusedActiveBorder": "#4A4A4A",
760 | "tab.activeForeground": "#FFFFFF",
761 | "tab.inactiveForeground": "#848484",
762 | "tab.activeBackground": "#212121",
763 | "tab.unfocusedActiveForeground": "#EEFFFF",
764 | "editorWidget.resizeBorder": "#80CBC4",
765 | "editorWidget.border": "#80CBC4",
766 | "statusBar.border": "#44444460",
767 | "statusBar.foreground": "#616161",
768 | "editorBracketMatch.border": "#FFCC0050",
769 | "editorBracketMatch.background": "#212121",
770 | "editorOverviewRuler.findMatchForeground": "#80CBC4",
771 | "editorOverviewRuler.border": "#212121",
772 | "editorOverviewRuler.errorForeground": "#f0717840",
773 | "editorOverviewRuler.infoForeground": "#82AAFF40",
774 | "editorOverviewRuler.warningForeground": "#FFCB6B40",
775 | "editorInfo.foreground": "#82AAFF70",
776 | "editorWarning.foreground": "#FFCB6B70",
777 | "editorError.foreground": "#f0717870",
778 | "editorHoverWidget.border": "#FFFFFF10",
779 | "titleBar.activeForeground": "#EEFFFF",
780 | "titleBar.inactiveBackground": "#1a1a1a",
781 | "titleBar.inactiveForeground": "#848484",
782 | "titleBar.border": "#44444460",
783 | "input.foreground": "#EEFFFF",
784 | "input.placeholderForeground": "#EEFFFF60",
785 | "input.border": "#FFFFFF10",
786 | "inputValidation.errorBorder": "#f07178",
787 | "inputValidation.infoBorder": "#82AAFF",
788 | "inputValidation.warningBorder": "#FFCB6B",
789 | "dropdown.border": "#FFFFFF10",
790 | "quickInput.background": "#212121",
791 | "quickInput.foreground": "#848484",
792 | "list.hoverForeground": "#FFFFFF",
793 | "list.inactiveSelectionForeground": "#80CBC4",
794 | "quickInput.list.focusBackground": "#EEFFFF20",
795 | "editorSuggestWidget.background": "#212121",
796 | "editorSuggestWidget.foreground": "#EEFFFF",
797 | "editorSuggestWidget.highlightForeground": "#80CBC4",
798 | "editorSuggestWidget.selectedBackground": "#00000050",
799 | "editorSuggestWidget.border": "#FFFFFF10",
800 | "diffEditor.insertedTextBackground": "#89DDFF20",
801 | "diffEditor.removedTextBackground": "#ff9cac20",
802 | "notifications.background": "#212121",
803 | "notifications.foreground": "#EEFFFF",
804 | "notificationLink.foreground": "#80CBC4",
805 | "extensionButton.prominentBackground": "#C3E88D90",
806 | "extensionButton.prominentHoverBackground": "#C3E88D",
807 | "extensionButton.prominentForeground": "#EEFFFF",
808 | "peekViewEditorGutter.background": "#2B2B2B",
809 | "peekViewTitleDescription.foreground": "#EEFFFF60",
810 | "peekViewResult.matchHighlightBackground": "#61616150",
811 | "peekViewEditor.matchHighlightBackground": "#61616150",
812 | "peekViewResult.selectionBackground": "#84848470",
813 | "gitDecoration.deletedResourceForeground": "#f0717890",
814 | "gitDecoration.conflictingResourceForeground": "#FFCB6B90",
815 | "gitDecoration.modifiedResourceForeground": "#82AAFF90",
816 | "gitDecoration.untrackedResourceForeground": "#C3E88D90",
817 | "gitDecoration.ignoredResourceForeground": "#84848490",
818 | "breadcrumb.background": "#212121",
819 | "breadcrumb.foreground": "#848484",
820 | "breadcrumb.focusForeground": "#EEFFFF",
821 | "breadcrumb.activeSelectionForeground": "#80CBC4",
822 | "breadcrumbPicker.background": "#1a1a1a",
823 | "menu.background": "#212121",
824 | "menu.foreground": "#EEFFFF",
825 | "menu.selectionBackground": "#00000050",
826 | "menu.selectionForeground": "#80CBC4",
827 | "menu.selectionBorder": "#00000030",
828 | "menu.separatorBackground": "#EEFFFF",
829 | "menubar.selectionBackground": "#00000030",
830 | "menubar.selectionForeground": "#80CBC4",
831 | "menubar.selectionBorder": "#00000030",
832 | "settings.dropdownForeground": "#EEFFFF",
833 | "settings.dropdownBackground": "#1a1a1a",
834 | "settings.numberInputForeground": "#EEFFFF",
835 | "settings.numberInputBackground": "#1a1a1a",
836 | "settings.textInputForeground": "#EEFFFF",
837 | "settings.textInputBackground": "#1a1a1a",
838 | "settings.headerForeground": "#80CBC4",
839 | "settings.modifiedItemIndicator": "#80CBC4",
840 | "settings.checkboxBackground": "#1a1a1a",
841 | "settings.checkboxForeground": "#EEFFFF",
842 | "listFilterWidget.background": "#00000030",
843 | "listFilterWidget.outline": "#00000030",
844 | "listFilterWidget.noMatchesOutline": "#00000030",
845 | "terminalCommandGuide.foreground": "#424242"
846 | }
847 | }
--------------------------------------------------------------------------------