├── .github └── assets │ └── preview.png ├── README.md ├── extension.toml ├── legacy_extension.json ├── LICENSE └── themes └── vesper-dark.json /.github/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdsqqq/vesper-zed/HEAD/.github/assets/preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Vesper Preview](./.github/assets/preview.png) 2 | 3 | # Vesper 4 | 5 | Peppermint and orange flavored dark theme for Zed. 6 | 7 | Port of the [Vesper VSCode theme](https://github.com/raunofreiberg/vesper/tree/main) For Zed. 8 | -------------------------------------------------------------------------------- /extension.toml: -------------------------------------------------------------------------------- 1 | id = "vesper" 2 | name = "Vesper" 3 | version = "0.1.1" 4 | schema_version = 1 5 | authors = ["bdsqqq "] 6 | description = "Peppermint and orange flavored dark theme." 7 | repository = "https://github.com/bdsqqq/vesper-zed" 8 | -------------------------------------------------------------------------------- /legacy_extension.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vesper", 3 | "description": "Peppermint and orange flavored dark theme.", 4 | "version": "0.0.2", 5 | "authors": ["bdsqqq "], 6 | "repository": "https://github.com/bdsqqq/vesper-zed", 7 | "themes": { 8 | "Vesper": "themes/vesper-dark.json" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Igor Bedesqui 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 | -------------------------------------------------------------------------------- /themes/vesper-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://zed.dev/schema/themes/v0.1.0.json", 3 | "name": "Vesper", 4 | "author": "Rauno Freiberg", 5 | "themes": [ 6 | { 7 | "name": "Vesper", 8 | "appearance": "dark", 9 | "style": { 10 | "border": "#101010", 11 | "border.variant": "#101010", 12 | "border.focused": "#FFC799", 13 | "border.selected": "#FFC799", 14 | "border.transparent": null, 15 | "border.disabled": "#101010", 16 | "elevated_surface.background": "#1A1A1A", 17 | "surface.background": "#101010", 18 | "background": "#101010", 19 | "element.background": "#101010", 20 | "element.hover": "#282828", 21 | "element.active": "#282828", 22 | "element.selected": "#232323", 23 | "element.disabled": "#101010", 24 | "drop_target.background": null, 25 | "ghost_element.background": null, 26 | "ghost_element.hover": "#282828", 27 | "ghost_element.active": null, 28 | "ghost_element.selected": "#232323", 29 | "ghost_element.disabled": null, 30 | "text": "#FFFFFF", 31 | "text.muted": "#A0A0A0", 32 | "text.placeholder": "#7E7E7E", 33 | "text.disabled": "#7E7E7E", 34 | "text.accent": "#FFC799", 35 | "icon": "#FFFFFF", 36 | "icon.muted": "#A0A0A0", 37 | "icon.disabled": "#7E7E7E", 38 | "icon.placeholder": "#7E7E7E", 39 | "icon.accent": "#FFC799", 40 | "status_bar.background": "#101010", 41 | "title_bar.background": "#101010", 42 | "toolbar.background": "#101010", 43 | "tab_bar.background": "#101010", 44 | "tab.inactive_background": "#101010", 45 | "tab.active_background": "#161616", 46 | "search.match_background": "#575757", 47 | "panel.background": "#101010", 48 | "panel.focused_border": "#FFC799", 49 | "scrollbar.thumb.background": "#34343480", 50 | "scrollbar.thumb.hover_background": "#343434", 51 | "scrollbar.thumb.border": "#34343480", 52 | "scrollbar.track.background": "#101010", 53 | "scrollbar.track.border": "#101010", 54 | "editor.foreground": "#FFFFFF", 55 | "editor.background": "#101010", 56 | "editor.gutter.background": "#101010", 57 | "editor.subheader.background": "#101010", 58 | "editor.active_line.background": "#101010", 59 | "editor.highlighted_line.background": "#101010", 60 | "editor.line_number": "#505050", 61 | "editor.active_line_number": "#FFF", 62 | "editor.invisible": null, 63 | "editor.wrap_guide": null, 64 | "editor.active_wrap_guide": null, 65 | "editor.document_highlight.read_background": "#282828", 66 | "editor.document_highlight.write_background": "#282828", 67 | "terminal.background": "#101010", 68 | "terminal.foreground": "#A0A0A0", 69 | "terminal.bright_foreground": "#FFFFFF", 70 | "terminal.dim_foreground": "#7E7E7E", 71 | "terminal.ansi.black": "#101010", 72 | "terminal.ansi.bright_black": "#7E7E7E", 73 | "terminal.ansi.dim_black": null, 74 | "terminal.ansi.red": "#f5a191", 75 | "terminal.ansi.bright_red": "#ff8080", 76 | "terminal.ansi.dim_red": null, 77 | "terminal.ansi.green": "#90b99f", 78 | "terminal.ansi.bright_green": "#99FFE4", 79 | "terminal.ansi.dim_green": null, 80 | "terminal.ansi.yellow": "#e6b99d", 81 | "terminal.ansi.bright_yellow": "#FFC799", 82 | "terminal.ansi.dim_yellow": null, 83 | "terminal.ansi.blue": "#aca1cf", 84 | "terminal.ansi.bright_blue": "#b9aeda", 85 | "terminal.ansi.dim_blue": null, 86 | "terminal.ansi.magenta": "#e29eca", 87 | "terminal.ansi.bright_magenta": "#ecaad6", 88 | "terminal.ansi.dim_magenta": null, 89 | "terminal.ansi.cyan": "#ea83a5", 90 | "terminal.ansi.bright_cyan": "#f591b2", 91 | "terminal.ansi.dim_cyan": null, 92 | "terminal.ansi.white": "#A0A0A0", 93 | "terminal.ansi.bright_white": "#ffffff", 94 | "terminal.ansi.dim_white": null, 95 | "link_text.hover": "#FFCFA8", 96 | "conflict": "#FF8080ff", 97 | "conflict.background": "#FF80803d", 98 | "conflict.border": null, 99 | "created": "#99FFE4ff", 100 | "created.background": "#99FFE43d", 101 | "created.border": null, 102 | "deleted": "#FF8080ff", 103 | "deleted.background": "#FF80803d", 104 | "deleted.border": null, 105 | "error": "#FF8080ff", 106 | "error.background": "#FF80803d", 107 | "error.border": null, 108 | "hidden": null, 109 | "hidden.background": null, 110 | "hidden.border": null, 111 | "hint": "#A0A0A0", 112 | "hint.background": "#1C1C1C", 113 | "hint.border": null, 114 | "ignored": null, 115 | "ignored.background": null, 116 | "ignored.border": null, 117 | "info": "#7E7E7Eff", 118 | "info.background": "#7E7E7E3d", 119 | "info.border": "#7E7E7E3d", 120 | "modified": "#FFC799", 121 | "modified.background": null, 122 | "modified.border": null, 123 | "predictive": "#585858", 124 | "predictive.background": null, 125 | "predictive.border": null, 126 | "renamed": null, 127 | "renamed.background": null, 128 | "renamed.border": null, 129 | "success": "#99FFE4ff", 130 | "success.background": "#99FFE43d", 131 | "success.border": null, 132 | "unreachable": null, 133 | "unreachable.background": null, 134 | "unreachable.border": null, 135 | "warning": "#FFC799ff", 136 | "warning.background": "#FFC7993d", 137 | "warning.border": null, 138 | "players": [ 139 | { 140 | "cursor": "#FFC799ff", 141 | "background": "#FFC799ff", 142 | "selection": "#FFC7993d" 143 | }, 144 | { 145 | "cursor": "#99FFE4ff", 146 | "background": "#99FFE4ff", 147 | "selection": "#99FFE43d" 148 | } 149 | ], 150 | "syntax": { 151 | "attribute": { 152 | "color": "#A0A0A0", 153 | "font_style": null, 154 | "font_weight": null 155 | }, 156 | "boolean": { 157 | "color": "#FFC799", 158 | "font_style": null, 159 | "font_weight": null 160 | }, 161 | "comment": { 162 | "color": "#8b8b8b94", 163 | "font_style": null, 164 | "font_weight": null 165 | }, 166 | "comment.doc": { 167 | "color": "#8b8b8b94", 168 | "font_style": null, 169 | "font_weight": null 170 | }, 171 | "constant": { 172 | "color": "#FFC799", 173 | "font_style": null, 174 | "font_weight": null 175 | }, 176 | "constructor": { 177 | "color": "#FFC799", 178 | "font_style": null, 179 | "font_weight": null 180 | }, 181 | "emphasis": { 182 | "color": "#FFF", 183 | "font_style": "italic", 184 | "font_weight": null 185 | }, 186 | "emphasis.strong": { 187 | "color": "#FFF", 188 | "font_style": null, 189 | "font_weight": 700 190 | }, 191 | "function": { 192 | "color": "#FFC799", 193 | "font_style": null, 194 | "font_weight": null 195 | }, 196 | "keyword": { 197 | "color": "#A0A0A0", 198 | "font_style": null, 199 | "font_weight": null 200 | }, 201 | "label": { 202 | "color": "#FFC799", 203 | "font_style": null, 204 | "font_weight": null 205 | }, 206 | "link_text": { 207 | "color": "#FFF", 208 | "font_style": null, 209 | "font_weight": null 210 | }, 211 | "link_uri": { 212 | "color": "#FFF", 213 | "font_style": null, 214 | "font_weight": null 215 | }, 216 | "number": { 217 | "color": "#FFC799", 218 | "font_style": null, 219 | "font_weight": null 220 | }, 221 | "operator": { 222 | "color": "#A0A0A0", 223 | "font_style": null, 224 | "font_weight": null 225 | }, 226 | "punctuation": { 227 | "color": "#A0A0A0", 228 | "font_style": null, 229 | "font_weight": null 230 | }, 231 | "punctuation.bracket": { 232 | "color": "#A0A0A0", 233 | "font_style": null, 234 | "font_weight": null 235 | }, 236 | "punctuation.delimiter": { 237 | "color": "#A0A0A0", 238 | "font_style": null, 239 | "font_weight": null 240 | }, 241 | "punctuation.list_marker": { 242 | "color": "#A0A0A0", 243 | "font_style": null, 244 | "font_weight": null 245 | }, 246 | "punctuation.special": { 247 | "color": "#A0A0A0", 248 | "font_style": null, 249 | "font_weight": null 250 | }, 251 | "string": { 252 | "color": "#99FFE4", 253 | "font_style": null, 254 | "font_weight": null 255 | }, 256 | "string.escape": { 257 | "color": "#FFC799", 258 | "font_style": null, 259 | "font_weight": null 260 | }, 261 | "string.regex": { 262 | "color": "#99FFE4", 263 | "font_style": null, 264 | "font_weight": null 265 | }, 266 | "string.special": { 267 | "color": "#99FFE4", 268 | "font_style": null, 269 | "font_weight": null 270 | }, 271 | "string.special.symbol": { 272 | "color": "#99FFE4", 273 | "font_style": null, 274 | "font_weight": null 275 | }, 276 | "tag": { 277 | "color": "#FFC799", 278 | "font_style": null, 279 | "font_weight": null 280 | }, 281 | "text.literal": { 282 | "color": "#99FFE4", 283 | "font_style": null, 284 | "font_weight": null 285 | }, 286 | "title": { 287 | "color": "#FFC799", 288 | "font_style": null, 289 | "font_weight": null 290 | }, 291 | "type": { 292 | "color": "#FFC799", 293 | "font_style": null, 294 | "font_weight": null 295 | }, 296 | "variable": { 297 | "color": "#FFF", 298 | "font_style": null, 299 | "font_weight": null 300 | }, 301 | "variable.special": { 302 | "color": "#A0A0A0", 303 | "font_style": null, 304 | "font_weight": null 305 | } 306 | } 307 | } 308 | }, 309 | { 310 | "name": "Vesper Orange (P̶e̶p̶p̶e̶r̶m̶i̶n̶t̶)", 311 | "appearance": "dark", 312 | "style": { 313 | "border": "#101010", 314 | "border.variant": "#101010", 315 | "border.focused": "#FFC799", 316 | "border.selected": "#FFC799", 317 | "border.transparent": null, 318 | "border.disabled": "#101010", 319 | "elevated_surface.background": "#1A1A1A", 320 | "surface.background": "#101010", 321 | "background": "#101010", 322 | "element.background": "#101010", 323 | "element.hover": "#282828", 324 | "element.active": "#282828", 325 | "element.selected": "#232323", 326 | "element.disabled": "#101010", 327 | "drop_target.background": null, 328 | "ghost_element.background": null, 329 | "ghost_element.hover": "#282828", 330 | "ghost_element.active": null, 331 | "ghost_element.selected": "#232323", 332 | "ghost_element.disabled": null, 333 | "text": "#FFFFFF", 334 | "text.muted": "#A0A0A0", 335 | "text.placeholder": "#7E7E7E", 336 | "text.disabled": "#7E7E7E", 337 | "text.accent": "#FFC799", 338 | "icon": "#FFFFFF", 339 | "icon.muted": "#A0A0A0", 340 | "icon.disabled": "#7E7E7E", 341 | "icon.placeholder": "#7E7E7E", 342 | "icon.accent": "#FFC799", 343 | "status_bar.background": "#101010", 344 | "title_bar.background": "#101010", 345 | "toolbar.background": "#101010", 346 | "tab_bar.background": "#101010", 347 | "tab.inactive_background": "#101010", 348 | "tab.active_background": "#161616", 349 | "search.match_background": "#575757", 350 | "panel.background": "#101010", 351 | "panel.focused_border": "#FFC799", 352 | "scrollbar.thumb.background": "#34343480", 353 | "scrollbar.thumb.hover_background": "#343434", 354 | "scrollbar.thumb.border": "#34343480", 355 | "scrollbar.track.background": "#101010", 356 | "scrollbar.track.border": "#101010", 357 | "editor.foreground": "#FFFFFF", 358 | "editor.background": "#101010", 359 | "editor.gutter.background": "#101010", 360 | "editor.subheader.background": "#101010", 361 | "editor.active_line.background": "#101010", 362 | "editor.highlighted_line.background": "#101010", 363 | "editor.line_number": "#505050", 364 | "editor.active_line_number": "#FFF", 365 | "editor.invisible": null, 366 | "editor.wrap_guide": null, 367 | "editor.active_wrap_guide": null, 368 | "editor.document_highlight.read_background": "#282828", 369 | "editor.document_highlight.write_background": "#282828", 370 | "terminal.background": "#101010", 371 | "terminal.foreground": "#A0A0A0", 372 | "terminal.bright_foreground": "#FFFFFF", 373 | "terminal.dim_foreground": "#7E7E7E", 374 | "terminal.ansi.black": "#101010", 375 | "terminal.ansi.bright_black": "#7E7E7E", 376 | "terminal.ansi.dim_black": null, 377 | "terminal.ansi.red": "#f5a191", 378 | "terminal.ansi.bright_red": "#ff8080", 379 | "terminal.ansi.dim_red": null, 380 | "terminal.ansi.green": "#90b99f", 381 | "terminal.ansi.bright_green": "#99FFE4", 382 | "terminal.ansi.dim_green": null, 383 | "terminal.ansi.yellow": "#e6b99d", 384 | "terminal.ansi.bright_yellow": "#FFC799", 385 | "terminal.ansi.dim_yellow": null, 386 | "terminal.ansi.blue": "#aca1cf", 387 | "terminal.ansi.bright_blue": "#b9aeda", 388 | "terminal.ansi.dim_blue": null, 389 | "terminal.ansi.magenta": "#e29eca", 390 | "terminal.ansi.bright_magenta": "#ecaad6", 391 | "terminal.ansi.dim_magenta": null, 392 | "terminal.ansi.cyan": "#ea83a5", 393 | "terminal.ansi.bright_cyan": "#f591b2", 394 | "terminal.ansi.dim_cyan": null, 395 | "terminal.ansi.white": "#A0A0A0", 396 | "terminal.ansi.bright_white": "#ffffff", 397 | "terminal.ansi.dim_white": null, 398 | "link_text.hover": "#FFCFA8", 399 | "conflict": "#FF8080ff", 400 | "conflict.background": "#FF80803d", 401 | "conflict.border": null, 402 | "created": "#99FFE4ff", 403 | "created.background": "#99FFE43d", 404 | "created.border": null, 405 | "deleted": "#FF8080ff", 406 | "deleted.background": "#FF80803d", 407 | "deleted.border": null, 408 | "error": "#FF8080ff", 409 | "error.background": "#FF80803d", 410 | "error.border": null, 411 | "hidden": null, 412 | "hidden.background": null, 413 | "hidden.border": null, 414 | "hint": "#A0A0A0", 415 | "hint.background": "#1C1C1C", 416 | "hint.border": null, 417 | "ignored": null, 418 | "ignored.background": null, 419 | "ignored.border": null, 420 | "info": "#7E7E7Eff", 421 | "info.background": "#7E7E7E3d", 422 | "info.border": "#7E7E7E3d", 423 | "modified": "#FFC799", 424 | "modified.background": null, 425 | "modified.border": null, 426 | "predictive": "#585858", 427 | "predictive.background": null, 428 | "predictive.border": null, 429 | "renamed": null, 430 | "renamed.background": null, 431 | "renamed.border": null, 432 | "success": "#99FFE4ff", 433 | "success.background": "#99FFE43d", 434 | "success.border": null, 435 | "unreachable": null, 436 | "unreachable.background": null, 437 | "unreachable.border": null, 438 | "warning": "#FFC799ff", 439 | "warning.background": "#FFC7993d", 440 | "warning.border": null, 441 | "players": [ 442 | { 443 | "cursor": "#FFC799ff", 444 | "background": "#FFC799ff", 445 | "selection": "#FFC7993d" 446 | }, 447 | { 448 | "cursor": "#99FFE4ff", 449 | "background": "#99FFE4ff", 450 | "selection": "#99FFE43d" 451 | } 452 | ], 453 | "syntax": { 454 | "attribute": { 455 | "color": "#A0A0A0", 456 | "font_style": null, 457 | "font_weight": null 458 | }, 459 | "boolean": { 460 | "color": "#FFC799", 461 | "font_style": null, 462 | "font_weight": null 463 | }, 464 | "comment": { 465 | "color": "#8b8b8b94", 466 | "font_style": null, 467 | "font_weight": null 468 | }, 469 | "comment.doc": { 470 | "color": "#8b8b8b94", 471 | "font_style": null, 472 | "font_weight": null 473 | }, 474 | "constant": { 475 | "color": "#FFC799", 476 | "font_style": null, 477 | "font_weight": null 478 | }, 479 | "constructor": { 480 | "color": "#FFC799", 481 | "font_style": null, 482 | "font_weight": null 483 | }, 484 | "emphasis": { 485 | "color": "#FFF", 486 | "font_style": "italic", 487 | "font_weight": null 488 | }, 489 | "emphasis.strong": { 490 | "color": "#FFF", 491 | "font_style": null, 492 | "font_weight": 700 493 | }, 494 | "function": { 495 | "color": "#FFC799", 496 | "font_style": null, 497 | "font_weight": null 498 | }, 499 | "keyword": { 500 | "color": "#A0A0A0", 501 | "font_style": null, 502 | "font_weight": null 503 | }, 504 | "label": { 505 | "color": "#FFC799", 506 | "font_style": null, 507 | "font_weight": null 508 | }, 509 | "link_text": { 510 | "color": "#FFF", 511 | "font_style": null, 512 | "font_weight": null 513 | }, 514 | "link_uri": { 515 | "color": "#FFF", 516 | "font_style": null, 517 | "font_weight": null 518 | }, 519 | "number": { 520 | "color": "#FFC799", 521 | "font_style": null, 522 | "font_weight": null 523 | }, 524 | "operator": { 525 | "color": "#A0A0A0", 526 | "font_style": null, 527 | "font_weight": null 528 | }, 529 | "punctuation": { 530 | "color": "#A0A0A0", 531 | "font_style": null, 532 | "font_weight": null 533 | }, 534 | "punctuation.bracket": { 535 | "color": "#A0A0A0", 536 | "font_style": null, 537 | "font_weight": null 538 | }, 539 | "punctuation.delimiter": { 540 | "color": "#A0A0A0", 541 | "font_style": null, 542 | "font_weight": null 543 | }, 544 | "punctuation.list_marker": { 545 | "color": "#A0A0A0", 546 | "font_style": null, 547 | "font_weight": null 548 | }, 549 | "punctuation.special": { 550 | "color": "#A0A0A0", 551 | "font_style": null, 552 | "font_weight": null 553 | }, 554 | "string": { 555 | "color": "#A0A0A0", 556 | "font_style": null, 557 | "font_weight": null 558 | }, 559 | "string.escape": { 560 | "color": "#FFC799", 561 | "font_style": null, 562 | "font_weight": null 563 | }, 564 | "string.regex": { 565 | "color": "#A0A0A0", 566 | "font_style": null, 567 | "font_weight": null 568 | }, 569 | "string.special": { 570 | "color": "#A0A0A0", 571 | "font_style": null, 572 | "font_weight": null 573 | }, 574 | "string.special.symbol": { 575 | "color": "#A0A0A0", 576 | "font_style": null, 577 | "font_weight": null 578 | }, 579 | "tag": { 580 | "color": "#FFC799", 581 | "font_style": null, 582 | "font_weight": null 583 | }, 584 | "text.literal": { 585 | "color": "#A0A0A0", 586 | "font_style": null, 587 | "font_weight": null 588 | }, 589 | "title": { 590 | "color": "#FFC799", 591 | "font_style": null, 592 | "font_weight": null 593 | }, 594 | "type": { 595 | "color": "#FFC799", 596 | "font_style": null, 597 | "font_weight": null 598 | }, 599 | "variable": { 600 | "color": "#FFF", 601 | "font_style": null, 602 | "font_weight": null 603 | }, 604 | "variable.special": { 605 | "color": "#A0A0A0", 606 | "font_style": null, 607 | "font_weight": null 608 | } 609 | } 610 | } 611 | }, 612 | { 613 | "name": "Vesper Light", 614 | "appearance": "light", 615 | "style": { 616 | "border": "#FAFAFA", 617 | "border.variant": "#FAFAFA", 618 | "border.focused": "#FFC799", 619 | "border.selected": "#FFC799", 620 | "border.disabled": "#F7F7F7", 621 | "background": "#FAFAFA", 622 | "surface.background": "#FAFAFA", 623 | "elevated_surface.background": "#FFFFFF", 624 | "element.background": "#FFFFFF", 625 | "element.hover": "#F2F2F2", 626 | "element.active": "#EDEDED", 627 | "element.selected": "#F7F7F7", 628 | "element.disabled": "#FFFFFF", 629 | "ghost_element.hover": "#F5F5F5", 630 | "ghost_element.selected": "#F2F2F2", 631 | "text": "#1A1A1A", 632 | "text.muted": "#555555", 633 | "text.placeholder": "#808080", 634 | "text.disabled": "#B0B0B0", 635 | "text.accent": "#E0A96D", 636 | "icon": "#1A1A1A", 637 | "icon.muted": "#707070", 638 | "icon.disabled": "#B0B0B0", 639 | "icon.accent": "#E0A96D", 640 | "status_bar.background": "#FAFAFA", 641 | "title_bar.background": "#FAFAFA", 642 | "toolbar.background": "#FAFAFA", 643 | "tab_bar.background": "#FAFAFA", 644 | "tab.inactive_background": "#FAFAFA", 645 | "tab.active_background": "#FFFFFF", 646 | "panel.background": "#FAFAFA", 647 | "panel.focused_border": "#EDEDED80", 648 | "scrollbar.thumb.background": "#CFCFCF80", 649 | "scrollbar.thumb.hover_background": "#B5B5B5", 650 | "scrollbar.track.background": "#FFFFFF", 651 | "editor.foreground": "#1A1A1A", 652 | "editor.background": "#FFFFFF", 653 | "editor.gutter.background": "#FFFFFF", 654 | "editor.line_number": "#C0C0C0", 655 | "editor.active_line_number": "#707070", 656 | "editor.document_highlight.read_background": "#FFF5EB", 657 | "editor.document_highlight.write_background": "#E8F9F6", 658 | "terminal.background": "#FFFFFF", 659 | "terminal.foreground": "#2A2A2A", 660 | "terminal.bright_foreground": "#000000", 661 | "terminal.dim_foreground": "#757575", 662 | "terminal.ansi.black": "#333333", 663 | "terminal.ansi.bright_black": "#A1A1A1", 664 | "terminal.ansi.red": "#E57373", 665 | "terminal.ansi.bright_red": "#EF5350", 666 | "terminal.ansi.green": "#66BB6A", 667 | "terminal.ansi.bright_green": "#81C784", 668 | "terminal.ansi.yellow": "#FFB74D", 669 | "terminal.ansi.bright_yellow": "#FFD54F", 670 | "terminal.ansi.blue": "#64B5F6", 671 | "terminal.ansi.bright_blue": "#42A5F5", 672 | "terminal.ansi.magenta": "#F48FB1", 673 | "terminal.ansi.bright_magenta": "#EC407A", 674 | "terminal.ansi.cyan": "#80DEEA", 675 | "terminal.ansi.bright_cyan": "#4DD0E1", 676 | "terminal.ansi.white": "#BDBDBD", 677 | "terminal.ansi.bright_white": "#FFFFFF", 678 | "link_text.hover": "#E0A96D", 679 | "created": "#99FFE4", 680 | "deleted": "#FF8080", 681 | "modified": "#E0A96D", 682 | "success": "#4CAF50", 683 | "error": "#E57373", 684 | "warning": "#FFC107", 685 | "info": "#757575", 686 | "hint": "#9E9E9E", 687 | "syntax": { 688 | "attribute": { "color": "#6A6A6A" }, 689 | "comment": { "color": "#B5B5B5" }, 690 | "constant": { "color": "#E0A96D" }, 691 | "constructor": { "color": "#E0A96D" }, 692 | "function": { "color": "#E0A96D" }, 693 | "keyword": { "color": "#606060" }, 694 | "label": { "color": "#E0A96D" }, 695 | "number": { "color": "#E0A96D" }, 696 | "operator": { "color": "#707070" }, 697 | "punctuation": { "color": "#808080" }, 698 | "string": { "color": "#00A88B" }, 699 | "string.escape": { "color": "#E0A96D" }, 700 | "string.regex": { "color": "#00A88B" }, 701 | "tag": { "color": "#E0A96D" }, 702 | "text.literal": { "color": "#00A88B" }, 703 | "title": { "color": "#E0A96D" }, 704 | "type": { "color": "#E0A96D" }, 705 | "variable": { "color": "#1A1A1A" }, 706 | "variable.special": { "color": "#606060" } 707 | } 708 | } 709 | } 710 | ] 711 | } 712 | --------------------------------------------------------------------------------