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