├── .gitignore ├── screenshot.png ├── .gitattributes ├── .github └── dracula-pro.png ├── extension.toml ├── INSTALL.md ├── LICENSE ├── README.md └── themes └── dracula.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | test.* 4 | themegenerator.rb 5 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/zed/HEAD/screenshot.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/dracula-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/zed/HEAD/.github/dracula-pro.png -------------------------------------------------------------------------------- /extension.toml: -------------------------------------------------------------------------------- 1 | id = "dracula" 2 | name = "Dracula" 3 | version = "1.1.1" 4 | schema_version = 1 5 | authors = ["Ben Hamment "] 6 | description = "Official Dracula theme for Zed" 7 | repository = "https://github.com/dracula/zed" 8 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [Zed](https://zed.dev) 2 | 3 | #### Install in Zed 4 | 5 | This theme can be installed via the Zed extensions store. 6 | After installing, the theme can be selected in the theme selector. 7 | 8 | #### Install using Git 9 | 10 | If you are a git user, you can install the theme and keep up to date by cloning the repo: 11 | 12 | ```bash 13 | git clone https://github.com/dracula/zed.git 14 | ``` 15 | 16 | #### Install manually 17 | 18 | Download using the [GitHub `.zip` download](https://github.com/dracula/zed/archive/main.zip) option and unzip them. 19 | 20 | #### Activating theme 21 | 22 | 1. Copy the `dracula.json` file to `~/.config/zed/themes`. 23 | 2. Select the theme (`Settings` ➡️ `Select Theme` ➡️ `dracula`). 24 | 3. Boom! It's working ✨ 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Dracula Theme 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dracula for [Zed](https://zed.dev) 2 | 3 | > A dark theme for [Zed](https://zed.dev). 4 | 5 | ![image](https://github.com/user-attachments/assets/73538f30-d9a0-430f-8c0d-77e8810a2648) 6 | 7 | > Alucard, a light theme 8 | 9 | ![image](https://github.com/user-attachments/assets/88911c4e-0a03-4a27-86fa-650884357ea7) 10 | 11 | 12 | 13 | ## Install 14 | 15 | All instructions can be found at [draculatheme.com/zed](https://draculatheme.com/zed). 16 | 17 | ## Team 18 | 19 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/zed/graphs/contributors). 20 | 21 | | [![Ben Hamment](https://github.com/Otterpocket.png?size=100)](https://github.com/Otterpocket) | 22 | | --------------------------------------------------------------------------------------------- | 23 | | [Ben Hamment](https://github.com/Otterpocket) | 24 | 25 | ## Community 26 | 27 | - [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff. 28 | - [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues. 29 | - [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community. 30 | 31 | ## Dracula PRO 32 | 33 | [![Dracula PRO](./.github/dracula-pro.png)](https://gumroad.com/a/658543635/tPfIDt) 34 | 35 | ## License 36 | 37 | [MIT License](./LICENSE) 38 | -------------------------------------------------------------------------------- /themes/dracula.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://zed.dev/schema/themes/v0.2.0.json", 3 | "name": "Dracula", 4 | "author": "Ben Hamment", 5 | "themes": [ 6 | { 7 | "name": "Dracula", 8 | "appearance": "dark", 9 | "style": { 10 | "accents": [ 11 | "#bd93f9ff", 12 | "#ff79c6ff", 13 | "#8be9fdff", 14 | "#50fa7bff", 15 | "#ffb86cff", 16 | "#f1fa8cff", 17 | "#ff5555ff" 18 | ], 19 | "background.appearance": "blurred", 20 | "border": "#3c324bcc", 21 | "border.variant": "#C9A8F933", 22 | "border.focused": "#C9A8F977", 23 | "border.selected": "#C9A8F9bb", 24 | "border.transparent": "#00000000", 25 | "border.disabled": null, 26 | "elevated_surface.background": "#1e1925ff", 27 | "surface.background": "#242631ee", 28 | "background": "#b597e033", 29 | "element.background": "#1c1d26ff", 30 | "element.hover": "#504364ff", 31 | "element.active": "#796595ff", 32 | "element.selected": "#65547dff", 33 | "element.disabled": "#e9dbfdff", 34 | "drop_target.background": "#504364ff", 35 | "ghost_element.background": "#00000000", 36 | "ghost_element.hover": "#C9A8F935", 37 | "ghost_element.active": "#C9A8F950", 38 | "ghost_element.selected": "#C9A8F925", 39 | "ghost_element.disabled": "#ff5555ff", 40 | "text": "#f8f8f2ff", 41 | "text.muted": "#a186c7ff", 42 | "text.placeholder": "#C9A8F980", 43 | "text.disabled": "#C9A8F950", 44 | "text.accent": "#C9A8F9FF", 45 | "icon": "#f8f8f2ff", 46 | "icon.muted": "#f8f8f270", 47 | "icon.disabled": "#f8f8f240", 48 | "icon.placeholder": "#f8f8f250", 49 | "icon.accent": "#C9A8F9FF", 50 | "status_bar.background": "#141119bb", 51 | "title_bar.background": "#141119bb", 52 | "title_bar.inactive_background": "#0a080cbb", 53 | "toolbar.background": "#282a36ff", 54 | "tab_bar.background": "#282232bb", 55 | "tab.inactive_background": "#1c1d26ff", 56 | "tab.active_background": "#282a36ff", 57 | "search.match_background": "#50fa7b50", 58 | "panel.background": "#16121bff", 59 | "panel.focused_border": "#C9A8F9FF", 60 | "panel.indent_guide": "#f8f8f220", 61 | "panel.indent_guide_active": "#C9A8F950", 62 | "panel.indent_guide_hover": "#C9A8F935", 63 | "pane.focused_border": "#C9A8F9FF", 64 | "pane_group.border": "#3c324bcc", 65 | "scrollbar.thumb.background": "#C9A8F977", 66 | "scrollbar.thumb.hover_background": "#C9A8F9FF", 67 | "scrollbar.thumb.border": "#00000000", 68 | "scrollbar.track.background": "#141119ff", 69 | "scrollbar.track.border": "#C9A8F944", 70 | "editor.foreground": "#f8f8f2ff", 71 | "editor.background": "#282a36ff", 72 | "editor.gutter.background": "#282a36ff", 73 | "editor.subheader.background": "#1e1925ff", 74 | "editor.active_line.background": "#C9A8F933", 75 | "editor.highlighted_line.background": "#44475aff", 76 | "editor.line_number": "#f8f8f250", 77 | "editor.active_line_number": "#C9A8F9FF", 78 | "editor.invisible": "#f8f8f230", 79 | "editor.wrap_guide": "#f8f8f228", 80 | "editor.active_wrap_guide": "#bd93f965", 81 | "editor.document_highlight.read_background": "#C9A8F940", 82 | "editor.document_highlight.write_background": "#44475aff", 83 | "editor.document_highlight.bracket_background": "#bd93f935", 84 | "editor.indent_guide": "#f8f8f220", 85 | "editor.indent_guide_active": "#bd93f950", 86 | "link_text.hover": "#8be9fdff", 87 | "conflict": "#dec184ff", 88 | "conflict.background": "#dec18433", 89 | "conflict.border": "#5d4c2fff", 90 | "created": "#73fb95ff", 91 | "created.background": "#222e1dff", 92 | "created.border": "#38482fff", 93 | "deleted": "#ff5555ff", 94 | "deleted.background": "#301b1bff", 95 | "deleted.border": "#4c2b2cff", 96 | "error": "#e67373ff", 97 | "error.background": "#242631ee", 98 | "error.border": "#e67373ff", 99 | "hidden": "#414754ff", 100 | "hidden.background": "#242631ee", 101 | "hidden.border": "#414754ff", 102 | "hint": "#6272a4ff", 103 | "hint.background": "#242631ee", 104 | "hint.border": "#6272a4ff", 105 | "ignored": "#C9A8F950", 106 | "ignored.background": "#3c324bff", 107 | "ignored.border": "#C9A8F950", 108 | "info": "#73ece5ff", 109 | "info.background": "#242631ee", 110 | "info.border": "#73ece5ff", 111 | "modified": "#a2edfdff", 112 | "modified.background": "#242631ee", 113 | "modified.border": "#a2edfdff", 114 | "predictive": "#c6c6c2ff", 115 | "predictive.background": "#242631ee", 116 | "predictive.border": "#c6c6c2ff", 117 | "renamed": "#8be9fdff", 118 | "renamed.background": "#242631ee", 119 | "renamed.border": "#8be9fdff", 120 | "success": "#79e96dff", 121 | "success.background": "#242631ee", 122 | "success.border": "#79e96dff", 123 | "unreachable": "#959591ff", 124 | "unreachable.border": "#959591ff", 125 | "warning": "#e6e373ff", 126 | "warning.background": "#242631ee", 127 | "warning.border": "#e6e373ff", 128 | "players": [ 129 | { 130 | "cursor": "#bd93f9ff", 131 | "background": "#bd93f9ff", 132 | "selection": "#bd93f933" 133 | }, 134 | { 135 | "cursor": "#50fa7bff", 136 | "background": "#50fa7bff", 137 | "selection": "#50fa7b33" 138 | }, 139 | { 140 | "cursor": "#ff79c6ff", 141 | "background": "#ff79c6ff", 142 | "selection": "#ff79c633" 143 | }, 144 | { 145 | "cursor": "#f1fa8cff", 146 | "background": "#f1fa8cff", 147 | "selection": "#f1fa8c33" 148 | }, 149 | { 150 | "cursor": "#8be9fdff", 151 | "background": "#8be9fdff", 152 | "selection": "#8be9fd33" 153 | }, 154 | { 155 | "cursor": "#ffb86cff", 156 | "background": "#ffb86cff", 157 | "selection": "#ffb86c33" 158 | }, 159 | { 160 | "cursor": "#ff5555ff", 161 | "background": "#ff5555ff", 162 | "selection": "#ff555533" 163 | } 164 | ], 165 | "syntax": { 166 | "attribute": { 167 | "color": "#ff79c6ff", 168 | "font_style": null, 169 | "font_weight": null 170 | }, 171 | "boolean": { 172 | "color": "#ff79c6ff", 173 | "font_style": null, 174 | "font_weight": null 175 | }, 176 | "comment": { 177 | "color": "#6272a4ff", 178 | "font_style": null, 179 | "font_weight": null 180 | }, 181 | "comment.doc": { 182 | "color": "#ff79c6ff", 183 | "font_style": null, 184 | "font_weight": null 185 | }, 186 | "constant": { 187 | "color": "#bd93f9ff", 188 | "font_style": null, 189 | "font_weight": null 190 | }, 191 | "constructor": { 192 | "color": "#ff79c6ff", 193 | "font_style": null, 194 | "font_weight": null 195 | }, 196 | "embedded": { 197 | "color": "#f8f8f2ff", 198 | "font_style": null, 199 | "font_weight": null 200 | }, 201 | "emphasis": { 202 | "color": "#f1fa8cff", 203 | "font_style": "italic", 204 | "font_weight": null 205 | }, 206 | "emphasis.strong": { 207 | "color": "#ffb86cff", 208 | "font_style": null, 209 | "font_weight": 700 210 | }, 211 | "enum": { 212 | "color": "#bd93f9ff", 213 | "font_style": null, 214 | "font_weight": null 215 | }, 216 | "function": { 217 | "color": "#50fa7bff", 218 | "font_style": null, 219 | "font_weight": null 220 | }, 221 | "hint": { 222 | "color": "#bd93f9ff", 223 | "font_style": null, 224 | "font_weight": 700 225 | }, 226 | "keyword": { 227 | "color": "#ff79c6ff", 228 | "font_style": null, 229 | "font_weight": null 230 | }, 231 | "label": { 232 | "color": "#f8f8f2ff", 233 | "font_style": null, 234 | "font_weight": null 235 | }, 236 | "link_text": { 237 | "color": "#ff79c6ff", 238 | "font_style": "normal", 239 | "font_weight": null 240 | }, 241 | "link_uri": { 242 | "color": "#8be9fdff", 243 | "font_style": null, 244 | "font_weight": null 245 | }, 246 | "number": { 247 | "color": "#bd93f9ff", 248 | "font_style": null, 249 | "font_weight": null 250 | }, 251 | "operator": { 252 | "color": "#ff79c6ff", 253 | "font_style": null, 254 | "font_weight": null 255 | }, 256 | "predictive": { 257 | "color": "#c6c6c2ff", 258 | "font_style": "italic", 259 | "font_weight": null 260 | }, 261 | "preproc": { 262 | "color": "#6272a4ff", 263 | "font_style": null, 264 | "font_weight": null 265 | }, 266 | "primary": { 267 | "color": "#f8f8f2ff", 268 | "font_style": null, 269 | "font_weight": null 270 | }, 271 | "property": { 272 | "color": "#8be9fdff", 273 | "font_style": null, 274 | "font_weight": null 275 | }, 276 | "punctuation": { 277 | "color": "#ff79c6ff", 278 | "font_style": null, 279 | "font_weight": null 280 | }, 281 | "punctuation.bracket": { 282 | "color": "#f8f8f2ff", 283 | "font_style": null, 284 | "font_weight": null 285 | }, 286 | "punctuation.delimiter": { 287 | "color": "#ff79c6ff", 288 | "font_style": null, 289 | "font_weight": null 290 | }, 291 | "punctuation.list_marker": { 292 | "color": "#8be9fdff", 293 | "font_style": null, 294 | "font_weight": null 295 | }, 296 | "punctuation.special": { 297 | "color": "#ff79c6ff", 298 | "font_style": null, 299 | "font_weight": null 300 | }, 301 | "string": { 302 | "color": "#f1fa8cff", 303 | "font_style": null, 304 | "font_weight": null 305 | }, 306 | "string.escape": { 307 | "color": "#ff79c6ff", 308 | "font_style": null, 309 | "font_weight": null 310 | }, 311 | "string.regex": { 312 | "color": "#ff5555ff", 313 | "font_style": null, 314 | "font_weight": null 315 | }, 316 | "string.special": { 317 | "color": "#ff79c6ff", 318 | "font_style": null, 319 | "font_weight": null 320 | }, 321 | "string.special.symbol": { 322 | "color": "#bd93f9ff", 323 | "font_style": null, 324 | "font_weight": null 325 | }, 326 | "tag": { 327 | "color": "#ff79c6ff", 328 | "font_style": null, 329 | "font_weight": null 330 | }, 331 | "text.literal": { 332 | "color": "#50fa7bff", 333 | "font_style": null, 334 | "font_weight": null 335 | }, 336 | "title": { 337 | "color": "#bd93f9ff", 338 | "font_style": null, 339 | "font_weight": 600 340 | }, 341 | "type": { 342 | "color": "#8be9fdff", 343 | "font_style": null, 344 | "font_weight": null 345 | }, 346 | "type.interface": { 347 | "color": "#8be9fdff", 348 | "font_style": "italic", 349 | "font_weight": null 350 | }, 351 | "type.super": { 352 | "color": "#8be9fdff", 353 | "font_style": "italic", 354 | "font_weight": null 355 | }, 356 | "variable": { 357 | "color": "#f8f8f2ff", 358 | "font_style": null, 359 | "font_weight": null 360 | }, 361 | "variable.member": { 362 | "color": "#f8f8f2ff", 363 | "font_style": null, 364 | "font_weight": null 365 | }, 366 | "variable.parameter": { 367 | "color": "#ffb86cff", 368 | "font_style": "italic", 369 | "font_weight": null 370 | }, 371 | "variable.special": { 372 | "color": "#bd93f9ff", 373 | "font_style": "italic", 374 | "font_weight": null 375 | }, 376 | "variant": { 377 | "color": "#bd93f9ff", 378 | "font_style": null, 379 | "font_weight": null 380 | } 381 | }, 382 | "terminal.background": "#14151bff", 383 | "terminal.foreground": "#f8f8f2ff", 384 | "terminal.bright_foreground": "#f9f9f5ff", 385 | "terminal.dim_foreground": "#c6c6c2ff", 386 | "terminal.ansi.background": "#14151bff", 387 | "terminal.ansi.black": "#21222cff", 388 | "terminal.ansi.bright_black": "#919cbfff", 389 | "terminal.ansi.dim_black": "#1a1b23ff", 390 | "terminal.ansi.red": "#ff5555ff", 391 | "terminal.ansi.bright_red": "#FF6E6Eff", 392 | "terminal.ansi.dim_red": "#cc4444ff", 393 | "terminal.ansi.green": "#50fa7bff", 394 | "terminal.ansi.bright_green": "#69FF94ff", 395 | "terminal.ansi.dim_green": "#40c862ff", 396 | "terminal.ansi.yellow": "#f1fa8cff", 397 | "terminal.ansi.bright_yellow": "#FFFFA5ff", 398 | "terminal.ansi.dim_yellow": "#c1c870ff", 399 | "terminal.ansi.blue": "#9580ffff", 400 | "terminal.ansi.bright_blue": "#D6ACFFff", 401 | "terminal.ansi.dim_blue": "#7766ccff", 402 | "terminal.ansi.magenta": "#ff79c6ff", 403 | "terminal.ansi.bright_magenta": "#FF92DFff", 404 | "terminal.ansi.dim_magenta": "#cc619eff", 405 | "terminal.ansi.cyan": "#8be9fdff", 406 | "terminal.ansi.bright_cyan": "#A4FFFFff", 407 | "terminal.ansi.dim_cyan": "#6fbacaff", 408 | "terminal.ansi.white": "#f8f8f2ff", 409 | "terminal.ansi.bright_white": "ffffffff", 410 | "terminal.ansi.dim_white": "#c6c6c2ff", 411 | "vim.normal.background": "#8be9fdff", 412 | "vim.insert.background": "#50fa7bff", 413 | "vim.replace.background": "#ff5555ff", 414 | "vim.visual.background": "#bd93f9ff", 415 | "vim.visual_line.background": "#bd93f9ff", 416 | "vim.visual_block.background": "#bd93f9ff", 417 | "vim.helix_normal.background": "#8be9fdff", 418 | "vim.helix_select.background": "#50fa7bff", 419 | "vim.mode.text": "#282a36ff" 420 | } 421 | }, 422 | { 423 | "name": "Dracula Solid", 424 | "appearance": "dark", 425 | "style": { 426 | "accents": [ 427 | "#bd93f9ff", 428 | "#ff79c6ff", 429 | "#8be9fdff", 430 | "#50fa7bff", 431 | "#ffb86cff", 432 | "#f1fa8cff", 433 | "#ff5555ff" 434 | ], 435 | "background.appearance": "opaque", 436 | "border": "#3c324bff", 437 | "border.variant": "#504364ff", 438 | "border.focused": "#C9A8F9FF", 439 | "border.selected": "#d4b9faff", 440 | "border.transparent": "#282a36ff", 441 | "border.disabled": "#6272a4ff", 442 | "elevated_surface.background": "#1e1925ff", 443 | "surface.background": "#242631ff", 444 | "background": "#282a36ff", 445 | "element.background": "#1c1d26ff", 446 | "element.hover": "#504364ff", 447 | "element.active": "#796595ff", 448 | "element.selected": "#65547dff", 449 | "element.disabled": "#e9dbfdff", 450 | "drop_target.background": "#504364ff", 451 | "ghost_element.background": "#22222211", 452 | "ghost_element.hover": "#463b57ff", 453 | "ghost_element.active": "#65547dff", 454 | "ghost_element.selected": "#322a3eff", 455 | "ghost_element.disabled": "#ff5555ff", 456 | "text": "#f8f8f2ff", 457 | "text.muted": "#a186c7ff", 458 | "text.placeholder": "#a186c7ff", 459 | "text.disabled": "#65547dff", 460 | "text.accent": "#C9A8F9FF", 461 | "icon": "#f8f8f2ff", 462 | "icon.muted": "#aeaea9ff", 463 | "icon.disabled": "#636361ff", 464 | "icon.placeholder": "#7c7c79ff", 465 | "icon.accent": "#C9A8F9FF", 466 | "status_bar.background": "#141119ff", 467 | "title_bar.background": "#141119ff", 468 | "title_bar.inactive_background": "#0a080cff", 469 | "toolbar.background": "#282a36ff", 470 | "tab_bar.background": "#282232ff", 471 | "tab.inactive_background": "#1c1d26ff", 472 | "tab.active_background": "#282a36ff", 473 | "search.match_background": "#287d3eff", 474 | "panel.background": "#0a080cff", 475 | "panel.focused_border": "#C9A8F9FF", 476 | "panel.indent_guide": "#323230ff", 477 | "panel.indent_guide_active": "#5f4a7dff", 478 | "panel.indent_guide_hover": "#423357ff", 479 | "pane.focused_border": "#C9A8F9FF", 480 | "pane_group.border": "#3c324bff", 481 | "scrollbar.thumb.background": "#C9A8F977", 482 | "scrollbar.thumb.hover_background": "#d4b9faff", 483 | "scrollbar.thumb.border": "#282a36ff", 484 | "scrollbar.track.background": "#141119ff", 485 | "scrollbar.track.border": "#584a6eff", 486 | "editor.foreground": "#f8f8f2ff", 487 | "editor.background": "#282a36ff", 488 | "editor.gutter.background": "#282a36ff", 489 | "editor.subheader.background": "#1e1925ff", 490 | "editor.active_line.background": "#44475aff", 491 | "editor.highlighted_line.background": "#44475aff", 492 | "editor.line_number": "#7c7c79ff", 493 | "editor.active_line_number": "#C9A8F9FF", 494 | "editor.invisible": "#4a4a49ff", 495 | "editor.wrap_guide": "#454544ff", 496 | "editor.active_wrap_guide": "#7b60a2ff", 497 | "editor.document_highlight.read_background": "#504364ff", 498 | "editor.document_highlight.write_background": "#44475aff", 499 | "editor.document_highlight.bracket_background": "#423357ff", 500 | "editor.indent_guide": "#323230ff", 501 | "editor.indent_guide_active": "#5f4a7dff", 502 | "link_text.hover": "#8be9fdff", 503 | "conflict": "#dec184ff", 504 | "conflict.background": "#dec18433", 505 | "conflict.border": "#5d4c2fff", 506 | "created": "#73fb95ff", 507 | "created.background": "#222e1dff", 508 | "created.border": "#38482fff", 509 | "deleted": "#ff5555ff", 510 | "deleted.background": "#301b1bff", 511 | "deleted.border": "#4c2b2cff", 512 | "error": "#e67373ff", 513 | "error.background": "#242631ff", 514 | "error.border": "#e67373ff", 515 | "hidden": "#414754ff", 516 | "hidden.background": "#242631ff", 517 | "hidden.border": "#414754ff", 518 | "hint": "#6272a4ff", 519 | "hint.background": "#242631ff", 520 | "hint.border": "#6272a4ff", 521 | "ignored": "#65547dff", 522 | "ignored.background": "#3c324bff", 523 | "ignored.border": "#65547dff", 524 | "info": "#73ece5ff", 525 | "info.background": "#242631ff", 526 | "info.border": "#73ece5ff", 527 | "modified": "#a2edfdff", 528 | "modified.background": "#242631ff", 529 | "modified.border": "#a2edfdff", 530 | "predictive": "#c6c6c2ff", 531 | "predictive.background": "#242631ff", 532 | "predictive.border": "#c6c6c2ff", 533 | "renamed": "#8be9fdff", 534 | "renamed.background": "#242631ff", 535 | "renamed.border": "#8be9fdff", 536 | "success": "#79e96dff", 537 | "success.background": "#242631ff", 538 | "success.border": "#79e96dff", 539 | "unreachable": "#959591ff", 540 | "unreachable.border": "#959591ff", 541 | "warning": "#e6e373ff", 542 | "warning.background": "#242631ff", 543 | "warning.border": "#e6e373ff", 544 | "players": [ 545 | { 546 | "cursor": "#bd93f9ff", 547 | "background": "#bd93f9ff", 548 | "selection": "#bd93f933" 549 | }, 550 | { 551 | "cursor": "#50fa7bff", 552 | "background": "#50fa7bff", 553 | "selection": "#50fa7b33" 554 | }, 555 | { 556 | "cursor": "#ff79c6ff", 557 | "background": "#ff79c6ff", 558 | "selection": "#ff79c633" 559 | }, 560 | { 561 | "cursor": "#f1fa8cff", 562 | "background": "#f1fa8cff", 563 | "selection": "#f1fa8c33" 564 | }, 565 | { 566 | "cursor": "#8be9fdff", 567 | "background": "#8be9fdff", 568 | "selection": "#8be9fd33" 569 | }, 570 | { 571 | "cursor": "#ffb86cff", 572 | "background": "#ffb86cff", 573 | "selection": "#ffb86c33" 574 | }, 575 | { 576 | "cursor": "#ff5555ff", 577 | "background": "#ff5555ff", 578 | "selection": "#ff555533" 579 | } 580 | ], 581 | "syntax": { 582 | "attribute": { 583 | "color": "#ff79c6ff", 584 | "font_style": null, 585 | "font_weight": null 586 | }, 587 | "boolean": { 588 | "color": "#ff79c6ff", 589 | "font_style": null, 590 | "font_weight": null 591 | }, 592 | "comment": { 593 | "color": "#6272a4ff", 594 | "font_style": null, 595 | "font_weight": null 596 | }, 597 | "comment.doc": { 598 | "color": "#ff79c6ff", 599 | "font_style": null, 600 | "font_weight": null 601 | }, 602 | "constant": { 603 | "color": "#bd93f9ff", 604 | "font_style": null, 605 | "font_weight": null 606 | }, 607 | "constructor": { 608 | "color": "#ff79c6ff", 609 | "font_style": null, 610 | "font_weight": null 611 | }, 612 | "embedded": { 613 | "color": "#f8f8f2ff", 614 | "font_style": null, 615 | "font_weight": null 616 | }, 617 | "emphasis": { 618 | "color": "#f1fa8cff", 619 | "font_style": "italic", 620 | "font_weight": null 621 | }, 622 | "emphasis.strong": { 623 | "color": "#ffb86cff", 624 | "font_style": null, 625 | "font_weight": 700 626 | }, 627 | "enum": { 628 | "color": "#bd93f9ff", 629 | "font_style": null, 630 | "font_weight": null 631 | }, 632 | "function": { 633 | "color": "#50fa7bff", 634 | "font_style": null, 635 | "font_weight": null 636 | }, 637 | "hint": { 638 | "color": "#bd93f9ff", 639 | "font_style": null, 640 | "font_weight": 700 641 | }, 642 | "keyword": { 643 | "color": "#ff79c6ff", 644 | "font_style": null, 645 | "font_weight": null 646 | }, 647 | "label": { 648 | "color": "#f8f8f2ff", 649 | "font_style": null, 650 | "font_weight": null 651 | }, 652 | "link_text": { 653 | "color": "#ff79c6ff", 654 | "font_style": "normal", 655 | "font_weight": null 656 | }, 657 | "link_uri": { 658 | "color": "#8be9fdff", 659 | "font_style": null, 660 | "font_weight": null 661 | }, 662 | "number": { 663 | "color": "#bd93f9ff", 664 | "font_style": null, 665 | "font_weight": null 666 | }, 667 | "operator": { 668 | "color": "#ff79c6ff", 669 | "font_style": null, 670 | "font_weight": null 671 | }, 672 | "predictive": { 673 | "color": "#c6c6c2ff", 674 | "font_style": "italic", 675 | "font_weight": null 676 | }, 677 | "preproc": { 678 | "color": "#6272a4ff", 679 | "font_style": null, 680 | "font_weight": null 681 | }, 682 | "primary": { 683 | "color": "#f8f8f2ff", 684 | "font_style": null, 685 | "font_weight": null 686 | }, 687 | "property": { 688 | "color": "#8be9fdff", 689 | "font_style": null, 690 | "font_weight": null 691 | }, 692 | "punctuation": { 693 | "color": "#ff79c6ff", 694 | "font_style": null, 695 | "font_weight": null 696 | }, 697 | "punctuation.bracket": { 698 | "color": "#f8f8f2ff", 699 | "font_style": null, 700 | "font_weight": null 701 | }, 702 | "punctuation.delimiter": { 703 | "color": "#ff79c6ff", 704 | "font_style": null, 705 | "font_weight": null 706 | }, 707 | "punctuation.list_marker": { 708 | "color": "#8be9fdff", 709 | "font_style": null, 710 | "font_weight": null 711 | }, 712 | "punctuation.special": { 713 | "color": "#ff79c6ff", 714 | "font_style": null, 715 | "font_weight": null 716 | }, 717 | "string": { 718 | "color": "#f1fa8cff", 719 | "font_style": null, 720 | "font_weight": null 721 | }, 722 | "string.escape": { 723 | "color": "#ff79c6ff", 724 | "font_style": null, 725 | "font_weight": null 726 | }, 727 | "string.regex": { 728 | "color": "#ff5555ff", 729 | "font_style": null, 730 | "font_weight": null 731 | }, 732 | "string.special": { 733 | "color": "#ff79c6ff", 734 | "font_style": null, 735 | "font_weight": null 736 | }, 737 | "string.special.symbol": { 738 | "color": "#bd93f9ff", 739 | "font_style": null, 740 | "font_weight": null 741 | }, 742 | "tag": { 743 | "color": "#ff79c6ff", 744 | "font_style": null, 745 | "font_weight": null 746 | }, 747 | "text.literal": { 748 | "color": "#50fa7bff", 749 | "font_style": null, 750 | "font_weight": null 751 | }, 752 | "title": { 753 | "color": "#bd93f9ff", 754 | "font_style": null, 755 | "font_weight": 600 756 | }, 757 | "type": { 758 | "color": "#8be9fdff", 759 | "font_style": null, 760 | "font_weight": null 761 | }, 762 | "type.interface": { 763 | "color": "#8be9fdff", 764 | "font_style": "italic", 765 | "font_weight": null 766 | }, 767 | "type.super": { 768 | "color": "#8be9fdff", 769 | "font_style": "italic", 770 | "font_weight": null 771 | }, 772 | "variable": { 773 | "color": "#f8f8f2ff", 774 | "font_style": null, 775 | "font_weight": null 776 | }, 777 | "variable.member": { 778 | "color": "#f8f8f2ff", 779 | "font_style": null, 780 | "font_weight": null 781 | }, 782 | "variable.parameter": { 783 | "color": "#ffb86cff", 784 | "font_style": "italic", 785 | "font_weight": null 786 | }, 787 | "variable.special": { 788 | "color": "#bd93f9ff", 789 | "font_style": "italic", 790 | "font_weight": null 791 | }, 792 | "variant": { 793 | "color": "#bd93f9ff", 794 | "font_style": null, 795 | "font_weight": null 796 | } 797 | }, 798 | "terminal.background": "#14151bff", 799 | "terminal.foreground": "#f8f8f2ff", 800 | "terminal.bright_foreground": "#f9f9f5ff", 801 | "terminal.dim_foreground": "#c6c6c2ff", 802 | "terminal.ansi.background": "#14151bff", 803 | "terminal.ansi.black": "#21222cff", 804 | "terminal.ansi.bright_black": "#919cbfff", 805 | "terminal.ansi.dim_black": "#1a1b23ff", 806 | "terminal.ansi.red": "#ff5555ff", 807 | "terminal.ansi.bright_red": "#FF6E6Eff", 808 | "terminal.ansi.dim_red": "#cc4444ff", 809 | "terminal.ansi.green": "#50fa7bff", 810 | "terminal.ansi.bright_green": "#69FF94ff", 811 | "terminal.ansi.dim_green": "#40c862ff", 812 | "terminal.ansi.yellow": "#f1fa8cff", 813 | "terminal.ansi.bright_yellow": "#FFFFA5ff", 814 | "terminal.ansi.dim_yellow": "#c1c870ff", 815 | "terminal.ansi.blue": "#9580ffff", 816 | "terminal.ansi.bright_blue": "#D6ACFFff", 817 | "terminal.ansi.dim_blue": "#7766ccff", 818 | "terminal.ansi.magenta": "#ff79c6ff", 819 | "terminal.ansi.bright_magenta": "#FF92DFff", 820 | "terminal.ansi.dim_magenta": "#cc619eff", 821 | "terminal.ansi.cyan": "#8be9fdff", 822 | "terminal.ansi.bright_cyan": "#A4FFFFff", 823 | "terminal.ansi.dim_cyan": "#6fbacaff", 824 | "terminal.ansi.white": "#f8f8f2ff", 825 | "terminal.ansi.bright_white": "ffffffff", 826 | "terminal.ansi.dim_white": "#c6c6c2ff" 827 | } 828 | }, 829 | { 830 | "name": "Dracula Light (Alucard)", 831 | "appearance": "light", 832 | "style": { 833 | "accents": [ 834 | "#644AC9", 835 | "#A3144D", 836 | "#036A96", 837 | "#14710A", 838 | "#A34D14", 839 | "#846E15", 840 | "#CB3A2A" 841 | ], 842 | "background.appearance": "opaque", 843 | "border": "#d1c9efff", 844 | "border.variant": "#e4e4e4ff", 845 | "border.focused": "#F5F5F577", 846 | "border.selected": "#F5F5F5bb", 847 | "border.transparent": null, 848 | "border.disabled": null, 849 | "elevated_surface.background": "#f6f6f6ff", 850 | "surface.background": "#ddddddee", 851 | "background": "#F5F5F5", 852 | "element.background": "#dce0e8ff", 853 | "element.hover": "#ccd0daff", 854 | "element.active": "#d6d9e1ff", 855 | "element.selected": "#CFCFDE", 856 | "element.disabled": "#fbfbfbff", 857 | "drop_target.background": "#ACB0BE42", 858 | "ghost_element.background": null, 859 | "ghost_element.hover": "#ccd0daff", 860 | "ghost_element.active": "#d6d9e1ff", 861 | "ghost_element.selected": "#dce0e8ff", 862 | "ghost_element.disabled": "#CB3A2A", 863 | "text": "#1F1F1F", 864 | "text.muted": "#353535ff", 865 | "text.placeholder": "#1F1F1F80", 866 | "text.disabled": "#1F1F1F70", 867 | "text.accent": "#836ed4ff", 868 | "icon": "#1F1F1F", 869 | "icon.muted": "#1F1F1F70", 870 | "icon.disabled": "#1F1F1F40", 871 | "icon.placeholder": "#1F1F1F50", 872 | "icon.accent": "#836ed4ff", 873 | "status_bar.background": "#FEFEFEff", 874 | "title_bar.background": "#FEFEFEff", 875 | "title_bar.inactive_background": "#F0F0F0ff", 876 | "toolbar.background": "#F5F5F570", 877 | "tab_bar.background": "#D5DAE4ff", 878 | "tab.inactive_background": "#EDEFF4ff", 879 | "tab.active_background": "#F5F5F5", 880 | "search.match_background": "#14710A30", 881 | "panel.background": "#EDEFF4ff", 882 | "panel.focused_border": "#644AC9", 883 | "panel.indent_guide": "#1F1F1F30", 884 | "panel.indent_guide_active": "#644AC960", 885 | "panel.indent_guide_hover": "#644AC945", 886 | "pane.focused_border": "#644AC9", 887 | "pane_group.border": "#d1c9efff", 888 | "scrollbar.thumb.background": "#644AC977", 889 | "scrollbar.thumb.hover_background": "#644AC9", 890 | "scrollbar.thumb.border": null, 891 | "scrollbar.track.background": "#F5F5F5", 892 | "scrollbar.track.border": "#d1c9efff", 893 | "editor.foreground": "#1F1F1F", 894 | "editor.background": "#F5F5F5", 895 | "editor.gutter.background": "#F5F5F5", 896 | "editor.subheader.background": "#d0d0d0ff", 897 | "editor.active_line.background": "acb0be30", 898 | "editor.highlighted_line.background": "#CFCFDE", 899 | "editor.line_number": "#1F1F1F80", 900 | "editor.active_line_number": "#1F1F1F", 901 | "editor.invisible": "#1F1F1F40", 902 | "editor.wrap_guide": "#1F1F1F28", 903 | "editor.active_wrap_guide": "#b2a5e4ff", 904 | "editor.document_highlight.read_background": "#036A9630", 905 | "editor.document_highlight.write_background": "#CFCFDE", 906 | "editor.document_highlight.bracket_background": "#644AC925", 907 | "editor.indent_guide": "#1F1F1F30", 908 | "editor.indent_guide_active": "#644AC960", 909 | "link_text.hover": "#036A96", 910 | "conflict": "#dec184ff", 911 | "conflict.background": "#dec18433", 912 | "conflict.border": "#5d4c2fff", 913 | "created": "#5b9c54ff", 914 | "created.background": "#222e1dff", 915 | "created.border": "#38482fff", 916 | "deleted": "#db756aff", 917 | "deleted.background": "#ddddddee", 918 | "deleted.border": "#db756aff", 919 | "error": "#b83233ff", 920 | "error.background": "#ddddddee", 921 | "error.border": "#993a27ff", 922 | "hidden": "#414754ff", 923 | "hidden.background": "#ddddddee", 924 | "hidden.border": "#414754ff", 925 | "hint": "#635D97", 926 | "hint.background": "#f0f0f0ee", 927 | "hint.border": "#635D97", 928 | "ignored": "#1F1F1F70", 929 | "ignored.background": "#4a4a4aff", 930 | "ignored.border": "#1F1F1F50", 931 | "info": "#0067a1ff", 932 | "info.background": "#f0f0f0ee", 933 | "info.border": "#0067a1ff", 934 | "modified": "#4f97b6ff", 935 | "modified.background": "#f0f0f0ee", 936 | "modified.border": "#4f97b6ff", 937 | "predictive": "#575757ff", 938 | "predictive.background": "#f0f0f0ee", 939 | "predictive.border": "#575757ff", 940 | "renamed": "#036A96", 941 | "renamed.background": "#f0f0f0ee", 942 | "renamed.border": "#036A96", 943 | "success": "#1b7108ff", 944 | "success.background": "#f0f0f0ee", 945 | "success.border": "#1b7108ff", 946 | "unreachable": "#575757ff", 947 | "unreachable.background": "#f0f0f0ee", 948 | "unreachable.border": "#575757ff", 949 | "warning": "#ccb517ff", 950 | "warning.background": "#f0f0f0ee", 951 | "warning.border": "#984f00", 952 | "players": [ 953 | { 954 | "cursor": "#644AC9", 955 | "background": "#644AC9", 956 | "selection": "#644AC933" 957 | }, 958 | { 959 | "cursor": "#14710A", 960 | "background": "#14710A", 961 | "selection": "#14710A33" 962 | }, 963 | { 964 | "cursor": "#A3144D", 965 | "background": "#A3144D", 966 | "selection": "#A3144D33" 967 | }, 968 | { 969 | "cursor": "#846E15", 970 | "background": "#846E15", 971 | "selection": "#846E1533" 972 | }, 973 | { 974 | "cursor": "#036A96", 975 | "background": "#036A96", 976 | "selection": "#036A9633" 977 | }, 978 | { 979 | "cursor": "#A34D14", 980 | "background": "#A34D14", 981 | "selection": "#A34D1433" 982 | }, 983 | { 984 | "cursor": "#CB3A2A", 985 | "background": "#CB3A2A", 986 | "selection": "#CB3A2A33" 987 | } 988 | ], 989 | "syntax": { 990 | "attribute": { 991 | "color": "#A3144D", 992 | "font_style": null, 993 | "font_weight": null 994 | }, 995 | "boolean": { 996 | "color": "#A3144D", 997 | "font_style": null, 998 | "font_weight": null 999 | }, 1000 | "comment": { 1001 | "color": "#635D97", 1002 | "font_style": null, 1003 | "font_weight": null 1004 | }, 1005 | "comment.doc": { 1006 | "color": "#A3144D", 1007 | "font_style": null, 1008 | "font_weight": null 1009 | }, 1010 | "constant": { 1011 | "color": "#644AC9", 1012 | "font_style": null, 1013 | "font_weight": null 1014 | }, 1015 | "constructor": { 1016 | "color": "#A3144D", 1017 | "font_style": null, 1018 | "font_weight": null 1019 | }, 1020 | "embedded": { 1021 | "color": "#1F1F1F", 1022 | "font_style": null, 1023 | "font_weight": null 1024 | }, 1025 | "emphasis": { 1026 | "color": "#846E15", 1027 | "font_style": "italic", 1028 | "font_weight": null 1029 | }, 1030 | "emphasis.strong": { 1031 | "color": "#A34D14", 1032 | "font_style": null, 1033 | "font_weight": 700 1034 | }, 1035 | "enum": { 1036 | "color": "#644AC9", 1037 | "font_style": null, 1038 | "font_weight": null 1039 | }, 1040 | "function": { 1041 | "color": "#14710A", 1042 | "font_style": null, 1043 | "font_weight": null 1044 | }, 1045 | "hint": { 1046 | "color": "#644AC9", 1047 | "font_style": null, 1048 | "font_weight": 700 1049 | }, 1050 | "keyword": { 1051 | "color": "#A3144D", 1052 | "font_style": null, 1053 | "font_weight": null 1054 | }, 1055 | "label": { 1056 | "color": "#1F1F1F", 1057 | "font_style": null, 1058 | "font_weight": null 1059 | }, 1060 | "link_text": { 1061 | "color": "#A3144D", 1062 | "font_style": "normal", 1063 | "font_weight": null 1064 | }, 1065 | "link_uri": { 1066 | "color": "#036A96", 1067 | "font_style": null, 1068 | "font_weight": null 1069 | }, 1070 | "number": { 1071 | "color": "#644AC9", 1072 | "font_style": null, 1073 | "font_weight": null 1074 | }, 1075 | "operator": { 1076 | "color": "#A3144D", 1077 | "font_style": null, 1078 | "font_weight": null 1079 | }, 1080 | "predictive": { 1081 | "color": "#191919ff", 1082 | "font_style": "italic", 1083 | "font_weight": null 1084 | }, 1085 | "preproc": { 1086 | "color": "#635D97", 1087 | "font_style": null, 1088 | "font_weight": null 1089 | }, 1090 | "primary": { 1091 | "color": "#1F1F1F", 1092 | "font_style": null, 1093 | "font_weight": null 1094 | }, 1095 | "property": { 1096 | "color": "#036A96", 1097 | "font_style": null, 1098 | "font_weight": null 1099 | }, 1100 | "punctuation": { 1101 | "color": "#A3144D", 1102 | "font_style": null, 1103 | "font_weight": null 1104 | }, 1105 | "punctuation.bracket": { 1106 | "color": "#1F1F1F", 1107 | "font_style": null, 1108 | "font_weight": null 1109 | }, 1110 | "punctuation.delimiter": { 1111 | "color": "#A3144D", 1112 | "font_style": null, 1113 | "font_weight": null 1114 | }, 1115 | "punctuation.list_marker": { 1116 | "color": "#036A96", 1117 | "font_style": null, 1118 | "font_weight": null 1119 | }, 1120 | "punctuation.special": { 1121 | "color": "#A3144D", 1122 | "font_style": null, 1123 | "font_weight": null 1124 | }, 1125 | "string": { 1126 | "color": "#846E15", 1127 | "font_style": null, 1128 | "font_weight": null 1129 | }, 1130 | "string.escape": { 1131 | "color": "#A3144D", 1132 | "font_style": null, 1133 | "font_weight": null 1134 | }, 1135 | "string.regex": { 1136 | "color": "#CB3A2A", 1137 | "font_style": null, 1138 | "font_weight": null 1139 | }, 1140 | "string.special": { 1141 | "color": "#A3144D", 1142 | "font_style": null, 1143 | "font_weight": null 1144 | }, 1145 | "string.special.symbol": { 1146 | "color": "#644AC9", 1147 | "font_style": null, 1148 | "font_weight": null 1149 | }, 1150 | "tag": { 1151 | "color": "#A3144D", 1152 | "font_style": null, 1153 | "font_weight": null 1154 | }, 1155 | "text.literal": { 1156 | "color": "#14710A", 1157 | "font_style": null, 1158 | "font_weight": null 1159 | }, 1160 | "title": { 1161 | "color": "#644AC9", 1162 | "font_style": null, 1163 | "font_weight": 600 1164 | }, 1165 | "type": { 1166 | "color": "#036A96", 1167 | "font_style": null, 1168 | "font_weight": null 1169 | }, 1170 | "type.interface": { 1171 | "color": "#036A96", 1172 | "font_style": "italic", 1173 | "font_weight": null 1174 | }, 1175 | "type.super": { 1176 | "color": "#036A96", 1177 | "font_style": "italic", 1178 | "font_weight": null 1179 | }, 1180 | "variable": { 1181 | "color": "#1F1F1F", 1182 | "font_style": null, 1183 | "font_weight": null 1184 | }, 1185 | "variable.member": { 1186 | "color": "#1F1F1F", 1187 | "font_style": null, 1188 | "font_weight": null 1189 | }, 1190 | "variable.parameter": { 1191 | "color": "#A34D14", 1192 | "font_style": "italic", 1193 | "font_weight": null 1194 | }, 1195 | "variable.special": { 1196 | "color": "#644AC9", 1197 | "font_style": "italic", 1198 | "font_weight": null 1199 | }, 1200 | "variant": { 1201 | "color": "#644AC9", 1202 | "font_style": null, 1203 | "font_weight": null 1204 | } 1205 | }, 1206 | "terminal.background": "#f3f3f3ff", 1207 | "terminal.foreground": "#1F1F1F", 1208 | "terminal.bright_foreground": "#1D1D1D", 1209 | "terminal.dim_foreground": "#655C95", 1210 | "terminal.ansi.background": "#f3f3f3ff", 1211 | "terminal.ansi.black": "#F5F5F5", 1212 | "terminal.ansi.bright_black": "#928eb6ff", 1213 | "terminal.ansi.dim_black": "#1D1D1D", 1214 | "terminal.ansi.red": "#CB3A2A", 1215 | "terminal.ansi.bright_red": "#D74C3D", 1216 | "terminal.ansi.dim_red": "#D74B3B", 1217 | "terminal.ansi.green": "#14710A", 1218 | "terminal.ansi.bright_green": "#198D0C", 1219 | "terminal.ansi.dim_green": "#D74B3B", 1220 | "terminal.ansi.yellow": "#846E15", 1221 | "terminal.ansi.bright_yellow": "#9E841A", 1222 | "terminal.ansi.dim_yellow": "#D74B3B", 1223 | "terminal.ansi.blue": "#644AC9", 1224 | "terminal.ansi.bright_blue": "#7862D0", 1225 | "terminal.ansi.dim_blue": "#D74B3B", 1226 | "terminal.ansi.magenta": "#A3144D", 1227 | "terminal.ansi.bright_magenta": "#BF185A", 1228 | "terminal.ansi.dim_magenta": "#D74B3B", 1229 | "terminal.ansi.cyan": "#036A96", 1230 | "terminal.ansi.bright_cyan": "#047FB4", 1231 | "terminal.ansi.dim_cyan": "#D74B3B", 1232 | "terminal.ansi.white": "#1F1F1F", 1233 | "terminal.ansi.bright_white": "#2C2B31", 1234 | "terminal.ansi.dim_white": "#D74B3B", 1235 | "vim.normal.background": "#036A96", 1236 | "vim.insert.background": "#14710A", 1237 | "vim.replace.background": "#CB3A2A", 1238 | "vim.visual.background": "#644AC9", 1239 | "vim.visual_line.background": "#644AC9", 1240 | "vim.visual_block.background": "#644AC9", 1241 | "vim.helix_normal.background": "#036A96", 1242 | "vim.helix_select.background": "#14710A", 1243 | "vim.mode.text": "#F5F5F5" 1244 | } 1245 | } 1246 | ] 1247 | } 1248 | --------------------------------------------------------------------------------