├── LICENSE ├── README.md ├── assets └── previews │ ├── material-theme-combined.png │ ├── material-theme-darker-high-contrast.png │ ├── material-theme-darker.png │ ├── material-theme-deepforest-high-contrast.png │ ├── material-theme-deepforest.png │ ├── material-theme-high-contrast.png │ ├── material-theme-lighter-high-contrast.png │ ├── material-theme-lighter.png │ ├── material-theme-ocean-high-contrast.png │ ├── material-theme-ocean.png │ ├── material-theme-palenight-high-contrast.png │ ├── material-theme-palenight.png │ └── material-theme.png ├── extension.toml └── themes └── material-theme.json /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo
3 | Material Theme for Zed 4 |

5 | 6 |

7 | 8 |

9 | 10 | The most epic theme meets Zed. 11 | Inspired by Mattia Astorino's Material Theme for [Visual Studio Code](https://github.com/material-theme/vsc-material-theme). 12 | 13 | Get the theme from the Zed Extensions Gallery. Instructions below. 14 | 15 | You can help by reporting issues [`here`](https://github.com/codextor/zed-material-theme/issues) 16 | 17 | ## Previews 18 | 19 |
20 | Material Theme 21 | 22 |
23 |
24 | Material Theme High Contrast 25 | 26 |
27 |
28 | Material Theme Darker 29 | 30 |
31 |
32 | Material Theme Darker High Contrast 33 | 34 |
35 |
36 | Material Theme Deepforest 37 | 38 |
39 |
40 | Material Theme Deepforest High Contrast 41 | 42 |
43 |
44 | Material Theme Lighter 45 | 46 |
47 |
48 | Material Theme Lighter High Contrast 49 | 50 |
51 |
52 | Material Theme Ocean 53 | 54 |
55 |
56 | Material Theme Ocean High Contrast 57 | 58 |
59 |
60 | Material Theme Palenight 61 | 62 |
63 |
64 | Material Theme Palenight High Contrast 65 | 66 |
67 | 68 | ## Install via Zed Extensions 69 | 70 | 1. Open Zed. 71 | 2. Launch the Zed Extension Gallery by pressing `cmd-shift-x` (macOS) or `ctrl-shift-x` (Linux), or by selecting "Zed > Extensions" from the menu bar. 72 | 3. Search for _Material Theme_ using the Search Bar, and click on Install to get the theme. 73 | 4. Launch the Select Theme panel by pressing `cmd-k` followed by `cmd-t` (macOS) or `ctrl-k` followed by `ctrl-t` (Linux), or by selecting "Zed > Settings... > Select Theme..." from the menu bar. 74 | 5. Select your Material Theme in the dropdown shown. 75 | 76 | --- 77 | 78 |

79 | -------------------------------------------------------------------------------- /assets/previews/material-theme-combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-combined.png -------------------------------------------------------------------------------- /assets/previews/material-theme-darker-high-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-darker-high-contrast.png -------------------------------------------------------------------------------- /assets/previews/material-theme-darker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-darker.png -------------------------------------------------------------------------------- /assets/previews/material-theme-deepforest-high-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-deepforest-high-contrast.png -------------------------------------------------------------------------------- /assets/previews/material-theme-deepforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-deepforest.png -------------------------------------------------------------------------------- /assets/previews/material-theme-high-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-high-contrast.png -------------------------------------------------------------------------------- /assets/previews/material-theme-lighter-high-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-lighter-high-contrast.png -------------------------------------------------------------------------------- /assets/previews/material-theme-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-lighter.png -------------------------------------------------------------------------------- /assets/previews/material-theme-ocean-high-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-ocean-high-contrast.png -------------------------------------------------------------------------------- /assets/previews/material-theme-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-ocean.png -------------------------------------------------------------------------------- /assets/previews/material-theme-palenight-high-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-palenight-high-contrast.png -------------------------------------------------------------------------------- /assets/previews/material-theme-palenight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme-palenight.png -------------------------------------------------------------------------------- /assets/previews/material-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codextor/zed-material-theme/e4145b69351b773ba8c9c8b0c44e7d89faacbfee/assets/previews/material-theme.png -------------------------------------------------------------------------------- /extension.toml: -------------------------------------------------------------------------------- 1 | id = "material-theme" 2 | name = "Material Theme" 3 | version = "0.0.1" 4 | schema_version = 1 5 | authors = ["Codextor"] 6 | description = "Material Theme for Zed" 7 | repository = "https://github.com/codextor/zed-material-theme" 8 | -------------------------------------------------------------------------------- /themes/material-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://zed.dev/schema/themes/v0.1.0.json", 3 | "name": "Material Theme", 4 | "author": "Codextor", 5 | "themes": [ 6 | { 7 | "name": "Material Theme", 8 | "appearance": "dark", 9 | "style": { 10 | "background.appearance": "opaque", 11 | "accents": [], 12 | "border": "#26323860", 13 | "border.variant": "#26323860", 14 | "border.focused": "#FFFFFF00", 15 | "border.selected": "#26323860", 16 | "border.transparent": "#26323860", 17 | "border.disabled": "#26323860", 18 | "elevated_surface.background": "#263238", 19 | "surface.background": "#263238", 20 | "background": "#263238", 21 | "element.background": "#80CBC420", 22 | "element.hover": "#263238", 23 | "element.active": null, 24 | "element.selected": "#263238", 25 | "element.disabled": null, 26 | "drop_target.background": "#f0717880", 27 | "ghost_element.background": null, 28 | "ghost_element.hover": "#263238", 29 | "ghost_element.active": null, 30 | "ghost_element.selected": "#263238", 31 | "ghost_element.disabled": null, 32 | "text": "#EEFFFF", 33 | "text.muted": "#6c8692", 34 | "text.placeholder": null, 35 | "text.disabled": null, 36 | "text.accent": null, 37 | "icon": null, 38 | "icon.muted": null, 39 | "icon.disabled": null, 40 | "icon.placeholder": null, 41 | "icon.accent": null, 42 | "status_bar.background": "#263238", 43 | "title_bar.background": "#263238", 44 | "title_bar.inactive_background": null, 45 | "toolbar.background": "#263238", 46 | "tab_bar.background": "#263238", 47 | "tab.inactive_background": "#263238", 48 | "tab.active_background": "#263238", 49 | "search.match_background": null, 50 | "panel.background": "#263238", 51 | "panel.focused_border": null, 52 | "pane.focused_border": null, 53 | "pane_group.border": "#00000030", 54 | "scrollbar.thumb.background": "#EEFFFF20", 55 | "scrollbar.thumb.hover_background": "#EEFFFF10", 56 | "scrollbar.thumb.border": "#EEFFFF20", 57 | "scrollbar.track.background": "#263238", 58 | "scrollbar.track.border": "#263238", 59 | "editor.foreground": "#EEFFFF", 60 | "editor.background": "#263238", 61 | "editor.gutter.background": "#263238", 62 | "editor.subheader.background": null, 63 | "editor.active_line.background": "#00000050", 64 | "editor.highlighted_line.background": null, 65 | "editor.line_number": "#465A64", 66 | "editor.active_line_number": "#EEFFFF", 67 | "editor.invisible": null, 68 | "editor.wrap_guide": "#26323860", 69 | "editor.active_wrap_guide": "#26323860", 70 | "editor.indent_guide": null, 71 | "editor.indent_guide_active": null, 72 | "editor.document_highlight.read_background": null, 73 | "editor.document_highlight.write_background": null, 74 | "editor.document_highlight.bracket_background": null, 75 | "terminal.background": null, 76 | "terminal.foreground": null, 77 | "terminal.ansi.background": null, 78 | "terminal.bright_foreground": null, 79 | "terminal.dim_foreground": null, 80 | "terminal.ansi.black": "#000000", 81 | "terminal.ansi.bright_black": "#546E7A", 82 | "terminal.ansi.dim_black": null, 83 | "terminal.ansi.red": "#f07178", 84 | "terminal.ansi.bright_red": "#f07178", 85 | "terminal.ansi.dim_red": null, 86 | "terminal.ansi.green": "#C3E88D", 87 | "terminal.ansi.bright_green": "#C3E88D", 88 | "terminal.ansi.dim_green": null, 89 | "terminal.ansi.yellow": "#FFCB6B", 90 | "terminal.ansi.bright_yellow": "#FFCB6B", 91 | "terminal.ansi.dim_yellow": null, 92 | "terminal.ansi.blue": "#82AAFF", 93 | "terminal.ansi.bright_blue": "#82AAFF", 94 | "terminal.ansi.dim_blue": null, 95 | "terminal.ansi.magenta": "#C792EA", 96 | "terminal.ansi.bright_magenta": "#C792EA", 97 | "terminal.ansi.dim_magenta": null, 98 | "terminal.ansi.cyan": "#89DDFF", 99 | "terminal.ansi.bright_cyan": "#89DDFF", 100 | "terminal.ansi.dim_cyan": null, 101 | "terminal.ansi.white": "#ffffff", 102 | "terminal.ansi.bright_white": "#ffffff", 103 | "terminal.ansi.dim_white": null, 104 | "link_text.hover": "#EEFFFF", 105 | "conflict": "#FFCB6B90", 106 | "conflict.background": null, 107 | "conflict.border": null, 108 | "created": "#C3E88D60", 109 | "created.background": null, 110 | "created.border": null, 111 | "deleted": "#f0717860", 112 | "deleted.background": null, 113 | "deleted.border": null, 114 | "error": "#f0717870", 115 | "error.background": null, 116 | "error.border": null, 117 | "hidden": "#6c8692", 118 | "hidden.background": null, 119 | "hidden.border": null, 120 | "hint": "#969696ff", 121 | "hint.background": null, 122 | "hint.border": null, 123 | "ignored": "#6c869290", 124 | "ignored.background": null, 125 | "ignored.border": null, 126 | "info": "#82AAFF70", 127 | "info.background": null, 128 | "info.border": null, 129 | "modified": "#82AAFF60", 130 | "modified.background": null, 131 | "modified.border": null, 132 | "predictive": null, 133 | "predictive.background": null, 134 | "predictive.border": null, 135 | "renamed": null, 136 | "renamed.background": null, 137 | "renamed.border": null, 138 | "success": null, 139 | "success.background": null, 140 | "success.border": null, 141 | "unreachable": null, 142 | "unreachable.background": null, 143 | "unreachable.border": null, 144 | "warning": "#FFCB6B70", 145 | "warning.background": null, 146 | "warning.border": null, 147 | "players": [], 148 | "syntax": { 149 | "attribute": { 150 | "color": "#C792EA", 151 | "background_color": null, 152 | "font_style": null, 153 | "font_weight": null 154 | }, 155 | "comment": { 156 | "color": "#546E7A", 157 | "background_color": null, 158 | "font_style": "italic", 159 | "font_weight": null 160 | }, 161 | "comment.doc": { 162 | "color": "#546E7A", 163 | "background_color": null, 164 | "font_style": "italic", 165 | "font_weight": null 166 | }, 167 | "constructor": { 168 | "color": "#f07178", 169 | "background_color": null, 170 | "font_style": null, 171 | "font_weight": null 172 | }, 173 | "emphasis": { 174 | "color": "#f07178", 175 | "background_color": null, 176 | "font_style": "italic", 177 | "font_weight": null 178 | }, 179 | "emphasis.strong": { 180 | "color": "#f07178", 181 | "background_color": null, 182 | "font_style": null, 183 | "font_weight": 700 184 | }, 185 | "function": { 186 | "color": "#82AAFF", 187 | "background_color": null, 188 | "font_style": null, 189 | "font_weight": null 190 | }, 191 | "keyword": { 192 | "color": "#89DDFF", 193 | "background_color": null, 194 | "font_style": "italic", 195 | "font_weight": null 196 | }, 197 | "number": { 198 | "color": "#F78C6C", 199 | "background_color": null, 200 | "font_style": null, 201 | "font_weight": null 202 | }, 203 | "punctuation": { 204 | "color": "#89DDFF", 205 | "background_color": null, 206 | "font_style": null, 207 | "font_weight": null 208 | }, 209 | "punctuation.bracket": { 210 | "color": "#89DDFF", 211 | "background_color": null, 212 | "font_style": null, 213 | "font_weight": null 214 | }, 215 | "punctuation.delimiter": { 216 | "color": "#89DDFF", 217 | "background_color": null, 218 | "font_style": null, 219 | "font_weight": null 220 | }, 221 | "punctuation.list_marker": { 222 | "color": "#89DDFF", 223 | "background_color": null, 224 | "font_style": null, 225 | "font_weight": null 226 | }, 227 | "punctuation.special": { 228 | "color": "#89DDFF", 229 | "background_color": null, 230 | "font_style": null, 231 | "font_weight": null 232 | }, 233 | "string": { 234 | "color": "#C3E88D", 235 | "background_color": null, 236 | "font_style": null, 237 | "font_weight": null 238 | }, 239 | "string.escape": { 240 | "color": "#C3E88D", 241 | "background_color": null, 242 | "font_style": null, 243 | "font_weight": null 244 | }, 245 | "string.regex": { 246 | "color": "#C3E88D", 247 | "background_color": null, 248 | "font_style": null, 249 | "font_weight": null 250 | }, 251 | "string.special": { 252 | "color": "#C3E88D", 253 | "background_color": null, 254 | "font_style": null, 255 | "font_weight": null 256 | }, 257 | "string.special.symbol": { 258 | "color": "#C3E88D", 259 | "background_color": null, 260 | "font_style": null, 261 | "font_weight": null 262 | }, 263 | "tag": { 264 | "color": "#f07178", 265 | "background_color": null, 266 | "font_style": null, 267 | "font_weight": null 268 | }, 269 | "text.literal": { 270 | "color": "#C3E88D", 271 | "background_color": null, 272 | "font_style": null, 273 | "font_weight": null 274 | } 275 | } 276 | } 277 | }, 278 | { 279 | "name": "Material Theme High Contrast", 280 | "appearance": "dark", 281 | "style": { 282 | "background.appearance": "opaque", 283 | "accents": [], 284 | "border": "#3B4A5160", 285 | "border.variant": "#3B4A5160", 286 | "border.focused": "#FFFFFF00", 287 | "border.selected": "#3B4A5160", 288 | "border.transparent": "#3B4A5160", 289 | "border.disabled": "#3B4A5160", 290 | "elevated_surface.background": "#263238", 291 | "surface.background": "#192227", 292 | "background": "#263238", 293 | "element.background": "#80CBC420", 294 | "element.hover": "#192227", 295 | "element.active": null, 296 | "element.selected": "#192227", 297 | "element.disabled": null, 298 | "drop_target.background": "#f0717880", 299 | "ghost_element.background": null, 300 | "ghost_element.hover": "#192227", 301 | "ghost_element.active": null, 302 | "ghost_element.selected": "#192227", 303 | "ghost_element.disabled": null, 304 | "text": "#EEFFFF", 305 | "text.muted": "#5f7a87", 306 | "text.placeholder": null, 307 | "text.disabled": null, 308 | "text.accent": null, 309 | "icon": null, 310 | "icon.muted": null, 311 | "icon.disabled": null, 312 | "icon.placeholder": null, 313 | "icon.accent": null, 314 | "status_bar.background": "#192227", 315 | "title_bar.background": "#192227", 316 | "title_bar.inactive_background": null, 317 | "toolbar.background": "#263238", 318 | "tab_bar.background": "#263238", 319 | "tab.inactive_background": "#263238", 320 | "tab.active_background": "#263238", 321 | "search.match_background": null, 322 | "panel.background": "#192227", 323 | "panel.focused_border": null, 324 | "pane.focused_border": null, 325 | "pane_group.border": "#00000030", 326 | "scrollbar.thumb.background": "#EEFFFF20", 327 | "scrollbar.thumb.hover_background": "#EEFFFF10", 328 | "scrollbar.thumb.border": "#EEFFFF20", 329 | "scrollbar.track.background": "#263238", 330 | "scrollbar.track.border": "#263238", 331 | "editor.foreground": "#EEFFFF", 332 | "editor.background": "#263238", 333 | "editor.gutter.background": "#263238", 334 | "editor.subheader.background": null, 335 | "editor.active_line.background": "#00000050", 336 | "editor.highlighted_line.background": null, 337 | "editor.line_number": "#465A64", 338 | "editor.active_line_number": "#EEFFFF", 339 | "editor.invisible": null, 340 | "editor.wrap_guide": "#3B4A5160", 341 | "editor.active_wrap_guide": "#3B4A5160", 342 | "editor.indent_guide": null, 343 | "editor.indent_guide_active": null, 344 | "editor.document_highlight.read_background": null, 345 | "editor.document_highlight.write_background": null, 346 | "editor.document_highlight.bracket_background": null, 347 | "terminal.background": null, 348 | "terminal.foreground": null, 349 | "terminal.ansi.background": null, 350 | "terminal.bright_foreground": null, 351 | "terminal.dim_foreground": null, 352 | "terminal.ansi.black": "#000000", 353 | "terminal.ansi.bright_black": "#546E7A", 354 | "terminal.ansi.dim_black": null, 355 | "terminal.ansi.red": "#f07178", 356 | "terminal.ansi.bright_red": "#f07178", 357 | "terminal.ansi.dim_red": null, 358 | "terminal.ansi.green": "#C3E88D", 359 | "terminal.ansi.bright_green": "#C3E88D", 360 | "terminal.ansi.dim_green": null, 361 | "terminal.ansi.yellow": "#FFCB6B", 362 | "terminal.ansi.bright_yellow": "#FFCB6B", 363 | "terminal.ansi.dim_yellow": null, 364 | "terminal.ansi.blue": "#82AAFF", 365 | "terminal.ansi.bright_blue": "#82AAFF", 366 | "terminal.ansi.dim_blue": null, 367 | "terminal.ansi.magenta": "#C792EA", 368 | "terminal.ansi.bright_magenta": "#C792EA", 369 | "terminal.ansi.dim_magenta": null, 370 | "terminal.ansi.cyan": "#89DDFF", 371 | "terminal.ansi.bright_cyan": "#89DDFF", 372 | "terminal.ansi.dim_cyan": null, 373 | "terminal.ansi.white": "#ffffff", 374 | "terminal.ansi.bright_white": "#ffffff", 375 | "terminal.ansi.dim_white": null, 376 | "link_text.hover": "#EEFFFF", 377 | "conflict": "#FFCB6B90", 378 | "conflict.background": null, 379 | "conflict.border": null, 380 | "created": "#C3E88D60", 381 | "created.background": null, 382 | "created.border": null, 383 | "deleted": "#f0717860", 384 | "deleted.background": null, 385 | "deleted.border": null, 386 | "error": "#f0717870", 387 | "error.background": null, 388 | "error.border": null, 389 | "hidden": "#5f7a87", 390 | "hidden.background": null, 391 | "hidden.border": null, 392 | "hint": "#969696ff", 393 | "hint.background": null, 394 | "hint.border": null, 395 | "ignored": "#5f7a8790", 396 | "ignored.background": null, 397 | "ignored.border": null, 398 | "info": "#82AAFF70", 399 | "info.background": null, 400 | "info.border": null, 401 | "modified": "#82AAFF60", 402 | "modified.background": null, 403 | "modified.border": null, 404 | "predictive": null, 405 | "predictive.background": null, 406 | "predictive.border": null, 407 | "renamed": null, 408 | "renamed.background": null, 409 | "renamed.border": null, 410 | "success": null, 411 | "success.background": null, 412 | "success.border": null, 413 | "unreachable": null, 414 | "unreachable.background": null, 415 | "unreachable.border": null, 416 | "warning": "#FFCB6B70", 417 | "warning.background": null, 418 | "warning.border": null, 419 | "players": [], 420 | "syntax": { 421 | "attribute": { 422 | "color": "#C792EA", 423 | "background_color": null, 424 | "font_style": null, 425 | "font_weight": null 426 | }, 427 | "comment": { 428 | "color": "#546E7A", 429 | "background_color": null, 430 | "font_style": "italic", 431 | "font_weight": null 432 | }, 433 | "comment.doc": { 434 | "color": "#546E7A", 435 | "background_color": null, 436 | "font_style": "italic", 437 | "font_weight": null 438 | }, 439 | "constructor": { 440 | "color": "#f07178", 441 | "background_color": null, 442 | "font_style": null, 443 | "font_weight": null 444 | }, 445 | "emphasis": { 446 | "color": "#f07178", 447 | "background_color": null, 448 | "font_style": "italic", 449 | "font_weight": null 450 | }, 451 | "emphasis.strong": { 452 | "color": "#f07178", 453 | "background_color": null, 454 | "font_style": null, 455 | "font_weight": 700 456 | }, 457 | "function": { 458 | "color": "#82AAFF", 459 | "background_color": null, 460 | "font_style": null, 461 | "font_weight": null 462 | }, 463 | "keyword": { 464 | "color": "#89DDFF", 465 | "background_color": null, 466 | "font_style": "italic", 467 | "font_weight": null 468 | }, 469 | "number": { 470 | "color": "#F78C6C", 471 | "background_color": null, 472 | "font_style": null, 473 | "font_weight": null 474 | }, 475 | "punctuation": { 476 | "color": "#89DDFF", 477 | "background_color": null, 478 | "font_style": null, 479 | "font_weight": null 480 | }, 481 | "punctuation.bracket": { 482 | "color": "#89DDFF", 483 | "background_color": null, 484 | "font_style": null, 485 | "font_weight": null 486 | }, 487 | "punctuation.delimiter": { 488 | "color": "#89DDFF", 489 | "background_color": null, 490 | "font_style": null, 491 | "font_weight": null 492 | }, 493 | "punctuation.list_marker": { 494 | "color": "#89DDFF", 495 | "background_color": null, 496 | "font_style": null, 497 | "font_weight": null 498 | }, 499 | "punctuation.special": { 500 | "color": "#89DDFF", 501 | "background_color": null, 502 | "font_style": null, 503 | "font_weight": null 504 | }, 505 | "string": { 506 | "color": "#C3E88D", 507 | "background_color": null, 508 | "font_style": null, 509 | "font_weight": null 510 | }, 511 | "string.escape": { 512 | "color": "#C3E88D", 513 | "background_color": null, 514 | "font_style": null, 515 | "font_weight": null 516 | }, 517 | "string.regex": { 518 | "color": "#C3E88D", 519 | "background_color": null, 520 | "font_style": null, 521 | "font_weight": null 522 | }, 523 | "string.special": { 524 | "color": "#C3E88D", 525 | "background_color": null, 526 | "font_style": null, 527 | "font_weight": null 528 | }, 529 | "string.special.symbol": { 530 | "color": "#C3E88D", 531 | "background_color": null, 532 | "font_style": null, 533 | "font_weight": null 534 | }, 535 | "tag": { 536 | "color": "#f07178", 537 | "background_color": null, 538 | "font_style": null, 539 | "font_weight": null 540 | }, 541 | "text.literal": { 542 | "color": "#C3E88D", 543 | "background_color": null, 544 | "font_style": null, 545 | "font_weight": null 546 | } 547 | } 548 | } 549 | }, 550 | { 551 | "name": "Material Theme Darker", 552 | "appearance": "dark", 553 | "style": { 554 | "background.appearance": "opaque", 555 | "accents": [], 556 | "border": "#21212160", 557 | "border.variant": "#21212160", 558 | "border.focused": "#FFFFFF00", 559 | "border.selected": "#21212160", 560 | "border.transparent": "#21212160", 561 | "border.disabled": "#21212160", 562 | "elevated_surface.background": "#212121", 563 | "surface.background": "#212121", 564 | "background": "#212121", 565 | "element.background": "#61616150", 566 | "element.hover": "#212121", 567 | "element.active": null, 568 | "element.selected": "#212121", 569 | "element.disabled": null, 570 | "drop_target.background": "#f0717880", 571 | "ghost_element.background": null, 572 | "ghost_element.hover": "#212121", 573 | "ghost_element.active": null, 574 | "ghost_element.selected": "#212121", 575 | "ghost_element.disabled": null, 576 | "text": "#EEFFFF", 577 | "text.muted": "#676767", 578 | "text.placeholder": null, 579 | "text.disabled": null, 580 | "text.accent": null, 581 | "icon": null, 582 | "icon.muted": null, 583 | "icon.disabled": null, 584 | "icon.placeholder": null, 585 | "icon.accent": null, 586 | "status_bar.background": "#212121", 587 | "title_bar.background": "#212121", 588 | "title_bar.inactive_background": null, 589 | "toolbar.background": "#212121", 590 | "tab_bar.background": "#212121", 591 | "tab.inactive_background": "#212121", 592 | "tab.active_background": "#212121", 593 | "search.match_background": null, 594 | "panel.background": "#212121", 595 | "panel.focused_border": null, 596 | "pane.focused_border": null, 597 | "pane_group.border": "#00000030", 598 | "scrollbar.thumb.background": "#EEFFFF20", 599 | "scrollbar.thumb.hover_background": "#EEFFFF10", 600 | "scrollbar.thumb.border": "#EEFFFF20", 601 | "scrollbar.track.background": "#212121", 602 | "scrollbar.track.border": "#212121", 603 | "editor.foreground": "#EEFFFF", 604 | "editor.background": "#212121", 605 | "editor.gutter.background": "#212121", 606 | "editor.subheader.background": null, 607 | "editor.active_line.background": "#00000050", 608 | "editor.highlighted_line.background": null, 609 | "editor.line_number": "#424242", 610 | "editor.active_line_number": "#EEFFFF", 611 | "editor.invisible": null, 612 | "editor.wrap_guide": "#21212160", 613 | "editor.active_wrap_guide": "#21212160", 614 | "editor.indent_guide": null, 615 | "editor.indent_guide_active": null, 616 | "editor.document_highlight.read_background": null, 617 | "editor.document_highlight.write_background": null, 618 | "editor.document_highlight.bracket_background": null, 619 | "terminal.background": null, 620 | "terminal.foreground": null, 621 | "terminal.ansi.background": null, 622 | "terminal.bright_foreground": null, 623 | "terminal.dim_foreground": null, 624 | "terminal.ansi.black": "#000000", 625 | "terminal.ansi.bright_black": "#545454", 626 | "terminal.ansi.dim_black": null, 627 | "terminal.ansi.red": "#f07178", 628 | "terminal.ansi.bright_red": "#f07178", 629 | "terminal.ansi.dim_red": null, 630 | "terminal.ansi.green": "#C3E88D", 631 | "terminal.ansi.bright_green": "#C3E88D", 632 | "terminal.ansi.dim_green": null, 633 | "terminal.ansi.yellow": "#FFCB6B", 634 | "terminal.ansi.bright_yellow": "#FFCB6B", 635 | "terminal.ansi.dim_yellow": null, 636 | "terminal.ansi.blue": "#82AAFF", 637 | "terminal.ansi.bright_blue": "#82AAFF", 638 | "terminal.ansi.dim_blue": null, 639 | "terminal.ansi.magenta": "#C792EA", 640 | "terminal.ansi.bright_magenta": "#C792EA", 641 | "terminal.ansi.dim_magenta": null, 642 | "terminal.ansi.cyan": "#89DDFF", 643 | "terminal.ansi.bright_cyan": "#89DDFF", 644 | "terminal.ansi.dim_cyan": null, 645 | "terminal.ansi.white": "#ffffff", 646 | "terminal.ansi.bright_white": "#ffffff", 647 | "terminal.ansi.dim_white": null, 648 | "link_text.hover": "#EEFFFF", 649 | "conflict": "#FFCB6B90", 650 | "conflict.background": null, 651 | "conflict.border": null, 652 | "created": "#C3E88D60", 653 | "created.background": null, 654 | "created.border": null, 655 | "deleted": "#f0717860", 656 | "deleted.background": null, 657 | "deleted.border": null, 658 | "error": "#f0717870", 659 | "error.background": null, 660 | "error.border": null, 661 | "hidden": "#676767", 662 | "hidden.background": null, 663 | "hidden.border": null, 664 | "hint": "#969696ff", 665 | "hint.background": null, 666 | "hint.border": null, 667 | "ignored": "#67676790", 668 | "ignored.background": null, 669 | "ignored.border": null, 670 | "info": "#82AAFF70", 671 | "info.background": null, 672 | "info.border": null, 673 | "modified": "#82AAFF60", 674 | "modified.background": null, 675 | "modified.border": null, 676 | "predictive": null, 677 | "predictive.background": null, 678 | "predictive.border": null, 679 | "renamed": null, 680 | "renamed.background": null, 681 | "renamed.border": null, 682 | "success": null, 683 | "success.background": null, 684 | "success.border": null, 685 | "unreachable": null, 686 | "unreachable.background": null, 687 | "unreachable.border": null, 688 | "warning": "#FFCB6B70", 689 | "warning.background": null, 690 | "warning.border": null, 691 | "players": [], 692 | "syntax": { 693 | "attribute": { 694 | "color": "#C792EA", 695 | "background_color": null, 696 | "font_style": null, 697 | "font_weight": null 698 | }, 699 | "comment": { 700 | "color": "#545454", 701 | "background_color": null, 702 | "font_style": "italic", 703 | "font_weight": null 704 | }, 705 | "comment.doc": { 706 | "color": "#545454", 707 | "background_color": null, 708 | "font_style": "italic", 709 | "font_weight": null 710 | }, 711 | "constructor": { 712 | "color": "#f07178", 713 | "background_color": null, 714 | "font_style": null, 715 | "font_weight": null 716 | }, 717 | "emphasis": { 718 | "color": "#f07178", 719 | "background_color": null, 720 | "font_style": "italic", 721 | "font_weight": null 722 | }, 723 | "emphasis.strong": { 724 | "color": "#f07178", 725 | "background_color": null, 726 | "font_style": null, 727 | "font_weight": 700 728 | }, 729 | "function": { 730 | "color": "#82AAFF", 731 | "background_color": null, 732 | "font_style": null, 733 | "font_weight": null 734 | }, 735 | "keyword": { 736 | "color": "#89DDFF", 737 | "background_color": null, 738 | "font_style": "italic", 739 | "font_weight": null 740 | }, 741 | "number": { 742 | "color": "#F78C6C", 743 | "background_color": null, 744 | "font_style": null, 745 | "font_weight": null 746 | }, 747 | "punctuation": { 748 | "color": "#89DDFF", 749 | "background_color": null, 750 | "font_style": null, 751 | "font_weight": null 752 | }, 753 | "punctuation.bracket": { 754 | "color": "#89DDFF", 755 | "background_color": null, 756 | "font_style": null, 757 | "font_weight": null 758 | }, 759 | "punctuation.delimiter": { 760 | "color": "#89DDFF", 761 | "background_color": null, 762 | "font_style": null, 763 | "font_weight": null 764 | }, 765 | "punctuation.list_marker": { 766 | "color": "#89DDFF", 767 | "background_color": null, 768 | "font_style": null, 769 | "font_weight": null 770 | }, 771 | "punctuation.special": { 772 | "color": "#89DDFF", 773 | "background_color": null, 774 | "font_style": null, 775 | "font_weight": null 776 | }, 777 | "string": { 778 | "color": "#C3E88D", 779 | "background_color": null, 780 | "font_style": null, 781 | "font_weight": null 782 | }, 783 | "string.escape": { 784 | "color": "#C3E88D", 785 | "background_color": null, 786 | "font_style": null, 787 | "font_weight": null 788 | }, 789 | "string.regex": { 790 | "color": "#C3E88D", 791 | "background_color": null, 792 | "font_style": null, 793 | "font_weight": null 794 | }, 795 | "string.special": { 796 | "color": "#C3E88D", 797 | "background_color": null, 798 | "font_style": null, 799 | "font_weight": null 800 | }, 801 | "string.special.symbol": { 802 | "color": "#C3E88D", 803 | "background_color": null, 804 | "font_style": null, 805 | "font_weight": null 806 | }, 807 | "tag": { 808 | "color": "#f07178", 809 | "background_color": null, 810 | "font_style": null, 811 | "font_weight": null 812 | }, 813 | "text.literal": { 814 | "color": "#C3E88D", 815 | "background_color": null, 816 | "font_style": null, 817 | "font_weight": null 818 | } 819 | } 820 | } 821 | }, 822 | { 823 | "name": "Material Theme Darker High Contrast", 824 | "appearance": "dark", 825 | "style": { 826 | "background.appearance": "opaque", 827 | "accents": [], 828 | "border": "#44444460", 829 | "border.variant": "#44444460", 830 | "border.focused": "#FFFFFF00", 831 | "border.selected": "#44444460", 832 | "border.transparent": "#44444460", 833 | "border.disabled": "#44444460", 834 | "elevated_surface.background": "#212121", 835 | "surface.background": "#1a1a1a", 836 | "background": "#212121", 837 | "element.background": "#61616150", 838 | "element.hover": "#1a1a1a", 839 | "element.active": null, 840 | "element.selected": "#1a1a1a", 841 | "element.disabled": null, 842 | "drop_target.background": "#f0717880", 843 | "ghost_element.background": null, 844 | "ghost_element.hover": "#1a1a1a", 845 | "ghost_element.active": null, 846 | "ghost_element.selected": "#1a1a1a", 847 | "ghost_element.disabled": null, 848 | "text": "#EEFFFF", 849 | "text.muted": "#848484", 850 | "text.placeholder": null, 851 | "text.disabled": null, 852 | "text.accent": null, 853 | "icon": null, 854 | "icon.muted": null, 855 | "icon.disabled": null, 856 | "icon.placeholder": null, 857 | "icon.accent": null, 858 | "status_bar.background": "#1a1a1a", 859 | "title_bar.background": "#1a1a1a", 860 | "title_bar.inactive_background": null, 861 | "toolbar.background": "#212121", 862 | "tab_bar.background": "#212121", 863 | "tab.inactive_background": "#212121", 864 | "tab.active_background": "#212121", 865 | "search.match_background": null, 866 | "panel.background": "#1a1a1a", 867 | "panel.focused_border": null, 868 | "pane.focused_border": null, 869 | "pane_group.border": "#00000030", 870 | "scrollbar.thumb.background": "#EEFFFF20", 871 | "scrollbar.thumb.hover_background": "#EEFFFF10", 872 | "scrollbar.thumb.border": "#EEFFFF20", 873 | "scrollbar.track.background": "#212121", 874 | "scrollbar.track.border": "#212121", 875 | "editor.foreground": "#EEFFFF", 876 | "editor.background": "#212121", 877 | "editor.gutter.background": "#212121", 878 | "editor.subheader.background": null, 879 | "editor.active_line.background": "#00000050", 880 | "editor.highlighted_line.background": null, 881 | "editor.line_number": "#424242", 882 | "editor.active_line_number": "#EEFFFF", 883 | "editor.invisible": null, 884 | "editor.wrap_guide": "#44444460", 885 | "editor.active_wrap_guide": "#44444460", 886 | "editor.indent_guide": null, 887 | "editor.indent_guide_active": null, 888 | "editor.document_highlight.read_background": null, 889 | "editor.document_highlight.write_background": null, 890 | "editor.document_highlight.bracket_background": null, 891 | "terminal.background": null, 892 | "terminal.foreground": null, 893 | "terminal.ansi.background": null, 894 | "terminal.bright_foreground": null, 895 | "terminal.dim_foreground": null, 896 | "terminal.ansi.black": "#000000", 897 | "terminal.ansi.bright_black": "#4A4A4A", 898 | "terminal.ansi.dim_black": null, 899 | "terminal.ansi.red": "#f07178", 900 | "terminal.ansi.bright_red": "#f07178", 901 | "terminal.ansi.dim_red": null, 902 | "terminal.ansi.green": "#C3E88D", 903 | "terminal.ansi.bright_green": "#C3E88D", 904 | "terminal.ansi.dim_green": null, 905 | "terminal.ansi.yellow": "#FFCB6B", 906 | "terminal.ansi.bright_yellow": "#FFCB6B", 907 | "terminal.ansi.dim_yellow": null, 908 | "terminal.ansi.blue": "#82AAFF", 909 | "terminal.ansi.bright_blue": "#82AAFF", 910 | "terminal.ansi.dim_blue": null, 911 | "terminal.ansi.magenta": "#C792EA", 912 | "terminal.ansi.bright_magenta": "#C792EA", 913 | "terminal.ansi.dim_magenta": null, 914 | "terminal.ansi.cyan": "#89DDFF", 915 | "terminal.ansi.bright_cyan": "#89DDFF", 916 | "terminal.ansi.dim_cyan": null, 917 | "terminal.ansi.white": "#ffffff", 918 | "terminal.ansi.bright_white": "#ffffff", 919 | "terminal.ansi.dim_white": null, 920 | "link_text.hover": "#EEFFFF", 921 | "conflict": "#FFCB6B90", 922 | "conflict.background": null, 923 | "conflict.border": null, 924 | "created": "#C3E88D60", 925 | "created.background": null, 926 | "created.border": null, 927 | "deleted": "#f0717860", 928 | "deleted.background": null, 929 | "deleted.border": null, 930 | "error": "#f0717870", 931 | "error.background": null, 932 | "error.border": null, 933 | "hidden": "#848484", 934 | "hidden.background": null, 935 | "hidden.border": null, 936 | "hint": "#969696ff", 937 | "hint.background": null, 938 | "hint.border": null, 939 | "ignored": "#84848490", 940 | "ignored.background": null, 941 | "ignored.border": null, 942 | "info": "#82AAFF70", 943 | "info.background": null, 944 | "info.border": null, 945 | "modified": "#82AAFF60", 946 | "modified.background": null, 947 | "modified.border": null, 948 | "predictive": null, 949 | "predictive.background": null, 950 | "predictive.border": null, 951 | "renamed": null, 952 | "renamed.background": null, 953 | "renamed.border": null, 954 | "success": null, 955 | "success.background": null, 956 | "success.border": null, 957 | "unreachable": null, 958 | "unreachable.background": null, 959 | "unreachable.border": null, 960 | "warning": "#FFCB6B70", 961 | "warning.background": null, 962 | "warning.border": null, 963 | "players": [], 964 | "syntax": { 965 | "attribute": { 966 | "color": "#C792EA", 967 | "background_color": null, 968 | "font_style": null, 969 | "font_weight": null 970 | }, 971 | "comment": { 972 | "color": "#4A4A4A", 973 | "background_color": null, 974 | "font_style": "italic", 975 | "font_weight": null 976 | }, 977 | "comment.doc": { 978 | "color": "#4A4A4A", 979 | "background_color": null, 980 | "font_style": "italic", 981 | "font_weight": null 982 | }, 983 | "constructor": { 984 | "color": "#f07178", 985 | "background_color": null, 986 | "font_style": null, 987 | "font_weight": null 988 | }, 989 | "emphasis": { 990 | "color": "#f07178", 991 | "background_color": null, 992 | "font_style": "italic", 993 | "font_weight": null 994 | }, 995 | "emphasis.strong": { 996 | "color": "#f07178", 997 | "background_color": null, 998 | "font_style": null, 999 | "font_weight": 700 1000 | }, 1001 | "function": { 1002 | "color": "#82AAFF", 1003 | "background_color": null, 1004 | "font_style": null, 1005 | "font_weight": null 1006 | }, 1007 | "keyword": { 1008 | "color": "#89DDFF", 1009 | "background_color": null, 1010 | "font_style": "italic", 1011 | "font_weight": null 1012 | }, 1013 | "number": { 1014 | "color": "#F78C6C", 1015 | "background_color": null, 1016 | "font_style": null, 1017 | "font_weight": null 1018 | }, 1019 | "punctuation": { 1020 | "color": "#89DDFF", 1021 | "background_color": null, 1022 | "font_style": null, 1023 | "font_weight": null 1024 | }, 1025 | "punctuation.bracket": { 1026 | "color": "#89DDFF", 1027 | "background_color": null, 1028 | "font_style": null, 1029 | "font_weight": null 1030 | }, 1031 | "punctuation.delimiter": { 1032 | "color": "#89DDFF", 1033 | "background_color": null, 1034 | "font_style": null, 1035 | "font_weight": null 1036 | }, 1037 | "punctuation.list_marker": { 1038 | "color": "#89DDFF", 1039 | "background_color": null, 1040 | "font_style": null, 1041 | "font_weight": null 1042 | }, 1043 | "punctuation.special": { 1044 | "color": "#89DDFF", 1045 | "background_color": null, 1046 | "font_style": null, 1047 | "font_weight": null 1048 | }, 1049 | "string": { 1050 | "color": "#C3E88D", 1051 | "background_color": null, 1052 | "font_style": null, 1053 | "font_weight": null 1054 | }, 1055 | "string.escape": { 1056 | "color": "#C3E88D", 1057 | "background_color": null, 1058 | "font_style": null, 1059 | "font_weight": null 1060 | }, 1061 | "string.regex": { 1062 | "color": "#C3E88D", 1063 | "background_color": null, 1064 | "font_style": null, 1065 | "font_weight": null 1066 | }, 1067 | "string.special": { 1068 | "color": "#C3E88D", 1069 | "background_color": null, 1070 | "font_style": null, 1071 | "font_weight": null 1072 | }, 1073 | "string.special.symbol": { 1074 | "color": "#C3E88D", 1075 | "background_color": null, 1076 | "font_style": null, 1077 | "font_weight": null 1078 | }, 1079 | "tag": { 1080 | "color": "#f07178", 1081 | "background_color": null, 1082 | "font_style": null, 1083 | "font_weight": null 1084 | }, 1085 | "text.literal": { 1086 | "color": "#C3E88D", 1087 | "background_color": null, 1088 | "font_style": null, 1089 | "font_weight": null 1090 | } 1091 | } 1092 | } 1093 | }, 1094 | { 1095 | "name": "Material Theme Deepforest", 1096 | "appearance": "dark", 1097 | "style": { 1098 | "background.appearance": "opaque", 1099 | "accents": [], 1100 | "border": "#141F1D60", 1101 | "border.variant": "#141F1D60", 1102 | "border.focused": "#FFFFFF00", 1103 | "border.selected": "#141F1D60", 1104 | "border.transparent": "#141F1D60", 1105 | "border.disabled": "#141F1D60", 1106 | "elevated_surface.background": "#141F1D", 1107 | "surface.background": "#141F1D", 1108 | "background": "#141F1D", 1109 | "element.background": "#71B48050", 1110 | "element.hover": "#141F1D", 1111 | "element.active": null, 1112 | "element.selected": "#141F1D", 1113 | "element.disabled": null, 1114 | "drop_target.background": "#f0717880", 1115 | "ghost_element.background": null, 1116 | "ghost_element.hover": "#141F1D", 1117 | "ghost_element.active": null, 1118 | "ghost_element.selected": "#141F1D", 1119 | "ghost_element.disabled": null, 1120 | "text": "#C2EDD3", 1121 | "text.muted": "#4d6457", 1122 | "text.placeholder": null, 1123 | "text.disabled": null, 1124 | "text.accent": null, 1125 | "icon": null, 1126 | "icon.muted": null, 1127 | "icon.disabled": null, 1128 | "icon.placeholder": null, 1129 | "icon.accent": null, 1130 | "status_bar.background": "#141F1D", 1131 | "title_bar.background": "#141F1D", 1132 | "title_bar.inactive_background": null, 1133 | "toolbar.background": "#141F1D", 1134 | "tab_bar.background": "#141F1D", 1135 | "tab.inactive_background": "#141F1D", 1136 | "tab.active_background": "#141F1D", 1137 | "search.match_background": null, 1138 | "panel.background": "#141F1D", 1139 | "panel.focused_border": null, 1140 | "pane.focused_border": null, 1141 | "pane_group.border": "#00000030", 1142 | "scrollbar.thumb.background": "#8CA59920", 1143 | "scrollbar.thumb.hover_background": "#8CA59910", 1144 | "scrollbar.thumb.border": "#8CA59920", 1145 | "scrollbar.track.background": "#141F1D", 1146 | "scrollbar.track.border": "#141F1D", 1147 | "editor.foreground": "#C2EDD3", 1148 | "editor.background": "#141F1D", 1149 | "editor.gutter.background": "#141F1D", 1150 | "editor.subheader.background": null, 1151 | "editor.active_line.background": "#00000050", 1152 | "editor.highlighted_line.background": null, 1153 | "editor.line_number": "#52735C80", 1154 | "editor.active_line_number": "#C2EDD3", 1155 | "editor.invisible": null, 1156 | "editor.wrap_guide": "#141F1D60", 1157 | "editor.active_wrap_guide": "#141F1D60", 1158 | "editor.indent_guide": null, 1159 | "editor.indent_guide_active": null, 1160 | "editor.document_highlight.read_background": null, 1161 | "editor.document_highlight.write_background": null, 1162 | "editor.document_highlight.bracket_background": null, 1163 | "terminal.background": null, 1164 | "terminal.foreground": null, 1165 | "terminal.ansi.background": null, 1166 | "terminal.bright_foreground": null, 1167 | "terminal.dim_foreground": null, 1168 | "terminal.ansi.black": "#000000", 1169 | "terminal.ansi.bright_black": "#476352", 1170 | "terminal.ansi.dim_black": null, 1171 | "terminal.ansi.red": "#f07178", 1172 | "terminal.ansi.bright_red": "#f07178", 1173 | "terminal.ansi.dim_red": null, 1174 | "terminal.ansi.green": "#C3E88D", 1175 | "terminal.ansi.bright_green": "#C3E88D", 1176 | "terminal.ansi.dim_green": null, 1177 | "terminal.ansi.yellow": "#FFCB6B", 1178 | "terminal.ansi.bright_yellow": "#FFCB6B", 1179 | "terminal.ansi.dim_yellow": null, 1180 | "terminal.ansi.blue": "#6FA0DE", 1181 | "terminal.ansi.bright_blue": "#6FA0DE", 1182 | "terminal.ansi.dim_blue": null, 1183 | "terminal.ansi.magenta": "#A68DCD", 1184 | "terminal.ansi.bright_magenta": "#A68DCD", 1185 | "terminal.ansi.dim_magenta": null, 1186 | "terminal.ansi.cyan": "#74C9DE", 1187 | "terminal.ansi.bright_cyan": "#74C9DE", 1188 | "terminal.ansi.dim_cyan": null, 1189 | "terminal.ansi.white": "#ffffff", 1190 | "terminal.ansi.bright_white": "#ffffff", 1191 | "terminal.ansi.dim_white": null, 1192 | "link_text.hover": "#C2EDD3", 1193 | "conflict": "#FFCB6B90", 1194 | "conflict.background": null, 1195 | "conflict.border": null, 1196 | "created": "#C3E88D60", 1197 | "created.background": null, 1198 | "created.border": null, 1199 | "deleted": "#f0717860", 1200 | "deleted.background": null, 1201 | "deleted.border": null, 1202 | "error": "#f0717870", 1203 | "error.background": null, 1204 | "error.border": null, 1205 | "hidden": "#4d6457", 1206 | "hidden.background": null, 1207 | "hidden.border": null, 1208 | "hint": "#969696ff", 1209 | "hint.background": null, 1210 | "hint.border": null, 1211 | "ignored": "#4d645790", 1212 | "ignored.background": null, 1213 | "ignored.border": null, 1214 | "info": "#6FA0DE70", 1215 | "info.background": null, 1216 | "info.border": null, 1217 | "modified": "#6FA0DE60", 1218 | "modified.background": null, 1219 | "modified.border": null, 1220 | "predictive": null, 1221 | "predictive.background": null, 1222 | "predictive.border": null, 1223 | "renamed": null, 1224 | "renamed.background": null, 1225 | "renamed.border": null, 1226 | "success": null, 1227 | "success.background": null, 1228 | "success.border": null, 1229 | "unreachable": null, 1230 | "unreachable.background": null, 1231 | "unreachable.border": null, 1232 | "warning": "#FFCB6B70", 1233 | "warning.background": null, 1234 | "warning.border": null, 1235 | "players": [], 1236 | "syntax": { 1237 | "attribute": { 1238 | "color": "#A68DCD", 1239 | "background_color": null, 1240 | "font_style": null, 1241 | "font_weight": null 1242 | }, 1243 | "comment": { 1244 | "color": "#476352", 1245 | "background_color": null, 1246 | "font_style": "italic", 1247 | "font_weight": null 1248 | }, 1249 | "comment.doc": { 1250 | "color": "#476352", 1251 | "background_color": null, 1252 | "font_style": "italic", 1253 | "font_weight": null 1254 | }, 1255 | "constructor": { 1256 | "color": "#f07178", 1257 | "background_color": null, 1258 | "font_style": null, 1259 | "font_weight": null 1260 | }, 1261 | "emphasis": { 1262 | "color": "#f07178", 1263 | "background_color": null, 1264 | "font_style": "italic", 1265 | "font_weight": null 1266 | }, 1267 | "emphasis.strong": { 1268 | "color": "#f07178", 1269 | "background_color": null, 1270 | "font_style": null, 1271 | "font_weight": 700 1272 | }, 1273 | "function": { 1274 | "color": "#6FA0DE", 1275 | "background_color": null, 1276 | "font_style": null, 1277 | "font_weight": null 1278 | }, 1279 | "keyword": { 1280 | "color": "#74C9DE", 1281 | "background_color": null, 1282 | "font_style": "italic", 1283 | "font_weight": null 1284 | }, 1285 | "number": { 1286 | "color": "#CC8868", 1287 | "background_color": null, 1288 | "font_style": null, 1289 | "font_weight": null 1290 | }, 1291 | "punctuation": { 1292 | "color": "#74C9DE", 1293 | "background_color": null, 1294 | "font_style": null, 1295 | "font_weight": null 1296 | }, 1297 | "punctuation.bracket": { 1298 | "color": "#74C9DE", 1299 | "background_color": null, 1300 | "font_style": null, 1301 | "font_weight": null 1302 | }, 1303 | "punctuation.delimiter": { 1304 | "color": "#74C9DE", 1305 | "background_color": null, 1306 | "font_style": null, 1307 | "font_weight": null 1308 | }, 1309 | "punctuation.list_marker": { 1310 | "color": "#74C9DE", 1311 | "background_color": null, 1312 | "font_style": null, 1313 | "font_weight": null 1314 | }, 1315 | "punctuation.special": { 1316 | "color": "#74C9DE", 1317 | "background_color": null, 1318 | "font_style": null, 1319 | "font_weight": null 1320 | }, 1321 | "string": { 1322 | "color": "#C3E88D", 1323 | "background_color": null, 1324 | "font_style": null, 1325 | "font_weight": null 1326 | }, 1327 | "string.escape": { 1328 | "color": "#C3E88D", 1329 | "background_color": null, 1330 | "font_style": null, 1331 | "font_weight": null 1332 | }, 1333 | "string.regex": { 1334 | "color": "#C3E88D", 1335 | "background_color": null, 1336 | "font_style": null, 1337 | "font_weight": null 1338 | }, 1339 | "string.special": { 1340 | "color": "#C3E88D", 1341 | "background_color": null, 1342 | "font_style": null, 1343 | "font_weight": null 1344 | }, 1345 | "string.special.symbol": { 1346 | "color": "#C3E88D", 1347 | "background_color": null, 1348 | "font_style": null, 1349 | "font_weight": null 1350 | }, 1351 | "tag": { 1352 | "color": "#f07178", 1353 | "background_color": null, 1354 | "font_style": null, 1355 | "font_weight": null 1356 | }, 1357 | "text.literal": { 1358 | "color": "#C3E88D", 1359 | "background_color": null, 1360 | "font_style": null, 1361 | "font_weight": null 1362 | } 1363 | } 1364 | } 1365 | }, 1366 | { 1367 | "name": "Material Theme Deepforest High Contrast", 1368 | "appearance": "dark", 1369 | "style": { 1370 | "background.appearance": "opaque", 1371 | "accents": [], 1372 | "border": "#2C423A60", 1373 | "border.variant": "#2C423A60", 1374 | "border.focused": "#FFFFFF00", 1375 | "border.selected": "#2C423A60", 1376 | "border.transparent": "#2C423A60", 1377 | "border.disabled": "#2C423A60", 1378 | "elevated_surface.background": "#141F1D", 1379 | "surface.background": "#101917", 1380 | "background": "#141F1D", 1381 | "element.background": "#71B48050", 1382 | "element.hover": "#101917", 1383 | "element.active": null, 1384 | "element.selected": "#101917", 1385 | "element.disabled": null, 1386 | "drop_target.background": "#f0717880", 1387 | "ghost_element.background": null, 1388 | "ghost_element.hover": "#101917", 1389 | "ghost_element.active": null, 1390 | "ghost_element.selected": "#101917", 1391 | "ghost_element.disabled": null, 1392 | "text": "#C2EDD3", 1393 | "text.muted": "#485E51", 1394 | "text.placeholder": null, 1395 | "text.disabled": null, 1396 | "text.accent": null, 1397 | "icon": null, 1398 | "icon.muted": null, 1399 | "icon.disabled": null, 1400 | "icon.placeholder": null, 1401 | "icon.accent": null, 1402 | "status_bar.background": "#101917", 1403 | "title_bar.background": "#101917", 1404 | "title_bar.inactive_background": null, 1405 | "toolbar.background": "#141F1D", 1406 | "tab_bar.background": "#141F1D", 1407 | "tab.inactive_background": "#141F1D", 1408 | "tab.active_background": "#141F1D", 1409 | "search.match_background": null, 1410 | "panel.background": "#101917", 1411 | "panel.focused_border": null, 1412 | "pane.focused_border": null, 1413 | "pane_group.border": "#00000030", 1414 | "scrollbar.thumb.background": "#8CA59920", 1415 | "scrollbar.thumb.hover_background": "#8CA59910", 1416 | "scrollbar.thumb.border": "#8CA59920", 1417 | "scrollbar.track.background": "#141F1D", 1418 | "scrollbar.track.border": "#141F1D", 1419 | "editor.foreground": "#C2EDD3", 1420 | "editor.background": "#141F1D", 1421 | "editor.gutter.background": "#141F1D", 1422 | "editor.subheader.background": null, 1423 | "editor.active_line.background": "#00000050", 1424 | "editor.highlighted_line.background": null, 1425 | "editor.line_number": "#52735C80", 1426 | "editor.active_line_number": "#C2EDD3", 1427 | "editor.invisible": null, 1428 | "editor.wrap_guide": "#2C423A60", 1429 | "editor.active_wrap_guide": "#2C423A60", 1430 | "editor.indent_guide": null, 1431 | "editor.indent_guide_active": null, 1432 | "editor.document_highlight.read_background": null, 1433 | "editor.document_highlight.write_background": null, 1434 | "editor.document_highlight.bracket_background": null, 1435 | "terminal.background": null, 1436 | "terminal.foreground": null, 1437 | "terminal.ansi.background": null, 1438 | "terminal.bright_foreground": null, 1439 | "terminal.dim_foreground": null, 1440 | "terminal.ansi.black": "#000000", 1441 | "terminal.ansi.bright_black": "#476352", 1442 | "terminal.ansi.dim_black": null, 1443 | "terminal.ansi.red": "#f07178", 1444 | "terminal.ansi.bright_red": "#f07178", 1445 | "terminal.ansi.dim_red": null, 1446 | "terminal.ansi.green": "#C3E88D", 1447 | "terminal.ansi.bright_green": "#C3E88D", 1448 | "terminal.ansi.dim_green": null, 1449 | "terminal.ansi.yellow": "#FFCB6B", 1450 | "terminal.ansi.bright_yellow": "#FFCB6B", 1451 | "terminal.ansi.dim_yellow": null, 1452 | "terminal.ansi.blue": "#6FA0DE", 1453 | "terminal.ansi.bright_blue": "#6FA0DE", 1454 | "terminal.ansi.dim_blue": null, 1455 | "terminal.ansi.magenta": "#A68DCD", 1456 | "terminal.ansi.bright_magenta": "#A68DCD", 1457 | "terminal.ansi.dim_magenta": null, 1458 | "terminal.ansi.cyan": "#74C9DE", 1459 | "terminal.ansi.bright_cyan": "#74C9DE", 1460 | "terminal.ansi.dim_cyan": null, 1461 | "terminal.ansi.white": "#ffffff", 1462 | "terminal.ansi.bright_white": "#ffffff", 1463 | "terminal.ansi.dim_white": null, 1464 | "link_text.hover": "#C2EDD3", 1465 | "conflict": "#FFCB6B90", 1466 | "conflict.background": null, 1467 | "conflict.border": null, 1468 | "created": "#C3E88D60", 1469 | "created.background": null, 1470 | "created.border": null, 1471 | "deleted": "#f0717860", 1472 | "deleted.background": null, 1473 | "deleted.border": null, 1474 | "error": "#f0717870", 1475 | "error.background": null, 1476 | "error.border": null, 1477 | "hidden": "#485E51", 1478 | "hidden.background": null, 1479 | "hidden.border": null, 1480 | "hint": "#969696ff", 1481 | "hint.background": null, 1482 | "hint.border": null, 1483 | "ignored": "#485E5190", 1484 | "ignored.background": null, 1485 | "ignored.border": null, 1486 | "info": "#6FA0DE70", 1487 | "info.background": null, 1488 | "info.border": null, 1489 | "modified": "#6FA0DE60", 1490 | "modified.background": null, 1491 | "modified.border": null, 1492 | "predictive": null, 1493 | "predictive.background": null, 1494 | "predictive.border": null, 1495 | "renamed": null, 1496 | "renamed.background": null, 1497 | "renamed.border": null, 1498 | "success": null, 1499 | "success.background": null, 1500 | "success.border": null, 1501 | "unreachable": null, 1502 | "unreachable.background": null, 1503 | "unreachable.border": null, 1504 | "warning": "#FFCB6B70", 1505 | "warning.background": null, 1506 | "warning.border": null, 1507 | "players": [], 1508 | "syntax": { 1509 | "attribute": { 1510 | "color": "#A68DCD", 1511 | "background_color": null, 1512 | "font_style": null, 1513 | "font_weight": null 1514 | }, 1515 | "comment": { 1516 | "color": "#476352", 1517 | "background_color": null, 1518 | "font_style": "italic", 1519 | "font_weight": null 1520 | }, 1521 | "comment.doc": { 1522 | "color": "#476352", 1523 | "background_color": null, 1524 | "font_style": "italic", 1525 | "font_weight": null 1526 | }, 1527 | "constructor": { 1528 | "color": "#f07178", 1529 | "background_color": null, 1530 | "font_style": null, 1531 | "font_weight": null 1532 | }, 1533 | "emphasis": { 1534 | "color": "#f07178", 1535 | "background_color": null, 1536 | "font_style": "italic", 1537 | "font_weight": null 1538 | }, 1539 | "emphasis.strong": { 1540 | "color": "#f07178", 1541 | "background_color": null, 1542 | "font_style": null, 1543 | "font_weight": 700 1544 | }, 1545 | "function": { 1546 | "color": "#6FA0DE", 1547 | "background_color": null, 1548 | "font_style": null, 1549 | "font_weight": null 1550 | }, 1551 | "keyword": { 1552 | "color": "#74C9DE", 1553 | "background_color": null, 1554 | "font_style": "italic", 1555 | "font_weight": null 1556 | }, 1557 | "number": { 1558 | "color": "#CC8868", 1559 | "background_color": null, 1560 | "font_style": null, 1561 | "font_weight": null 1562 | }, 1563 | "punctuation": { 1564 | "color": "#74C9DE", 1565 | "background_color": null, 1566 | "font_style": null, 1567 | "font_weight": null 1568 | }, 1569 | "punctuation.bracket": { 1570 | "color": "#74C9DE", 1571 | "background_color": null, 1572 | "font_style": null, 1573 | "font_weight": null 1574 | }, 1575 | "punctuation.delimiter": { 1576 | "color": "#74C9DE", 1577 | "background_color": null, 1578 | "font_style": null, 1579 | "font_weight": null 1580 | }, 1581 | "punctuation.list_marker": { 1582 | "color": "#74C9DE", 1583 | "background_color": null, 1584 | "font_style": null, 1585 | "font_weight": null 1586 | }, 1587 | "punctuation.special": { 1588 | "color": "#74C9DE", 1589 | "background_color": null, 1590 | "font_style": null, 1591 | "font_weight": null 1592 | }, 1593 | "string": { 1594 | "color": "#C3E88D", 1595 | "background_color": null, 1596 | "font_style": null, 1597 | "font_weight": null 1598 | }, 1599 | "string.escape": { 1600 | "color": "#C3E88D", 1601 | "background_color": null, 1602 | "font_style": null, 1603 | "font_weight": null 1604 | }, 1605 | "string.regex": { 1606 | "color": "#C3E88D", 1607 | "background_color": null, 1608 | "font_style": null, 1609 | "font_weight": null 1610 | }, 1611 | "string.special": { 1612 | "color": "#C3E88D", 1613 | "background_color": null, 1614 | "font_style": null, 1615 | "font_weight": null 1616 | }, 1617 | "string.special.symbol": { 1618 | "color": "#C3E88D", 1619 | "background_color": null, 1620 | "font_style": null, 1621 | "font_weight": null 1622 | }, 1623 | "tag": { 1624 | "color": "#f07178", 1625 | "background_color": null, 1626 | "font_style": null, 1627 | "font_weight": null 1628 | }, 1629 | "text.literal": { 1630 | "color": "#C3E88D", 1631 | "background_color": null, 1632 | "font_style": null, 1633 | "font_weight": null 1634 | } 1635 | } 1636 | } 1637 | }, 1638 | { 1639 | "name": "Material Theme Lighter", 1640 | "appearance": "light", 1641 | "style": { 1642 | "background.appearance": "opaque", 1643 | "accents": [], 1644 | "border": "#FAFAFA60", 1645 | "border.variant": "#FAFAFA60", 1646 | "border.focused": "#FFFFFF00", 1647 | "border.selected": "#FAFAFA60", 1648 | "border.transparent": "#FAFAFA60", 1649 | "border.disabled": "#FAFAFA60", 1650 | "elevated_surface.background": "#FAFAFA", 1651 | "surface.background": "#FAFAFA", 1652 | "background": "#FAFAFA", 1653 | "element.background": "#80CBC440", 1654 | "element.hover": "#FAFAFA", 1655 | "element.active": null, 1656 | "element.selected": "#FAFAFA", 1657 | "element.disabled": null, 1658 | "drop_target.background": "#E5393580", 1659 | "ghost_element.background": null, 1660 | "ghost_element.hover": "#FAFAFA", 1661 | "ghost_element.active": null, 1662 | "ghost_element.selected": "#FAFAFA", 1663 | "ghost_element.disabled": null, 1664 | "text": "#90A4AE", 1665 | "text.muted": "#758a95", 1666 | "text.placeholder": null, 1667 | "text.disabled": null, 1668 | "text.accent": null, 1669 | "icon": null, 1670 | "icon.muted": null, 1671 | "icon.disabled": null, 1672 | "icon.placeholder": null, 1673 | "icon.accent": null, 1674 | "status_bar.background": "#FAFAFA", 1675 | "title_bar.background": "#FAFAFA", 1676 | "title_bar.inactive_background": null, 1677 | "toolbar.background": "#FAFAFA", 1678 | "tab_bar.background": "#FAFAFA", 1679 | "tab.inactive_background": "#FAFAFA", 1680 | "tab.active_background": "#FAFAFA", 1681 | "search.match_background": null, 1682 | "panel.background": "#FAFAFA", 1683 | "panel.focused_border": null, 1684 | "pane.focused_border": null, 1685 | "pane_group.border": "#00000020", 1686 | "scrollbar.thumb.background": "#90A4AE20", 1687 | "scrollbar.thumb.hover_background": "#90A4AE10", 1688 | "scrollbar.thumb.border": "#90A4AE20", 1689 | "scrollbar.track.background": "#FAFAFA", 1690 | "scrollbar.track.border": "#FAFAFA", 1691 | "editor.foreground": "#90A4AE", 1692 | "editor.background": "#FAFAFA", 1693 | "editor.gutter.background": "#FAFAFA", 1694 | "editor.subheader.background": null, 1695 | "editor.active_line.background": "#CCD7DA50", 1696 | "editor.highlighted_line.background": null, 1697 | "editor.line_number": "#CFD8DC", 1698 | "editor.active_line_number": "#90A4AE", 1699 | "editor.invisible": null, 1700 | "editor.wrap_guide": "#FAFAFA60", 1701 | "editor.active_wrap_guide": "#FAFAFA60", 1702 | "editor.indent_guide": null, 1703 | "editor.indent_guide_active": null, 1704 | "editor.document_highlight.read_background": null, 1705 | "editor.document_highlight.write_background": null, 1706 | "editor.document_highlight.bracket_background": null, 1707 | "terminal.background": null, 1708 | "terminal.foreground": null, 1709 | "terminal.ansi.background": null, 1710 | "terminal.bright_foreground": null, 1711 | "terminal.dim_foreground": null, 1712 | "terminal.ansi.black": "#000000", 1713 | "terminal.ansi.bright_black": "#90A4AE", 1714 | "terminal.ansi.dim_black": null, 1715 | "terminal.ansi.red": "#E53935", 1716 | "terminal.ansi.bright_red": "#E53935", 1717 | "terminal.ansi.dim_red": null, 1718 | "terminal.ansi.green": "#91B859", 1719 | "terminal.ansi.bright_green": "#91B859", 1720 | "terminal.ansi.dim_green": null, 1721 | "terminal.ansi.yellow": "#E2931D", 1722 | "terminal.ansi.bright_yellow": "#E2931D", 1723 | "terminal.ansi.dim_yellow": null, 1724 | "terminal.ansi.blue": "#6182B8", 1725 | "terminal.ansi.bright_blue": "#6182B8", 1726 | "terminal.ansi.dim_blue": null, 1727 | "terminal.ansi.magenta": "#9C3EDA", 1728 | "terminal.ansi.bright_magenta": "#9C3EDA", 1729 | "terminal.ansi.dim_magenta": null, 1730 | "terminal.ansi.cyan": "#39ADB5", 1731 | "terminal.ansi.bright_cyan": "#39ADB5", 1732 | "terminal.ansi.dim_cyan": null, 1733 | "terminal.ansi.white": "#FFFFFF", 1734 | "terminal.ansi.bright_white": "#FFFFFF", 1735 | "terminal.ansi.dim_white": null, 1736 | "link_text.hover": "#90A4AE", 1737 | "conflict": "#E2931D90", 1738 | "conflict.background": null, 1739 | "conflict.border": null, 1740 | "created": "#91B85960", 1741 | "created.background": null, 1742 | "created.border": null, 1743 | "deleted": "#E5393560", 1744 | "deleted.background": null, 1745 | "deleted.border": null, 1746 | "error": "#E5393570", 1747 | "error.background": null, 1748 | "error.border": null, 1749 | "hidden": "#758a95", 1750 | "hidden.background": null, 1751 | "hidden.border": null, 1752 | "hint": "#969696ff", 1753 | "hint.background": null, 1754 | "hint.border": null, 1755 | "ignored": "#758a9590", 1756 | "ignored.background": null, 1757 | "ignored.border": null, 1758 | "info": "#6182B870", 1759 | "info.background": null, 1760 | "info.border": null, 1761 | "modified": "#6182B860", 1762 | "modified.background": null, 1763 | "modified.border": null, 1764 | "predictive": null, 1765 | "predictive.background": null, 1766 | "predictive.border": null, 1767 | "renamed": null, 1768 | "renamed.background": null, 1769 | "renamed.border": null, 1770 | "success": null, 1771 | "success.background": null, 1772 | "success.border": null, 1773 | "unreachable": null, 1774 | "unreachable.background": null, 1775 | "unreachable.border": null, 1776 | "warning": "#E2931D70", 1777 | "warning.background": null, 1778 | "warning.border": null, 1779 | "players": [], 1780 | "syntax": { 1781 | "attribute": { 1782 | "color": "#9C3EDA", 1783 | "background_color": null, 1784 | "font_style": null, 1785 | "font_weight": null 1786 | }, 1787 | "comment": { 1788 | "color": "#90A4AE", 1789 | "background_color": null, 1790 | "font_style": "italic", 1791 | "font_weight": null 1792 | }, 1793 | "comment.doc": { 1794 | "color": "#90A4AE", 1795 | "background_color": null, 1796 | "font_style": "italic", 1797 | "font_weight": null 1798 | }, 1799 | "constructor": { 1800 | "color": "#E53935", 1801 | "background_color": null, 1802 | "font_style": null, 1803 | "font_weight": null 1804 | }, 1805 | "emphasis": { 1806 | "color": "#E53935", 1807 | "background_color": null, 1808 | "font_style": "italic", 1809 | "font_weight": null 1810 | }, 1811 | "emphasis.strong": { 1812 | "color": "#E53935", 1813 | "background_color": null, 1814 | "font_style": null, 1815 | "font_weight": 700 1816 | }, 1817 | "function": { 1818 | "color": "#6182B8", 1819 | "background_color": null, 1820 | "font_style": null, 1821 | "font_weight": null 1822 | }, 1823 | "keyword": { 1824 | "color": "#39ADB5", 1825 | "background_color": null, 1826 | "font_style": "italic", 1827 | "font_weight": null 1828 | }, 1829 | "number": { 1830 | "color": "#F76D47", 1831 | "background_color": null, 1832 | "font_style": null, 1833 | "font_weight": null 1834 | }, 1835 | "punctuation": { 1836 | "color": "#39ADB5", 1837 | "background_color": null, 1838 | "font_style": null, 1839 | "font_weight": null 1840 | }, 1841 | "punctuation.bracket": { 1842 | "color": "#39ADB5", 1843 | "background_color": null, 1844 | "font_style": null, 1845 | "font_weight": null 1846 | }, 1847 | "punctuation.delimiter": { 1848 | "color": "#39ADB5", 1849 | "background_color": null, 1850 | "font_style": null, 1851 | "font_weight": null 1852 | }, 1853 | "punctuation.list_marker": { 1854 | "color": "#39ADB5", 1855 | "background_color": null, 1856 | "font_style": null, 1857 | "font_weight": null 1858 | }, 1859 | "punctuation.special": { 1860 | "color": "#39ADB5", 1861 | "background_color": null, 1862 | "font_style": null, 1863 | "font_weight": null 1864 | }, 1865 | "string": { 1866 | "color": "#91B859", 1867 | "background_color": null, 1868 | "font_style": null, 1869 | "font_weight": null 1870 | }, 1871 | "string.escape": { 1872 | "color": "#91B859", 1873 | "background_color": null, 1874 | "font_style": null, 1875 | "font_weight": null 1876 | }, 1877 | "string.regex": { 1878 | "color": "#91B859", 1879 | "background_color": null, 1880 | "font_style": null, 1881 | "font_weight": null 1882 | }, 1883 | "string.special": { 1884 | "color": "#91B859", 1885 | "background_color": null, 1886 | "font_style": null, 1887 | "font_weight": null 1888 | }, 1889 | "string.special.symbol": { 1890 | "color": "#91B859", 1891 | "background_color": null, 1892 | "font_style": null, 1893 | "font_weight": null 1894 | }, 1895 | "tag": { 1896 | "color": "#E53935", 1897 | "background_color": null, 1898 | "font_style": null, 1899 | "font_weight": null 1900 | }, 1901 | "text.literal": { 1902 | "color": "#91B859", 1903 | "background_color": null, 1904 | "font_style": null, 1905 | "font_weight": null 1906 | } 1907 | } 1908 | } 1909 | }, 1910 | { 1911 | "name": "Material Theme Lighter High Contrast", 1912 | "appearance": "light", 1913 | "style": { 1914 | "background.appearance": "opaque", 1915 | "accents": [], 1916 | "border": "#C1C1C160", 1917 | "border.variant": "#C1C1C160", 1918 | "border.focused": "#FFFFFF00", 1919 | "border.selected": "#C1C1C160", 1920 | "border.transparent": "#C1C1C160", 1921 | "border.disabled": "#C1C1C160", 1922 | "elevated_surface.background": "#FFFFFF", 1923 | "surface.background": "#FAFAFA", 1924 | "background": "#FFFFFF", 1925 | "element.background": "#80CBC440", 1926 | "element.hover": "#FAFAFA", 1927 | "element.active": null, 1928 | "element.selected": "#FAFAFA", 1929 | "element.disabled": null, 1930 | "drop_target.background": "#E5393580", 1931 | "ghost_element.background": null, 1932 | "ghost_element.hover": "#FAFAFA", 1933 | "ghost_element.active": null, 1934 | "ghost_element.selected": "#FAFAFA", 1935 | "ghost_element.disabled": null, 1936 | "text": "#90A4AE", 1937 | "text.muted": "#627883", 1938 | "text.placeholder": null, 1939 | "text.disabled": null, 1940 | "text.accent": null, 1941 | "icon": null, 1942 | "icon.muted": null, 1943 | "icon.disabled": null, 1944 | "icon.placeholder": null, 1945 | "icon.accent": null, 1946 | "status_bar.background": "#FAFAFA", 1947 | "title_bar.background": "#FAFAFA", 1948 | "title_bar.inactive_background": null, 1949 | "toolbar.background": "#FFFFFF", 1950 | "tab_bar.background": "#FFFFFF", 1951 | "tab.inactive_background": "#FFFFFF", 1952 | "tab.active_background": "#FFFFFF", 1953 | "search.match_background": null, 1954 | "panel.background": "#FAFAFA", 1955 | "panel.focused_border": null, 1956 | "pane.focused_border": null, 1957 | "pane_group.border": "#00000020", 1958 | "scrollbar.thumb.background": "#90A4AE20", 1959 | "scrollbar.thumb.hover_background": "#90A4AE10", 1960 | "scrollbar.thumb.border": "#90A4AE20", 1961 | "scrollbar.track.background": "#FFFFFF", 1962 | "scrollbar.track.border": "#FFFFFF", 1963 | "editor.foreground": "#90A4AE", 1964 | "editor.background": "#FFFFFF", 1965 | "editor.gutter.background": "#FFFFFF", 1966 | "editor.subheader.background": null, 1967 | "editor.active_line.background": "#CCD7DA50", 1968 | "editor.highlighted_line.background": null, 1969 | "editor.line_number": "#CFD8DC", 1970 | "editor.active_line_number": "#90A4AE", 1971 | "editor.invisible": null, 1972 | "editor.wrap_guide": "#C1C1C160", 1973 | "editor.active_wrap_guide": "#C1C1C160", 1974 | "editor.indent_guide": null, 1975 | "editor.indent_guide_active": null, 1976 | "editor.document_highlight.read_background": null, 1977 | "editor.document_highlight.write_background": null, 1978 | "editor.document_highlight.bracket_background": null, 1979 | "terminal.background": null, 1980 | "terminal.foreground": null, 1981 | "terminal.ansi.background": null, 1982 | "terminal.bright_foreground": null, 1983 | "terminal.dim_foreground": null, 1984 | "terminal.ansi.black": "#000000", 1985 | "terminal.ansi.bright_black": "#90A4AE", 1986 | "terminal.ansi.dim_black": null, 1987 | "terminal.ansi.red": "#E53935", 1988 | "terminal.ansi.bright_red": "#E53935", 1989 | "terminal.ansi.dim_red": null, 1990 | "terminal.ansi.green": "#91B859", 1991 | "terminal.ansi.bright_green": "#91B859", 1992 | "terminal.ansi.dim_green": null, 1993 | "terminal.ansi.yellow": "#E2931D", 1994 | "terminal.ansi.bright_yellow": "#E2931D", 1995 | "terminal.ansi.dim_yellow": null, 1996 | "terminal.ansi.blue": "#6182B8", 1997 | "terminal.ansi.bright_blue": "#6182B8", 1998 | "terminal.ansi.dim_blue": null, 1999 | "terminal.ansi.magenta": "#9C3EDA", 2000 | "terminal.ansi.bright_magenta": "#9C3EDA", 2001 | "terminal.ansi.dim_magenta": null, 2002 | "terminal.ansi.cyan": "#39ADB5", 2003 | "terminal.ansi.bright_cyan": "#39ADB5", 2004 | "terminal.ansi.dim_cyan": null, 2005 | "terminal.ansi.white": "#FFFFFF", 2006 | "terminal.ansi.bright_white": "#FFFFFF", 2007 | "terminal.ansi.dim_white": null, 2008 | "link_text.hover": "#90A4AE", 2009 | "conflict": "#E2931D90", 2010 | "conflict.background": null, 2011 | "conflict.border": null, 2012 | "created": "#91B85960", 2013 | "created.background": null, 2014 | "created.border": null, 2015 | "deleted": "#E5393560", 2016 | "deleted.background": null, 2017 | "deleted.border": null, 2018 | "error": "#E5393570", 2019 | "error.background": null, 2020 | "error.border": null, 2021 | "hidden": "#627883", 2022 | "hidden.background": null, 2023 | "hidden.border": null, 2024 | "hint": "#969696ff", 2025 | "hint.background": null, 2026 | "hint.border": null, 2027 | "ignored": "#62788390", 2028 | "ignored.background": null, 2029 | "ignored.border": null, 2030 | "info": "#6182B870", 2031 | "info.background": null, 2032 | "info.border": null, 2033 | "modified": "#6182B860", 2034 | "modified.background": null, 2035 | "modified.border": null, 2036 | "predictive": null, 2037 | "predictive.background": null, 2038 | "predictive.border": null, 2039 | "renamed": null, 2040 | "renamed.background": null, 2041 | "renamed.border": null, 2042 | "success": null, 2043 | "success.background": null, 2044 | "success.border": null, 2045 | "unreachable": null, 2046 | "unreachable.background": null, 2047 | "unreachable.border": null, 2048 | "warning": "#E2931D70", 2049 | "warning.background": null, 2050 | "warning.border": null, 2051 | "players": [], 2052 | "syntax": { 2053 | "attribute": { 2054 | "color": "#9C3EDA", 2055 | "background_color": null, 2056 | "font_style": null, 2057 | "font_weight": null 2058 | }, 2059 | "comment": { 2060 | "color": "#90A4AE", 2061 | "background_color": null, 2062 | "font_style": "italic", 2063 | "font_weight": null 2064 | }, 2065 | "comment.doc": { 2066 | "color": "#90A4AE", 2067 | "background_color": null, 2068 | "font_style": "italic", 2069 | "font_weight": null 2070 | }, 2071 | "constructor": { 2072 | "color": "#E53935", 2073 | "background_color": null, 2074 | "font_style": null, 2075 | "font_weight": null 2076 | }, 2077 | "emphasis": { 2078 | "color": "#E53935", 2079 | "background_color": null, 2080 | "font_style": "italic", 2081 | "font_weight": null 2082 | }, 2083 | "emphasis.strong": { 2084 | "color": "#E53935", 2085 | "background_color": null, 2086 | "font_style": null, 2087 | "font_weight": 700 2088 | }, 2089 | "function": { 2090 | "color": "#6182B8", 2091 | "background_color": null, 2092 | "font_style": null, 2093 | "font_weight": null 2094 | }, 2095 | "keyword": { 2096 | "color": "#39ADB5", 2097 | "background_color": null, 2098 | "font_style": "italic", 2099 | "font_weight": null 2100 | }, 2101 | "number": { 2102 | "color": "#F76D47", 2103 | "background_color": null, 2104 | "font_style": null, 2105 | "font_weight": null 2106 | }, 2107 | "punctuation": { 2108 | "color": "#39ADB5", 2109 | "background_color": null, 2110 | "font_style": null, 2111 | "font_weight": null 2112 | }, 2113 | "punctuation.bracket": { 2114 | "color": "#39ADB5", 2115 | "background_color": null, 2116 | "font_style": null, 2117 | "font_weight": null 2118 | }, 2119 | "punctuation.delimiter": { 2120 | "color": "#39ADB5", 2121 | "background_color": null, 2122 | "font_style": null, 2123 | "font_weight": null 2124 | }, 2125 | "punctuation.list_marker": { 2126 | "color": "#39ADB5", 2127 | "background_color": null, 2128 | "font_style": null, 2129 | "font_weight": null 2130 | }, 2131 | "punctuation.special": { 2132 | "color": "#39ADB5", 2133 | "background_color": null, 2134 | "font_style": null, 2135 | "font_weight": null 2136 | }, 2137 | "string": { 2138 | "color": "#91B859", 2139 | "background_color": null, 2140 | "font_style": null, 2141 | "font_weight": null 2142 | }, 2143 | "string.escape": { 2144 | "color": "#91B859", 2145 | "background_color": null, 2146 | "font_style": null, 2147 | "font_weight": null 2148 | }, 2149 | "string.regex": { 2150 | "color": "#91B859", 2151 | "background_color": null, 2152 | "font_style": null, 2153 | "font_weight": null 2154 | }, 2155 | "string.special": { 2156 | "color": "#91B859", 2157 | "background_color": null, 2158 | "font_style": null, 2159 | "font_weight": null 2160 | }, 2161 | "string.special.symbol": { 2162 | "color": "#91B859", 2163 | "background_color": null, 2164 | "font_style": null, 2165 | "font_weight": null 2166 | }, 2167 | "tag": { 2168 | "color": "#E53935", 2169 | "background_color": null, 2170 | "font_style": null, 2171 | "font_weight": null 2172 | }, 2173 | "text.literal": { 2174 | "color": "#91B859", 2175 | "background_color": null, 2176 | "font_style": null, 2177 | "font_weight": null 2178 | } 2179 | } 2180 | } 2181 | }, 2182 | { 2183 | "name": "Material Theme Ocean", 2184 | "appearance": "dark", 2185 | "style": { 2186 | "background.appearance": "opaque", 2187 | "accents": [], 2188 | "border": "#0F111A60", 2189 | "border.variant": "#0F111A60", 2190 | "border.focused": "#FFFFFF00", 2191 | "border.selected": "#0F111A60", 2192 | "border.transparent": "#0F111A60", 2193 | "border.disabled": "#0F111A60", 2194 | "elevated_surface.background": "#0F111A", 2195 | "surface.background": "#0F111A", 2196 | "background": "#0F111A", 2197 | "element.background": "#717CB450", 2198 | "element.hover": "#0F111A", 2199 | "element.active": null, 2200 | "element.selected": "#0F111A", 2201 | "element.disabled": null, 2202 | "drop_target.background": "#f0717880", 2203 | "ghost_element.background": null, 2204 | "ghost_element.hover": "#0F111A", 2205 | "ghost_element.active": null, 2206 | "ghost_element.selected": "#0F111A", 2207 | "ghost_element.disabled": null, 2208 | "text": "#babed8", 2209 | "text.muted": "#525975", 2210 | "text.placeholder": null, 2211 | "text.disabled": null, 2212 | "text.accent": null, 2213 | "icon": null, 2214 | "icon.muted": null, 2215 | "icon.disabled": null, 2216 | "icon.placeholder": null, 2217 | "icon.accent": null, 2218 | "status_bar.background": "#0F111A", 2219 | "title_bar.background": "#0F111A", 2220 | "title_bar.inactive_background": null, 2221 | "toolbar.background": "#0F111A", 2222 | "tab_bar.background": "#0F111A", 2223 | "tab.inactive_background": "#0F111A", 2224 | "tab.active_background": "#0F111A", 2225 | "search.match_background": null, 2226 | "panel.background": "#0F111A", 2227 | "panel.focused_border": null, 2228 | "pane.focused_border": null, 2229 | "pane_group.border": "#00000030", 2230 | "scrollbar.thumb.background": "#8F93A220", 2231 | "scrollbar.thumb.hover_background": "#8F93A210", 2232 | "scrollbar.thumb.border": "#8F93A220", 2233 | "scrollbar.track.background": "#0F111A", 2234 | "scrollbar.track.border": "#0F111A", 2235 | "editor.foreground": "#babed8", 2236 | "editor.background": "#0F111A", 2237 | "editor.gutter.background": "#0F111A", 2238 | "editor.subheader.background": null, 2239 | "editor.active_line.background": "#00000050", 2240 | "editor.highlighted_line.background": null, 2241 | "editor.line_number": "#3B3F5180", 2242 | "editor.active_line_number": "#babed8", 2243 | "editor.invisible": null, 2244 | "editor.wrap_guide": "#0F111A60", 2245 | "editor.active_wrap_guide": "#0F111A60", 2246 | "editor.indent_guide": null, 2247 | "editor.indent_guide_active": null, 2248 | "editor.document_highlight.read_background": null, 2249 | "editor.document_highlight.write_background": null, 2250 | "editor.document_highlight.bracket_background": null, 2251 | "terminal.background": null, 2252 | "terminal.foreground": null, 2253 | "terminal.ansi.background": null, 2254 | "terminal.bright_foreground": null, 2255 | "terminal.dim_foreground": null, 2256 | "terminal.ansi.black": "#000000", 2257 | "terminal.ansi.bright_black": "#464B5D", 2258 | "terminal.ansi.dim_black": null, 2259 | "terminal.ansi.red": "#f07178", 2260 | "terminal.ansi.bright_red": "#f07178", 2261 | "terminal.ansi.dim_red": null, 2262 | "terminal.ansi.green": "#C3E88D", 2263 | "terminal.ansi.bright_green": "#C3E88D", 2264 | "terminal.ansi.dim_green": null, 2265 | "terminal.ansi.yellow": "#FFCB6B", 2266 | "terminal.ansi.bright_yellow": "#FFCB6B", 2267 | "terminal.ansi.dim_yellow": null, 2268 | "terminal.ansi.blue": "#82AAFF", 2269 | "terminal.ansi.bright_blue": "#82AAFF", 2270 | "terminal.ansi.dim_blue": null, 2271 | "terminal.ansi.magenta": "#C792EA", 2272 | "terminal.ansi.bright_magenta": "#C792EA", 2273 | "terminal.ansi.dim_magenta": null, 2274 | "terminal.ansi.cyan": "#89DDFF", 2275 | "terminal.ansi.bright_cyan": "#89DDFF", 2276 | "terminal.ansi.dim_cyan": null, 2277 | "terminal.ansi.white": "#ffffff", 2278 | "terminal.ansi.bright_white": "#ffffff", 2279 | "terminal.ansi.dim_white": null, 2280 | "link_text.hover": "#babed8", 2281 | "conflict": "#FFCB6B90", 2282 | "conflict.background": null, 2283 | "conflict.border": null, 2284 | "created": "#C3E88D60", 2285 | "created.background": null, 2286 | "created.border": null, 2287 | "deleted": "#f0717860", 2288 | "deleted.background": null, 2289 | "deleted.border": null, 2290 | "error": "#f0717870", 2291 | "error.background": null, 2292 | "error.border": null, 2293 | "hidden": "#525975", 2294 | "hidden.background": null, 2295 | "hidden.border": null, 2296 | "hint": "#969696ff", 2297 | "hint.background": null, 2298 | "hint.border": null, 2299 | "ignored": "#52597590", 2300 | "ignored.background": null, 2301 | "ignored.border": null, 2302 | "info": "#82AAFF70", 2303 | "info.background": null, 2304 | "info.border": null, 2305 | "modified": "#82AAFF60", 2306 | "modified.background": null, 2307 | "modified.border": null, 2308 | "predictive": null, 2309 | "predictive.background": null, 2310 | "predictive.border": null, 2311 | "renamed": null, 2312 | "renamed.background": null, 2313 | "renamed.border": null, 2314 | "success": null, 2315 | "success.background": null, 2316 | "success.border": null, 2317 | "unreachable": null, 2318 | "unreachable.background": null, 2319 | "unreachable.border": null, 2320 | "warning": "#FFCB6B70", 2321 | "warning.background": null, 2322 | "warning.border": null, 2323 | "players": [], 2324 | "syntax": { 2325 | "attribute": { 2326 | "color": "#C792EA", 2327 | "background_color": null, 2328 | "font_style": null, 2329 | "font_weight": null 2330 | }, 2331 | "comment": { 2332 | "color": "#464B5D", 2333 | "background_color": null, 2334 | "font_style": "italic", 2335 | "font_weight": null 2336 | }, 2337 | "comment.doc": { 2338 | "color": "#464B5D", 2339 | "background_color": null, 2340 | "font_style": "italic", 2341 | "font_weight": null 2342 | }, 2343 | "constructor": { 2344 | "color": "#f07178", 2345 | "background_color": null, 2346 | "font_style": null, 2347 | "font_weight": null 2348 | }, 2349 | "emphasis": { 2350 | "color": "#f07178", 2351 | "background_color": null, 2352 | "font_style": "italic", 2353 | "font_weight": null 2354 | }, 2355 | "emphasis.strong": { 2356 | "color": "#f07178", 2357 | "background_color": null, 2358 | "font_style": null, 2359 | "font_weight": 700 2360 | }, 2361 | "function": { 2362 | "color": "#82AAFF", 2363 | "background_color": null, 2364 | "font_style": null, 2365 | "font_weight": null 2366 | }, 2367 | "keyword": { 2368 | "color": "#89DDFF", 2369 | "background_color": null, 2370 | "font_style": "italic", 2371 | "font_weight": null 2372 | }, 2373 | "number": { 2374 | "color": "#F78C6C", 2375 | "background_color": null, 2376 | "font_style": null, 2377 | "font_weight": null 2378 | }, 2379 | "punctuation": { 2380 | "color": "#89DDFF", 2381 | "background_color": null, 2382 | "font_style": null, 2383 | "font_weight": null 2384 | }, 2385 | "punctuation.bracket": { 2386 | "color": "#89DDFF", 2387 | "background_color": null, 2388 | "font_style": null, 2389 | "font_weight": null 2390 | }, 2391 | "punctuation.delimiter": { 2392 | "color": "#89DDFF", 2393 | "background_color": null, 2394 | "font_style": null, 2395 | "font_weight": null 2396 | }, 2397 | "punctuation.list_marker": { 2398 | "color": "#89DDFF", 2399 | "background_color": null, 2400 | "font_style": null, 2401 | "font_weight": null 2402 | }, 2403 | "punctuation.special": { 2404 | "color": "#89DDFF", 2405 | "background_color": null, 2406 | "font_style": null, 2407 | "font_weight": null 2408 | }, 2409 | "string": { 2410 | "color": "#C3E88D", 2411 | "background_color": null, 2412 | "font_style": null, 2413 | "font_weight": null 2414 | }, 2415 | "string.escape": { 2416 | "color": "#C3E88D", 2417 | "background_color": null, 2418 | "font_style": null, 2419 | "font_weight": null 2420 | }, 2421 | "string.regex": { 2422 | "color": "#C3E88D", 2423 | "background_color": null, 2424 | "font_style": null, 2425 | "font_weight": null 2426 | }, 2427 | "string.special": { 2428 | "color": "#C3E88D", 2429 | "background_color": null, 2430 | "font_style": null, 2431 | "font_weight": null 2432 | }, 2433 | "string.special.symbol": { 2434 | "color": "#C3E88D", 2435 | "background_color": null, 2436 | "font_style": null, 2437 | "font_weight": null 2438 | }, 2439 | "tag": { 2440 | "color": "#f07178", 2441 | "background_color": null, 2442 | "font_style": null, 2443 | "font_weight": null 2444 | }, 2445 | "text.literal": { 2446 | "color": "#C3E88D", 2447 | "background_color": null, 2448 | "font_style": null, 2449 | "font_weight": null 2450 | } 2451 | } 2452 | } 2453 | }, 2454 | { 2455 | "name": "Material Theme Ocean High Contrast", 2456 | "appearance": "dark", 2457 | "style": { 2458 | "background.appearance": "opaque", 2459 | "accents": [], 2460 | "border": "#3E445D60", 2461 | "border.variant": "#3E445D60", 2462 | "border.focused": "#FFFFFF00", 2463 | "border.selected": "#3E445D60", 2464 | "border.transparent": "#3E445D60", 2465 | "border.disabled": "#3E445D60", 2466 | "elevated_surface.background": "#0F111A", 2467 | "surface.background": "#090B10", 2468 | "background": "#0F111A", 2469 | "element.background": "#717CB450", 2470 | "element.hover": "#090B10", 2471 | "element.active": null, 2472 | "element.selected": "#090B10", 2473 | "element.disabled": null, 2474 | "drop_target.background": "#f0717880", 2475 | "ghost_element.background": null, 2476 | "ghost_element.hover": "#090B10", 2477 | "ghost_element.active": null, 2478 | "ghost_element.selected": "#090B10", 2479 | "ghost_element.disabled": null, 2480 | "text": "#babed8", 2481 | "text.muted": "#4B526D", 2482 | "text.placeholder": null, 2483 | "text.disabled": null, 2484 | "text.accent": null, 2485 | "icon": null, 2486 | "icon.muted": null, 2487 | "icon.disabled": null, 2488 | "icon.placeholder": null, 2489 | "icon.accent": null, 2490 | "status_bar.background": "#090B10", 2491 | "title_bar.background": "#090B10", 2492 | "title_bar.inactive_background": null, 2493 | "toolbar.background": "#0F111A", 2494 | "tab_bar.background": "#0F111A", 2495 | "tab.inactive_background": "#0F111A", 2496 | "tab.active_background": "#0F111A", 2497 | "search.match_background": null, 2498 | "panel.background": "#090B10", 2499 | "panel.focused_border": null, 2500 | "pane.focused_border": null, 2501 | "pane_group.border": "#00000030", 2502 | "scrollbar.thumb.background": "#8F93A220", 2503 | "scrollbar.thumb.hover_background": "#8F93A210", 2504 | "scrollbar.thumb.border": "#8F93A220", 2505 | "scrollbar.track.background": "#0F111A", 2506 | "scrollbar.track.border": "#0F111A", 2507 | "editor.foreground": "#babed8", 2508 | "editor.background": "#0F111A", 2509 | "editor.gutter.background": "#0F111A", 2510 | "editor.subheader.background": null, 2511 | "editor.active_line.background": "#00000050", 2512 | "editor.highlighted_line.background": null, 2513 | "editor.line_number": "#3B3F5180", 2514 | "editor.active_line_number": "#babed8", 2515 | "editor.invisible": null, 2516 | "editor.wrap_guide": "#3E445D60", 2517 | "editor.active_wrap_guide": "#3E445D60", 2518 | "editor.indent_guide": null, 2519 | "editor.indent_guide_active": null, 2520 | "editor.document_highlight.read_background": null, 2521 | "editor.document_highlight.write_background": null, 2522 | "editor.document_highlight.bracket_background": null, 2523 | "terminal.background": null, 2524 | "terminal.foreground": null, 2525 | "terminal.ansi.background": null, 2526 | "terminal.bright_foreground": null, 2527 | "terminal.dim_foreground": null, 2528 | "terminal.ansi.black": "#000000", 2529 | "terminal.ansi.bright_black": "#464B5D", 2530 | "terminal.ansi.dim_black": null, 2531 | "terminal.ansi.red": "#f07178", 2532 | "terminal.ansi.bright_red": "#f07178", 2533 | "terminal.ansi.dim_red": null, 2534 | "terminal.ansi.green": "#C3E88D", 2535 | "terminal.ansi.bright_green": "#C3E88D", 2536 | "terminal.ansi.dim_green": null, 2537 | "terminal.ansi.yellow": "#FFCB6B", 2538 | "terminal.ansi.bright_yellow": "#FFCB6B", 2539 | "terminal.ansi.dim_yellow": null, 2540 | "terminal.ansi.blue": "#82AAFF", 2541 | "terminal.ansi.bright_blue": "#82AAFF", 2542 | "terminal.ansi.dim_blue": null, 2543 | "terminal.ansi.magenta": "#C792EA", 2544 | "terminal.ansi.bright_magenta": "#C792EA", 2545 | "terminal.ansi.dim_magenta": null, 2546 | "terminal.ansi.cyan": "#89DDFF", 2547 | "terminal.ansi.bright_cyan": "#89DDFF", 2548 | "terminal.ansi.dim_cyan": null, 2549 | "terminal.ansi.white": "#ffffff", 2550 | "terminal.ansi.bright_white": "#ffffff", 2551 | "terminal.ansi.dim_white": null, 2552 | "link_text.hover": "#babed8", 2553 | "conflict": "#FFCB6B90", 2554 | "conflict.background": null, 2555 | "conflict.border": null, 2556 | "created": "#C3E88D60", 2557 | "created.background": null, 2558 | "created.border": null, 2559 | "deleted": "#f0717860", 2560 | "deleted.background": null, 2561 | "deleted.border": null, 2562 | "error": "#f0717870", 2563 | "error.background": null, 2564 | "error.border": null, 2565 | "hidden": "#4B526D", 2566 | "hidden.background": null, 2567 | "hidden.border": null, 2568 | "hint": "#969696ff", 2569 | "hint.background": null, 2570 | "hint.border": null, 2571 | "ignored": "#4B526D90", 2572 | "ignored.background": null, 2573 | "ignored.border": null, 2574 | "info": "#82AAFF70", 2575 | "info.background": null, 2576 | "info.border": null, 2577 | "modified": "#82AAFF60", 2578 | "modified.background": null, 2579 | "modified.border": null, 2580 | "predictive": null, 2581 | "predictive.background": null, 2582 | "predictive.border": null, 2583 | "renamed": null, 2584 | "renamed.background": null, 2585 | "renamed.border": null, 2586 | "success": null, 2587 | "success.background": null, 2588 | "success.border": null, 2589 | "unreachable": null, 2590 | "unreachable.background": null, 2591 | "unreachable.border": null, 2592 | "warning": "#FFCB6B70", 2593 | "warning.background": null, 2594 | "warning.border": null, 2595 | "players": [], 2596 | "syntax": { 2597 | "attribute": { 2598 | "color": "#C792EA", 2599 | "background_color": null, 2600 | "font_style": null, 2601 | "font_weight": null 2602 | }, 2603 | "comment": { 2604 | "color": "#464B5D", 2605 | "background_color": null, 2606 | "font_style": "italic", 2607 | "font_weight": null 2608 | }, 2609 | "comment.doc": { 2610 | "color": "#464B5D", 2611 | "background_color": null, 2612 | "font_style": "italic", 2613 | "font_weight": null 2614 | }, 2615 | "constructor": { 2616 | "color": "#f07178", 2617 | "background_color": null, 2618 | "font_style": null, 2619 | "font_weight": null 2620 | }, 2621 | "emphasis": { 2622 | "color": "#f07178", 2623 | "background_color": null, 2624 | "font_style": "italic", 2625 | "font_weight": null 2626 | }, 2627 | "emphasis.strong": { 2628 | "color": "#f07178", 2629 | "background_color": null, 2630 | "font_style": null, 2631 | "font_weight": 700 2632 | }, 2633 | "function": { 2634 | "color": "#82AAFF", 2635 | "background_color": null, 2636 | "font_style": null, 2637 | "font_weight": null 2638 | }, 2639 | "keyword": { 2640 | "color": "#89DDFF", 2641 | "background_color": null, 2642 | "font_style": "italic", 2643 | "font_weight": null 2644 | }, 2645 | "number": { 2646 | "color": "#F78C6C", 2647 | "background_color": null, 2648 | "font_style": null, 2649 | "font_weight": null 2650 | }, 2651 | "punctuation": { 2652 | "color": "#89DDFF", 2653 | "background_color": null, 2654 | "font_style": null, 2655 | "font_weight": null 2656 | }, 2657 | "punctuation.bracket": { 2658 | "color": "#89DDFF", 2659 | "background_color": null, 2660 | "font_style": null, 2661 | "font_weight": null 2662 | }, 2663 | "punctuation.delimiter": { 2664 | "color": "#89DDFF", 2665 | "background_color": null, 2666 | "font_style": null, 2667 | "font_weight": null 2668 | }, 2669 | "punctuation.list_marker": { 2670 | "color": "#89DDFF", 2671 | "background_color": null, 2672 | "font_style": null, 2673 | "font_weight": null 2674 | }, 2675 | "punctuation.special": { 2676 | "color": "#89DDFF", 2677 | "background_color": null, 2678 | "font_style": null, 2679 | "font_weight": null 2680 | }, 2681 | "string": { 2682 | "color": "#C3E88D", 2683 | "background_color": null, 2684 | "font_style": null, 2685 | "font_weight": null 2686 | }, 2687 | "string.escape": { 2688 | "color": "#C3E88D", 2689 | "background_color": null, 2690 | "font_style": null, 2691 | "font_weight": null 2692 | }, 2693 | "string.regex": { 2694 | "color": "#C3E88D", 2695 | "background_color": null, 2696 | "font_style": null, 2697 | "font_weight": null 2698 | }, 2699 | "string.special": { 2700 | "color": "#C3E88D", 2701 | "background_color": null, 2702 | "font_style": null, 2703 | "font_weight": null 2704 | }, 2705 | "string.special.symbol": { 2706 | "color": "#C3E88D", 2707 | "background_color": null, 2708 | "font_style": null, 2709 | "font_weight": null 2710 | }, 2711 | "tag": { 2712 | "color": "#f07178", 2713 | "background_color": null, 2714 | "font_style": null, 2715 | "font_weight": null 2716 | }, 2717 | "text.literal": { 2718 | "color": "#C3E88D", 2719 | "background_color": null, 2720 | "font_style": null, 2721 | "font_weight": null 2722 | } 2723 | } 2724 | } 2725 | }, 2726 | { 2727 | "name": "Material Theme Palenight", 2728 | "appearance": "dark", 2729 | "style": { 2730 | "background.appearance": "opaque", 2731 | "accents": [], 2732 | "border": "#292D3E60", 2733 | "border.variant": "#292D3E60", 2734 | "border.focused": "#FFFFFF00", 2735 | "border.selected": "#292D3E60", 2736 | "border.transparent": "#292D3E60", 2737 | "border.disabled": "#292D3E60", 2738 | "elevated_surface.background": "#292D3E", 2739 | "surface.background": "#292D3E", 2740 | "background": "#292D3E", 2741 | "element.background": "#717CB450", 2742 | "element.hover": "#292D3E", 2743 | "element.active": null, 2744 | "element.selected": "#292D3E", 2745 | "element.disabled": null, 2746 | "drop_target.background": "#f0717880", 2747 | "ghost_element.background": null, 2748 | "ghost_element.hover": "#292D3E", 2749 | "ghost_element.active": null, 2750 | "ghost_element.selected": "#292D3E", 2751 | "ghost_element.disabled": null, 2752 | "text": "#babed8", 2753 | "text.muted": "#676E95", 2754 | "text.placeholder": null, 2755 | "text.disabled": null, 2756 | "text.accent": null, 2757 | "icon": null, 2758 | "icon.muted": null, 2759 | "icon.disabled": null, 2760 | "icon.placeholder": null, 2761 | "icon.accent": null, 2762 | "status_bar.background": "#292D3E", 2763 | "title_bar.background": "#292D3E", 2764 | "title_bar.inactive_background": null, 2765 | "toolbar.background": "#292D3E", 2766 | "tab_bar.background": "#292D3E", 2767 | "tab.inactive_background": "#292D3E", 2768 | "tab.active_background": "#292D3E", 2769 | "search.match_background": null, 2770 | "panel.background": "#292D3E", 2771 | "panel.focused_border": null, 2772 | "pane.focused_border": null, 2773 | "pane_group.border": "#00000030", 2774 | "scrollbar.thumb.background": "#A6ACCD20", 2775 | "scrollbar.thumb.hover_background": "#A6ACCD10", 2776 | "scrollbar.thumb.border": "#A6ACCD20", 2777 | "scrollbar.track.background": "#292D3E", 2778 | "scrollbar.track.border": "#292D3E", 2779 | "editor.foreground": "#babed8", 2780 | "editor.background": "#292D3E", 2781 | "editor.gutter.background": "#292D3E", 2782 | "editor.subheader.background": null, 2783 | "editor.active_line.background": "#00000050", 2784 | "editor.highlighted_line.background": null, 2785 | "editor.line_number": "#3A3F58", 2786 | "editor.active_line_number": "#babed8", 2787 | "editor.invisible": null, 2788 | "editor.wrap_guide": "#292D3E60", 2789 | "editor.active_wrap_guide": "#292D3E60", 2790 | "editor.indent_guide": null, 2791 | "editor.indent_guide_active": null, 2792 | "editor.document_highlight.read_background": null, 2793 | "editor.document_highlight.write_background": null, 2794 | "editor.document_highlight.bracket_background": null, 2795 | "terminal.background": null, 2796 | "terminal.foreground": null, 2797 | "terminal.ansi.background": null, 2798 | "terminal.bright_foreground": null, 2799 | "terminal.dim_foreground": null, 2800 | "terminal.ansi.black": "#000000", 2801 | "terminal.ansi.bright_black": "#676E95", 2802 | "terminal.ansi.dim_black": null, 2803 | "terminal.ansi.red": "#f07178", 2804 | "terminal.ansi.bright_red": "#f07178", 2805 | "terminal.ansi.dim_red": null, 2806 | "terminal.ansi.green": "#C3E88D", 2807 | "terminal.ansi.bright_green": "#C3E88D", 2808 | "terminal.ansi.dim_green": null, 2809 | "terminal.ansi.yellow": "#FFCB6B", 2810 | "terminal.ansi.bright_yellow": "#FFCB6B", 2811 | "terminal.ansi.dim_yellow": null, 2812 | "terminal.ansi.blue": "#82AAFF", 2813 | "terminal.ansi.bright_blue": "#82AAFF", 2814 | "terminal.ansi.dim_blue": null, 2815 | "terminal.ansi.magenta": "#C792EA", 2816 | "terminal.ansi.bright_magenta": "#C792EA", 2817 | "terminal.ansi.dim_magenta": null, 2818 | "terminal.ansi.cyan": "#89DDFF", 2819 | "terminal.ansi.bright_cyan": "#89DDFF", 2820 | "terminal.ansi.dim_cyan": null, 2821 | "terminal.ansi.white": "#ffffff", 2822 | "terminal.ansi.bright_white": "#ffffff", 2823 | "terminal.ansi.dim_white": null, 2824 | "link_text.hover": "#babed8", 2825 | "conflict": "#FFCB6B90", 2826 | "conflict.background": null, 2827 | "conflict.border": null, 2828 | "created": "#C3E88D60", 2829 | "created.background": null, 2830 | "created.border": null, 2831 | "deleted": "#f0717860", 2832 | "deleted.background": null, 2833 | "deleted.border": null, 2834 | "error": "#f0717870", 2835 | "error.background": null, 2836 | "error.border": null, 2837 | "hidden": "#676E95", 2838 | "hidden.background": null, 2839 | "hidden.border": null, 2840 | "hint": "#969696ff", 2841 | "hint.background": null, 2842 | "hint.border": null, 2843 | "ignored": "#676E9590", 2844 | "ignored.background": null, 2845 | "ignored.border": null, 2846 | "info": "#82AAFF70", 2847 | "info.background": null, 2848 | "info.border": null, 2849 | "modified": "#82AAFF60", 2850 | "modified.background": null, 2851 | "modified.border": null, 2852 | "predictive": null, 2853 | "predictive.background": null, 2854 | "predictive.border": null, 2855 | "renamed": null, 2856 | "renamed.background": null, 2857 | "renamed.border": null, 2858 | "success": null, 2859 | "success.background": null, 2860 | "success.border": null, 2861 | "unreachable": null, 2862 | "unreachable.background": null, 2863 | "unreachable.border": null, 2864 | "warning": "#FFCB6B70", 2865 | "warning.background": null, 2866 | "warning.border": null, 2867 | "players": [], 2868 | "syntax": { 2869 | "attribute": { 2870 | "color": "#C792EA", 2871 | "background_color": null, 2872 | "font_style": null, 2873 | "font_weight": null 2874 | }, 2875 | "comment": { 2876 | "color": "#676E95", 2877 | "background_color": null, 2878 | "font_style": "italic", 2879 | "font_weight": null 2880 | }, 2881 | "comment.doc": { 2882 | "color": "#676E95", 2883 | "background_color": null, 2884 | "font_style": "italic", 2885 | "font_weight": null 2886 | }, 2887 | "constructor": { 2888 | "color": "#f07178", 2889 | "background_color": null, 2890 | "font_style": null, 2891 | "font_weight": null 2892 | }, 2893 | "emphasis": { 2894 | "color": "#f07178", 2895 | "background_color": null, 2896 | "font_style": "italic", 2897 | "font_weight": null 2898 | }, 2899 | "emphasis.strong": { 2900 | "color": "#f07178", 2901 | "background_color": null, 2902 | "font_style": null, 2903 | "font_weight": 700 2904 | }, 2905 | "function": { 2906 | "color": "#82AAFF", 2907 | "background_color": null, 2908 | "font_style": null, 2909 | "font_weight": null 2910 | }, 2911 | "keyword": { 2912 | "color": "#89DDFF", 2913 | "background_color": null, 2914 | "font_style": "italic", 2915 | "font_weight": null 2916 | }, 2917 | "number": { 2918 | "color": "#F78C6C", 2919 | "background_color": null, 2920 | "font_style": null, 2921 | "font_weight": null 2922 | }, 2923 | "punctuation": { 2924 | "color": "#89DDFF", 2925 | "background_color": null, 2926 | "font_style": null, 2927 | "font_weight": null 2928 | }, 2929 | "punctuation.bracket": { 2930 | "color": "#89DDFF", 2931 | "background_color": null, 2932 | "font_style": null, 2933 | "font_weight": null 2934 | }, 2935 | "punctuation.delimiter": { 2936 | "color": "#89DDFF", 2937 | "background_color": null, 2938 | "font_style": null, 2939 | "font_weight": null 2940 | }, 2941 | "punctuation.list_marker": { 2942 | "color": "#89DDFF", 2943 | "background_color": null, 2944 | "font_style": null, 2945 | "font_weight": null 2946 | }, 2947 | "punctuation.special": { 2948 | "color": "#89DDFF", 2949 | "background_color": null, 2950 | "font_style": null, 2951 | "font_weight": null 2952 | }, 2953 | "string": { 2954 | "color": "#C3E88D", 2955 | "background_color": null, 2956 | "font_style": null, 2957 | "font_weight": null 2958 | }, 2959 | "string.escape": { 2960 | "color": "#C3E88D", 2961 | "background_color": null, 2962 | "font_style": null, 2963 | "font_weight": null 2964 | }, 2965 | "string.regex": { 2966 | "color": "#C3E88D", 2967 | "background_color": null, 2968 | "font_style": null, 2969 | "font_weight": null 2970 | }, 2971 | "string.special": { 2972 | "color": "#C3E88D", 2973 | "background_color": null, 2974 | "font_style": null, 2975 | "font_weight": null 2976 | }, 2977 | "string.special.symbol": { 2978 | "color": "#C3E88D", 2979 | "background_color": null, 2980 | "font_style": null, 2981 | "font_weight": null 2982 | }, 2983 | "tag": { 2984 | "color": "#f07178", 2985 | "background_color": null, 2986 | "font_style": null, 2987 | "font_weight": null 2988 | }, 2989 | "text.literal": { 2990 | "color": "#C3E88D", 2991 | "background_color": null, 2992 | "font_style": null, 2993 | "font_weight": null 2994 | } 2995 | } 2996 | } 2997 | }, 2998 | { 2999 | "name": "Material Theme Palenight High Contrast", 3000 | "appearance": "dark", 3001 | "style": { 3002 | "background.appearance": "opaque", 3003 | "accents": [], 3004 | "border": "#424A6C60", 3005 | "border.variant": "#424A6C60", 3006 | "border.focused": "#FFFFFF00", 3007 | "border.selected": "#424A6C60", 3008 | "border.transparent": "#424A6C60", 3009 | "border.disabled": "#424A6C60", 3010 | "elevated_surface.background": "#292D3E", 3011 | "surface.background": "#1B1E2B", 3012 | "background": "#292D3E", 3013 | "element.background": "#717CB450", 3014 | "element.hover": "#1B1E2B", 3015 | "element.active": null, 3016 | "element.selected": "#1B1E2B", 3017 | "element.disabled": null, 3018 | "drop_target.background": "#f0717880", 3019 | "ghost_element.background": null, 3020 | "ghost_element.hover": "#1B1E2B", 3021 | "ghost_element.active": null, 3022 | "ghost_element.selected": "#1B1E2B", 3023 | "ghost_element.disabled": null, 3024 | "text": "#babed8", 3025 | "text.muted": "#757CA1", 3026 | "text.placeholder": null, 3027 | "text.disabled": null, 3028 | "text.accent": null, 3029 | "icon": null, 3030 | "icon.muted": null, 3031 | "icon.disabled": null, 3032 | "icon.placeholder": null, 3033 | "icon.accent": null, 3034 | "status_bar.background": "#1B1E2B", 3035 | "title_bar.background": "#1B1E2B", 3036 | "title_bar.inactive_background": null, 3037 | "toolbar.background": "#292D3E", 3038 | "tab_bar.background": "#292D3E", 3039 | "tab.inactive_background": "#292D3E", 3040 | "tab.active_background": "#292D3E", 3041 | "search.match_background": null, 3042 | "panel.background": "#1B1E2B", 3043 | "panel.focused_border": null, 3044 | "pane.focused_border": null, 3045 | "pane_group.border": "#00000030", 3046 | "scrollbar.thumb.background": "#A6ACCD20", 3047 | "scrollbar.thumb.hover_background": "#A6ACCD10", 3048 | "scrollbar.thumb.border": "#A6ACCD20", 3049 | "scrollbar.track.background": "#292D3E", 3050 | "scrollbar.track.border": "#292D3E", 3051 | "editor.foreground": "#babed8", 3052 | "editor.background": "#292D3E", 3053 | "editor.gutter.background": "#292D3E", 3054 | "editor.subheader.background": null, 3055 | "editor.active_line.background": "#00000050", 3056 | "editor.highlighted_line.background": null, 3057 | "editor.line_number": "#3A3F58", 3058 | "editor.active_line_number": "#babed8", 3059 | "editor.invisible": null, 3060 | "editor.wrap_guide": "#424A6C60", 3061 | "editor.active_wrap_guide": "#424A6C60", 3062 | "editor.indent_guide": null, 3063 | "editor.indent_guide_active": null, 3064 | "editor.document_highlight.read_background": null, 3065 | "editor.document_highlight.write_background": null, 3066 | "editor.document_highlight.bracket_background": null, 3067 | "terminal.background": null, 3068 | "terminal.foreground": null, 3069 | "terminal.ansi.background": null, 3070 | "terminal.bright_foreground": null, 3071 | "terminal.dim_foreground": null, 3072 | "terminal.ansi.black": "#000000", 3073 | "terminal.ansi.bright_black": "#676E95", 3074 | "terminal.ansi.dim_black": null, 3075 | "terminal.ansi.red": "#f07178", 3076 | "terminal.ansi.bright_red": "#f07178", 3077 | "terminal.ansi.dim_red": null, 3078 | "terminal.ansi.green": "#C3E88D", 3079 | "terminal.ansi.bright_green": "#C3E88D", 3080 | "terminal.ansi.dim_green": null, 3081 | "terminal.ansi.yellow": "#FFCB6B", 3082 | "terminal.ansi.bright_yellow": "#FFCB6B", 3083 | "terminal.ansi.dim_yellow": null, 3084 | "terminal.ansi.blue": "#82AAFF", 3085 | "terminal.ansi.bright_blue": "#82AAFF", 3086 | "terminal.ansi.dim_blue": null, 3087 | "terminal.ansi.magenta": "#C792EA", 3088 | "terminal.ansi.bright_magenta": "#C792EA", 3089 | "terminal.ansi.dim_magenta": null, 3090 | "terminal.ansi.cyan": "#89DDFF", 3091 | "terminal.ansi.bright_cyan": "#89DDFF", 3092 | "terminal.ansi.dim_cyan": null, 3093 | "terminal.ansi.white": "#ffffff", 3094 | "terminal.ansi.bright_white": "#ffffff", 3095 | "terminal.ansi.dim_white": null, 3096 | "link_text.hover": "#babed8", 3097 | "conflict": "#FFCB6B90", 3098 | "conflict.background": null, 3099 | "conflict.border": null, 3100 | "created": "#C3E88D60", 3101 | "created.background": null, 3102 | "created.border": null, 3103 | "deleted": "#f0717860", 3104 | "deleted.background": null, 3105 | "deleted.border": null, 3106 | "error": "#f0717870", 3107 | "error.background": null, 3108 | "error.border": null, 3109 | "hidden": "#757CA1", 3110 | "hidden.background": null, 3111 | "hidden.border": null, 3112 | "hint": "#969696ff", 3113 | "hint.background": null, 3114 | "hint.border": null, 3115 | "ignored": "#757CA190", 3116 | "ignored.background": null, 3117 | "ignored.border": null, 3118 | "info": "#82AAFF70", 3119 | "info.background": null, 3120 | "info.border": null, 3121 | "modified": "#82AAFF60", 3122 | "modified.background": null, 3123 | "modified.border": null, 3124 | "predictive": null, 3125 | "predictive.background": null, 3126 | "predictive.border": null, 3127 | "renamed": null, 3128 | "renamed.background": null, 3129 | "renamed.border": null, 3130 | "success": null, 3131 | "success.background": null, 3132 | "success.border": null, 3133 | "unreachable": null, 3134 | "unreachable.background": null, 3135 | "unreachable.border": null, 3136 | "warning": "#FFCB6B70", 3137 | "warning.background": null, 3138 | "warning.border": null, 3139 | "players": [], 3140 | "syntax": { 3141 | "attribute": { 3142 | "color": "#C792EA", 3143 | "background_color": null, 3144 | "font_style": null, 3145 | "font_weight": null 3146 | }, 3147 | "comment": { 3148 | "color": "#676E95", 3149 | "background_color": null, 3150 | "font_style": "italic", 3151 | "font_weight": null 3152 | }, 3153 | "comment.doc": { 3154 | "color": "#676E95", 3155 | "background_color": null, 3156 | "font_style": "italic", 3157 | "font_weight": null 3158 | }, 3159 | "constructor": { 3160 | "color": "#f07178", 3161 | "background_color": null, 3162 | "font_style": null, 3163 | "font_weight": null 3164 | }, 3165 | "emphasis": { 3166 | "color": "#f07178", 3167 | "background_color": null, 3168 | "font_style": "italic", 3169 | "font_weight": null 3170 | }, 3171 | "emphasis.strong": { 3172 | "color": "#f07178", 3173 | "background_color": null, 3174 | "font_style": null, 3175 | "font_weight": 700 3176 | }, 3177 | "function": { 3178 | "color": "#82AAFF", 3179 | "background_color": null, 3180 | "font_style": null, 3181 | "font_weight": null 3182 | }, 3183 | "keyword": { 3184 | "color": "#89DDFF", 3185 | "background_color": null, 3186 | "font_style": "italic", 3187 | "font_weight": null 3188 | }, 3189 | "number": { 3190 | "color": "#F78C6C", 3191 | "background_color": null, 3192 | "font_style": null, 3193 | "font_weight": null 3194 | }, 3195 | "punctuation": { 3196 | "color": "#89DDFF", 3197 | "background_color": null, 3198 | "font_style": null, 3199 | "font_weight": null 3200 | }, 3201 | "punctuation.bracket": { 3202 | "color": "#89DDFF", 3203 | "background_color": null, 3204 | "font_style": null, 3205 | "font_weight": null 3206 | }, 3207 | "punctuation.delimiter": { 3208 | "color": "#89DDFF", 3209 | "background_color": null, 3210 | "font_style": null, 3211 | "font_weight": null 3212 | }, 3213 | "punctuation.list_marker": { 3214 | "color": "#89DDFF", 3215 | "background_color": null, 3216 | "font_style": null, 3217 | "font_weight": null 3218 | }, 3219 | "punctuation.special": { 3220 | "color": "#89DDFF", 3221 | "background_color": null, 3222 | "font_style": null, 3223 | "font_weight": null 3224 | }, 3225 | "string": { 3226 | "color": "#C3E88D", 3227 | "background_color": null, 3228 | "font_style": null, 3229 | "font_weight": null 3230 | }, 3231 | "string.escape": { 3232 | "color": "#C3E88D", 3233 | "background_color": null, 3234 | "font_style": null, 3235 | "font_weight": null 3236 | }, 3237 | "string.regex": { 3238 | "color": "#C3E88D", 3239 | "background_color": null, 3240 | "font_style": null, 3241 | "font_weight": null 3242 | }, 3243 | "string.special": { 3244 | "color": "#C3E88D", 3245 | "background_color": null, 3246 | "font_style": null, 3247 | "font_weight": null 3248 | }, 3249 | "string.special.symbol": { 3250 | "color": "#C3E88D", 3251 | "background_color": null, 3252 | "font_style": null, 3253 | "font_weight": null 3254 | }, 3255 | "tag": { 3256 | "color": "#f07178", 3257 | "background_color": null, 3258 | "font_style": null, 3259 | "font_weight": null 3260 | }, 3261 | "text.literal": { 3262 | "color": "#C3E88D", 3263 | "background_color": null, 3264 | "font_style": null, 3265 | "font_weight": null 3266 | } 3267 | } 3268 | } 3269 | } 3270 | ] 3271 | } 3272 | --------------------------------------------------------------------------------