├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── Contributing.md ├── Contributors.md ├── LICENSE ├── Mellow-0.0.1.vsix ├── README.md ├── Screens ├── mellow_icon.png ├── mellow_logo.png ├── screenshot.PNG └── srmkzilla_logo.png ├── log └── trace.log ├── package.json └── themes └── Mellow-Theme.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": [ 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ] 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "SRMKZILLA" extension will be documented in this file. 4 | 5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 | 7 | ## [Unreleased] 8 | 9 | ## [0.0.1] - 2020-03-30 10 | 11 | ### Changed 12 | 13 | - Make README great again! 14 | 15 | ### Fixed 16 | 17 | - Fix repository documentation 18 | - Update contributing guidelines 19 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | When contributing to this repository, please first discuss the change you wish to make via issue, 4 | email, or any other method with the owners of this repository before making a change. 5 | 6 | Please note we have a code of conduct, please follow it in all your interactions with the project. 7 | 8 | ## Pull Request Process 9 | 10 | 1. Ensure any install or build dependencies are removed before the end of the layer when doing a 11 | build. 12 | 2. Update the README.md with details of changes to the interface, this includes new environment 13 | variables, exposed ports, useful file locations and container parameters. 14 | 3. Increase the version numbers in any examples files and the README.md to the new version that this 15 | Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). 16 | 4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you 17 | do not have permission to do that, you may request the second reviewer to merge it for you. 18 | 19 | ## Code of Conduct 20 | 21 | ### Our Pledge 22 | 23 | In the interest of fostering an open and welcoming environment, we as 24 | contributors and maintainers pledge to making participation in our project and 25 | our community a harassment-free experience for everyone, regardless of age, body 26 | size, disability, ethnicity, gender identity and expression, level of experience, 27 | nationality, personal appearance, race, religion, or sexual identity and 28 | orientation. 29 | 30 | ### Our Standards 31 | 32 | Examples of behavior that contributes to creating a positive environment 33 | include: 34 | 35 | - Using welcoming and inclusive language 36 | - Being respectful of differing viewpoints and experiences 37 | - Gracefully accepting constructive criticism 38 | - Focusing on what is best for the community 39 | - Showing empathy towards other community members 40 | 41 | Examples of unacceptable behavior by participants include: 42 | 43 | - The use of sexualized language or imagery and unwelcome sexual attention or 44 | advances 45 | - Trolling, insulting/derogatory comments, and personal or political attacks 46 | - Public or private harassment 47 | - Publishing others' private information, such as a physical or electronic 48 | address, without explicit permission 49 | - Other conduct which could reasonably be considered inappropriate in a 50 | professional setting 51 | 52 | ### Our Responsibilities 53 | 54 | Project maintainers are responsible for clarifying the standards of acceptable 55 | behavior and are expected to take appropriate and fair corrective action in 56 | response to any instances of unacceptable behavior. 57 | 58 | Project maintainers have the right and responsibility to remove, edit, or 59 | reject comments, commits, code, wiki edits, issues, and other contributions 60 | that are not aligned to this Code of Conduct, or to ban temporarily or 61 | permanently any contributor for other behaviors that they deem inappropriate, 62 | threatening, offensive, or harmful. 63 | 64 | ### Scope 65 | 66 | This Code of Conduct applies both within project spaces and in public spaces 67 | when an individual is representing the project or its community. Examples of 68 | representing a project or community include using an official project e-mail 69 | address, posting via an official social media account, or acting as an appointed 70 | representative at an online or offline event. Representation of a project may be 71 | further defined and clarified by project maintainers. 72 | 73 | ### Enforcement 74 | 75 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 76 | reported by contacting the project team at [INSERT EMAIL ADDRESS]. All 77 | complaints will be reviewed and investigated and will result in a response that 78 | is deemed necessary and appropriate to the circumstances. The project team is 79 | obligated to maintain confidentiality with regard to the reporter of an incident. 80 | Further details of specific enforcement policies may be posted separately. 81 | 82 | Project maintainers who do not follow or enforce the Code of Conduct in good 83 | faith may face temporary or permanent repercussions as determined by other 84 | members of the project's leadership. 85 | 86 | ### Attribution 87 | 88 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 89 | available at [http://contributor-covenant.org/version/1/4][version] 90 | 91 | [homepage]: http://contributor-covenant.org 92 | [version]: http://contributor-covenant.org/version/1/4/ 93 | -------------------------------------------------------------------------------- /Contributors.md: -------------------------------------------------------------------------------- 1 | # Mellow contributors (sorted alphabetically) 2 | 3 | - **[Shrey Sachdeva](https://github.com/shrey-sachdeva2000)** 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2020 SRMKZILLA 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /Mellow-0.0.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srm-kzilla/mellow-vscode-theme/d6f65ed9fd77febb1a09449b10a0063b2b1065e3/Mellow-0.0.1.vsix -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | SRMKZILLA Logo 3 |
4 |
5 | Mellow Logo 6 |
7 | 8 |
9 |

10 | An artistic dark theme for Visual Studio Code. 🎨 11 |

12 |

13 | crafted with by your friends on the SRMKZILLA team. 14 |

15 |

16 | version 0.0.1 17 | license MIT 18 | platform Visual Studio Code 19 |

20 |

21 | Visual Studio Marketplace Installs 22 | Visual Studio Marketplace Downloads 23 | Visual Studio Marketplace Rating 24 | Visual Studio Marketplace Stars 25 |

26 |

27 | author SRMKZILLA 28 |

29 | 30 |

31 | 32 | 33 | Find on Visual Studio Marketplace 34 | 35 |

36 | 37 | ## Description 🗣 38 | 39 | A new world to code in. 🎉 40 | 41 | ## Preview 📺 42 | 43 |
44 | Screenshot 45 |
46 | 47 | ## Installation 🔧 48 | 49 | 1. Install [Visual Studio Code](https://code.visualstudio.com/) 50 | 2. Launch Visual Studio Code 51 | 3. Choose **Extensions** from menu 52 | 4. Search for `SRMKZILLA.Mellow` 53 | 5. Click **Install** to install it 54 | 6. Click **Reload** to reload Code 55 | 7. From the menu bar click: `Code > Preferences > Color Theme > Pick Mellow` 56 | 57 | ## License 📜 58 | 59 | `mellow-vscode-theme` is available under the MIT license. See the LICENSE file for more info. 60 | 61 | ## Contributing 🤝 62 | 63 | Please read `Contributing.md` for details on our code of conduct, and the process for submitting pull requests to us. 64 | 65 | ## Forking this repo 🚨 66 | 67 | Many people have contacted us asking if they can use this code for their own websites. The answer to that question is usually "yes", with attribution. There are some cases, such as using this code for a business or something that is greater than a personal project, that we may be less comfortable saying yes to. If in doubt, please don't hesitate to ask us. 68 | 69 | We value keeping this site open source, but as you all know, _**plagiarism is bad**_. We spent a non-negligible amount of effort developing, designing, and trying to perfect this iteration of our website, and we are proud of it! All we ask is to not claim this effort as your own. 70 | 71 | So, feel free to fork this repo. If you do, please just give us proper credit by linking back to our website, https://srmkzilla.net. Refer to this handy [quora post](https://www.quora.com/Is-it-bad-to-copy-other-peoples-code) if you're not sure what to do. Thanks! 72 | -------------------------------------------------------------------------------- /Screens/mellow_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srm-kzilla/mellow-vscode-theme/d6f65ed9fd77febb1a09449b10a0063b2b1065e3/Screens/mellow_icon.png -------------------------------------------------------------------------------- /Screens/mellow_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srm-kzilla/mellow-vscode-theme/d6f65ed9fd77febb1a09449b10a0063b2b1065e3/Screens/mellow_logo.png -------------------------------------------------------------------------------- /Screens/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srm-kzilla/mellow-vscode-theme/d6f65ed9fd77febb1a09449b10a0063b2b1065e3/Screens/screenshot.PNG -------------------------------------------------------------------------------- /Screens/srmkzilla_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srm-kzilla/mellow-vscode-theme/d6f65ed9fd77febb1a09449b10a0063b2b1065e3/Screens/srmkzilla_logo.png -------------------------------------------------------------------------------- /log/trace.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srm-kzilla/mellow-vscode-theme/d6f65ed9fd77febb1a09449b10a0063b2b1065e3/log/trace.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mellow", 3 | "displayName": "Mellow Theme", 4 | "publisher": "SRMKZILLA", 5 | "description": "An artistic dark theme for Visual Studio Code. 🎨", 6 | "version": "0.0.1", 7 | "engines": { 8 | "vscode": "^1.43.0" 9 | }, 10 | "categories": [ 11 | "Themes" 12 | ], 13 | "icon": "Screens/mellow_icon.png", 14 | "galleryBanner": { 15 | "color": "#101216", 16 | "theme": "dark" 17 | }, 18 | "contributes": { 19 | "themes": [ 20 | { 21 | "label": "Mellow Theme", 22 | "uiTheme": "vs-dark", 23 | "path": "./themes/Mellow-Theme.json" 24 | } 25 | ] 26 | }, 27 | "repository": { 28 | "type": "git", 29 | "url": "https://github.com/srm-kzilla/mellow-vscode-theme.git" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /themes/Mellow-Theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mellow Theme by SRMKZILLA", 3 | "type": "dark", 4 | "editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace", 5 | "colors": { 6 | "editor.background": "#101216", 7 | "tab.activeBackground": "#101216", 8 | "sideBarTitle.foreground": "#6D6D6D", 9 | "editor.selectionBackground": "#202125", 10 | "editorBracketMatch.border": "#FFF", 11 | "activityBar.activeBackground": "#024CA1", 12 | "activityBar.activeBorder": "#FF4838", 13 | "tab.activeBorder": "#024CA1", 14 | "badge.background": "#FF4838", 15 | "activityBarBadge.background": "#FF4838", 16 | "statusBar.background": "#024CA1" 17 | }, 18 | "tokenColors": [ 19 | { 20 | "name": "Comment", 21 | "scope": [ 22 | "comment", 23 | "punctuation.definition.comment" 24 | ], 25 | "settings": { 26 | "fontStyle": "italic", 27 | "foreground": "#555555" 28 | } 29 | }, 30 | { 31 | "name": "Variables", 32 | "scope": [ 33 | "variable", 34 | "string constant.other.placeholder" 35 | ], 36 | "settings": { 37 | "foreground": "#EEFFFF" 38 | } 39 | }, 40 | { 41 | "name": "Colors", 42 | "scope": [ 43 | "constant.other.color" 44 | ], 45 | "settings": { 46 | "foreground": "#ffffff" 47 | } 48 | }, 49 | { 50 | "name": "Invalid", 51 | "scope": [ 52 | "invalid", 53 | "invalid.illegal" 54 | ], 55 | "settings": { 56 | "foreground": "#FF5370" 57 | } 58 | }, 59 | { 60 | "name": "Keyword, Storage", 61 | "scope": [ 62 | "keyword", 63 | "storage.type", 64 | "storage.modifier" 65 | ], 66 | "settings": { 67 | "foreground": "#e48279" 68 | } 69 | }, 70 | { 71 | "name": "Operator, Misc", 72 | "scope": [ 73 | "keyword.control", 74 | "constant.other.color", 75 | "punctuation", 76 | "meta.tag", 77 | "punctuation.definition.tag", 78 | "punctuation.separator.inheritance.php", 79 | "punctuation.definition.tag.html", 80 | "punctuation.definition.tag.begin.html", 81 | "punctuation.definition.tag.end.html", 82 | "punctuation.section.embedded", 83 | "keyword.other.template", 84 | "keyword.other.substitution" 85 | ], 86 | "settings": { 87 | "foreground": "#b1d6ff" 88 | } 89 | }, 90 | { 91 | "name": "Tag", 92 | "scope": [ 93 | "entity.name.tag", 94 | "meta.tag.sgml", 95 | "markup.deleted.git_gutter" 96 | ], 97 | "settings": { 98 | "foreground": "#06f0f0" 99 | } 100 | }, 101 | { 102 | "name": "Function, Special Method", 103 | "scope": [ 104 | "entity.name.function", 105 | "meta.function-call", 106 | "variable.function", 107 | "support.function", 108 | "keyword.other.special-method" 109 | ], 110 | "settings": { 111 | "foreground": "#82AAFF" 112 | } 113 | }, 114 | { 115 | "name": "Block Level Variables", 116 | "scope": [ 117 | "meta.block variable.other" 118 | ], 119 | "settings": { 120 | "foreground": "#f07178" 121 | } 122 | }, 123 | { 124 | "name": "Other Variable, String Link", 125 | "scope": [ 126 | "support.other.variable", 127 | "string.other.link" 128 | ], 129 | "settings": { 130 | "foreground": "#f07178" 131 | } 132 | }, 133 | { 134 | "name": "Number, Constant, Function Argument, Tag Attribute, Embedded", 135 | "scope": [ 136 | "constant.numeric", 137 | "constant.language", 138 | "support.constant", 139 | "constant.character", 140 | "constant.escape", 141 | "variable.parameter", 142 | "keyword.other.unit", 143 | "keyword.other" 144 | ], 145 | "settings": { 146 | "foreground": "#F78C6C" 147 | } 148 | }, 149 | { 150 | "name": "String, Symbols, Inherited Class, Markup Heading", 151 | "scope": [ 152 | "string", 153 | "constant.other.symbol", 154 | "constant.other.key", 155 | "entity.other.inherited-class", 156 | "markup.heading", 157 | "markup.inserted.git_gutter", 158 | "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js" 159 | ], 160 | "settings": { 161 | "foreground": "#C3E88D" 162 | } 163 | }, 164 | { 165 | "name": "Class, Support", 166 | "scope": [ 167 | "entity.name", 168 | "support.type", 169 | "support.class", 170 | "support.orther.namespace.use.php", 171 | "meta.use.php", 172 | "support.other.namespace.php", 173 | "markup.changed.git_gutter", 174 | "support.type.sys-types" 175 | ], 176 | "settings": { 177 | "foreground": "#FFCB6B" 178 | } 179 | }, 180 | { 181 | "name": "Entity Types", 182 | "scope": [ 183 | "support.type" 184 | ], 185 | "settings": { 186 | "foreground": "#B2CCD6" 187 | } 188 | }, 189 | { 190 | "name": "CSS Class and Support", 191 | "scope": [ 192 | "source.css support.type.property-name", 193 | "source.sass support.type.property-name", 194 | "source.scss support.type.property-name", 195 | "source.less support.type.property-name", 196 | "source.stylus support.type.property-name", 197 | "source.postcss support.type.property-name" 198 | ], 199 | "settings": { 200 | "foreground": "#B2CCD6" 201 | } 202 | }, 203 | { 204 | "name": "Sub-methods", 205 | "scope": [ 206 | "entity.name.module.js", 207 | "variable.import.parameter.js", 208 | "variable.other.class.js" 209 | ], 210 | "settings": { 211 | "foreground": "#FF5370" 212 | } 213 | }, 214 | { 215 | "name": "Language methods", 216 | "scope": [ 217 | "variable.language" 218 | ], 219 | "settings": { 220 | "fontStyle": "italic", 221 | "foreground": "#FF5370" 222 | } 223 | }, 224 | { 225 | "name": "entity.name.method.js", 226 | "scope": [ 227 | "entity.name.method.js" 228 | ], 229 | "settings": { 230 | "fontStyle": "italic", 231 | "foreground": "#82AAFF" 232 | } 233 | }, 234 | { 235 | "name": "meta.method.js", 236 | "scope": [ 237 | "meta.class-method.js entity.name.function.js", 238 | "variable.function.constructor" 239 | ], 240 | "settings": { 241 | "foreground": "#82AAFF" 242 | } 243 | }, 244 | { 245 | "name": "Attributes", 246 | "scope": [ 247 | "entity.other.attribute-name" 248 | ], 249 | "settings": { 250 | "foreground": "#C792EA" 251 | } 252 | }, 253 | { 254 | "name": "HTML Attributes", 255 | "scope": [ 256 | "text.html.basic entity.other.attribute-name.html", 257 | "text.html.basic entity.other.attribute-name" 258 | ], 259 | "settings": { 260 | "fontStyle": "italic", 261 | "foreground": "#FFCB6B" 262 | } 263 | }, 264 | { 265 | "name": "CSS Classes", 266 | "scope": [ 267 | "entity.other.attribute-name.class" 268 | ], 269 | "settings": { 270 | "foreground": "#FFCB6B" 271 | } 272 | }, 273 | { 274 | "name": "CSS ID's", 275 | "scope": [ 276 | "source.sass keyword.control" 277 | ], 278 | "settings": { 279 | "foreground": "#82AAFF" 280 | } 281 | }, 282 | { 283 | "name": "Inserted", 284 | "scope": [ 285 | "markup.inserted" 286 | ], 287 | "settings": { 288 | "foreground": "#C3E88D" 289 | } 290 | }, 291 | { 292 | "name": "Deleted", 293 | "scope": [ 294 | "markup.deleted" 295 | ], 296 | "settings": { 297 | "foreground": "#FF5370" 298 | } 299 | }, 300 | { 301 | "name": "Changed", 302 | "scope": [ 303 | "markup.changed" 304 | ], 305 | "settings": { 306 | "foreground": "#C792EA" 307 | } 308 | }, 309 | { 310 | "name": "Regular Expressions", 311 | "scope": [ 312 | "string.regexp" 313 | ], 314 | "settings": { 315 | "foreground": "#89DDFF" 316 | } 317 | }, 318 | { 319 | "name": "Escape Characters", 320 | "scope": [ 321 | "constant.character.escape" 322 | ], 323 | "settings": { 324 | "foreground": "#89DDFF" 325 | } 326 | }, 327 | { 328 | "name": "URL", 329 | "scope": [ 330 | "*url*", 331 | "*link*", 332 | "*uri*" 333 | ], 334 | "settings": { 335 | "fontStyle": "underline" 336 | } 337 | }, 338 | { 339 | "name": "Decorators", 340 | "scope": [ 341 | "tag.decorator.js entity.name.tag.js", 342 | "tag.decorator.js punctuation.definition.tag.js" 343 | ], 344 | "settings": { 345 | "fontStyle": "italic", 346 | "foreground": "#82AAFF" 347 | } 348 | }, 349 | { 350 | "name": "ES7 Bind Operator", 351 | "scope": [ 352 | "source.js constant.other.object.key.js string.unquoted.label.js" 353 | ], 354 | "settings": { 355 | "fontStyle": "italic", 356 | "foreground": "#FF5370" 357 | } 358 | }, 359 | { 360 | "name": "JSON Key - Level 0", 361 | "scope": [ 362 | "source.json meta.structure.dictionary.json support.type.property-name.json" 363 | ], 364 | "settings": { 365 | "foreground": "#C792EA" 366 | } 367 | }, 368 | { 369 | "name": "JSON Key - Level 1", 370 | "scope": [ 371 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 372 | ], 373 | "settings": { 374 | "foreground": "#FFCB6B" 375 | } 376 | }, 377 | { 378 | "name": "JSON Key - Level 2", 379 | "scope": [ 380 | "source.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" 381 | ], 382 | "settings": { 383 | "foreground": "#F78C6C" 384 | } 385 | }, 386 | { 387 | "name": "JSON Key - Level 3", 388 | "scope": [ 389 | "source.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" 390 | ], 391 | "settings": { 392 | "foreground": "#FF5370" 393 | } 394 | }, 395 | { 396 | "name": "JSON Key - Level 4", 397 | "scope": [ 398 | "source.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" 399 | ], 400 | "settings": { 401 | "foreground": "#C17E70" 402 | } 403 | }, 404 | { 405 | "name": "JSON Key - Level 5", 406 | "scope": [ 407 | "source.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" 408 | ], 409 | "settings": { 410 | "foreground": "#82AAFF" 411 | } 412 | }, 413 | { 414 | "name": "JSON Key - Level 6", 415 | "scope": [ 416 | "source.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" 417 | ], 418 | "settings": { 419 | "foreground": "#f07178" 420 | } 421 | }, 422 | { 423 | "name": "JSON Key - Level 7", 424 | "scope": [ 425 | "source.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" 426 | ], 427 | "settings": { 428 | "foreground": "#C792EA" 429 | } 430 | }, 431 | { 432 | "name": "JSON Key - Level 8", 433 | "scope": [ 434 | "source.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 meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 435 | ], 436 | "settings": { 437 | "foreground": "#C3E88D" 438 | } 439 | }, 440 | { 441 | "name": "Markdown - Plain", 442 | "scope": [ 443 | "text.html.markdown", 444 | "punctuation.definition.list_item.markdown" 445 | ], 446 | "settings": { 447 | "foreground": "#EEFFFF" 448 | } 449 | }, 450 | { 451 | "name": "Markdown - Markup Raw Inline", 452 | "scope": [ 453 | "text.html.markdown markup.inline.raw.markdown" 454 | ], 455 | "settings": { 456 | "foreground": "#C792EA" 457 | } 458 | }, 459 | { 460 | "name": "Markdown - Markup Raw Inline Punctuation", 461 | "scope": [ 462 | "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" 463 | ], 464 | "settings": { 465 | "foreground": "#65737E" 466 | } 467 | }, 468 | { 469 | "name": "Markdown - Heading", 470 | "scope": [ 471 | "markdown.heading", 472 | "markup.heading | markup.heading entity.name", 473 | "markup.heading.markdown punctuation.definition.heading.markdown" 474 | ], 475 | "settings": { 476 | "foreground": "#C3E88D" 477 | } 478 | }, 479 | { 480 | "name": "Markup - Italic", 481 | "scope": [ 482 | "markup.italic" 483 | ], 484 | "settings": { 485 | "fontStyle": "italic", 486 | "foreground": "#f07178" 487 | } 488 | }, 489 | { 490 | "name": "Markup - Bold", 491 | "scope": [ 492 | "markup.bold", 493 | "markup.bold string" 494 | ], 495 | "settings": { 496 | "fontStyle": "bold", 497 | "foreground": "#f07178" 498 | } 499 | }, 500 | { 501 | "name": "Markup - Bold-Italic", 502 | "scope": [ 503 | "markup.bold markup.italic", 504 | "markup.italic markup.bold", 505 | "markup.quote markup.bold", 506 | "markup.bold markup.italic string", 507 | "markup.italic markup.bold string", 508 | "markup.quote markup.bold string" 509 | ], 510 | "settings": { 511 | "fontStyle": "bold", 512 | "foreground": "#f07178" 513 | } 514 | }, 515 | { 516 | "name": "Markup - Underline", 517 | "scope": [ 518 | "markup.underline" 519 | ], 520 | "settings": { 521 | "fontStyle": "underline", 522 | "foreground": "#F78C6C" 523 | } 524 | }, 525 | { 526 | "name": "Markdown - Blockquote", 527 | "scope": [ 528 | "markup.quote punctuation.definition.blockquote.markdown" 529 | ], 530 | "settings": { 531 | "foreground": "#65737E" 532 | } 533 | }, 534 | { 535 | "name": "Markup - Quote", 536 | "scope": [ 537 | "markup.quote" 538 | ], 539 | "settings": { 540 | "fontStyle": "italic" 541 | } 542 | }, 543 | { 544 | "name": "Markdown - Link", 545 | "scope": [ 546 | "string.other.link.title.markdown" 547 | ], 548 | "settings": { 549 | "foreground": "#82AAFF" 550 | } 551 | }, 552 | { 553 | "name": "Markdown - Link Description", 554 | "scope": [ 555 | "string.other.link.description.title.markdown" 556 | ], 557 | "settings": { 558 | "foreground": "#C792EA" 559 | } 560 | }, 561 | { 562 | "name": "Markdown - Link Anchor", 563 | "scope": [ 564 | "constant.other.reference.link.markdown" 565 | ], 566 | "settings": { 567 | "foreground": "#FFCB6B" 568 | } 569 | }, 570 | { 571 | "name": "Markup - Raw Block", 572 | "scope": [ 573 | "markup.raw.block" 574 | ], 575 | "settings": { 576 | "foreground": "#C792EA" 577 | } 578 | }, 579 | { 580 | "name": "Markdown - Raw Block Fenced", 581 | "scope": [ 582 | "markup.raw.block.fenced.markdown" 583 | ], 584 | "settings": { 585 | "foreground": "#00000050" 586 | } 587 | }, 588 | { 589 | "name": "Markdown - Fenced Bode Block", 590 | "scope": [ 591 | "punctuation.definition.fenced.markdown" 592 | ], 593 | "settings": { 594 | "foreground": "#00000050" 595 | } 596 | }, 597 | { 598 | "name": "Markdown - Fenced Bode Block Variable", 599 | "scope": [ 600 | "markup.raw.block.fenced.markdown", 601 | "variable.language.fenced.markdown", 602 | "punctuation.section.class.end" 603 | ], 604 | "settings": { 605 | "foreground": "#EEFFFF" 606 | } 607 | }, 608 | { 609 | "name": "Markdown - Fenced Language", 610 | "scope": [ 611 | "variable.language.fenced.markdown" 612 | ], 613 | "settings": { 614 | "foreground": "#65737E" 615 | } 616 | }, 617 | { 618 | "name": "Markdown - Separator", 619 | "scope": [ 620 | "meta.separator" 621 | ], 622 | "settings": { 623 | "fontStyle": "bold", 624 | "foreground": "#65737E" 625 | } 626 | }, 627 | { 628 | "name": "Markup - Table", 629 | "scope": [ 630 | "markup.table" 631 | ], 632 | "settings": { 633 | "foreground": "#EEFFFF" 634 | } 635 | } 636 | ] 637 | } --------------------------------------------------------------------------------