Skip to content

Commit

Permalink
fix(extras): Add modified, warning and error colors to zed theme (#98)
Browse files Browse the repository at this point in the history
* feat(extras): Add modified, warning and error colors

* chore: generate extras

---------

Co-authored-by: byt3m4st3r <[email protected]>
  • Loading branch information
byt3m4st3r and byt3m4st3r authored Jul 12, 2024
1 parent 87fff1f commit 2b52b8b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions extras/zed/cyberdream-light.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
"deleted": null,
"deleted.background": null,
"deleted.border": null,
"error": null,
"error.background": null,
"error": "#d11500",
"error.background": "#ffffff",
"error.border": null,
"hidden": null,
"hidden.background": null,
Expand All @@ -124,7 +124,7 @@
"info": null,
"info.background": null,
"info.border": null,
"modified": null,
"modified": "#d17c00",
"modified.background": null,
"modified.border": null,
"predictive": null,
Expand All @@ -139,8 +139,8 @@
"unreachable": null,
"unreachable.background": null,
"unreachable.border": null,
"warning": null,
"warning.background": null,
"warning": "#997b00",
"warning.background": "#ffffff",
"warning.border": null,
"players": [],
"syntax": {
Expand Down
10 changes: 5 additions & 5 deletions extras/zed/cyberdream.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
"deleted": null,
"deleted.background": null,
"deleted.border": null,
"error": null,
"error.background": null,
"error": "#ff6e5e",
"error.background": "#16181a",
"error.border": null,
"hidden": null,
"hidden.background": null,
Expand All @@ -124,7 +124,7 @@
"info": null,
"info.background": null,
"info.border": null,
"modified": null,
"modified": "#ffbd5e",
"modified.background": null,
"modified.border": null,
"predictive": null,
Expand All @@ -139,8 +139,8 @@
"unreachable": null,
"unreachable.background": null,
"unreachable.border": null,
"warning": null,
"warning.background": null,
"warning": "#f1ff5e",
"warning.background": "#16181a",
"warning.border": null,
"players": [],
"syntax": {
Expand Down
10 changes: 5 additions & 5 deletions lua/cyberdream/extra/zed.lua
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ function M.generate(variant)
"deleted": null,
"deleted.background": null,
"deleted.border": null,
"error": null,
"error.background": null,
"error": "${red}",
"error.background": "${bg}",
"error.border": null,
"hidden": null,
"hidden.background": null,
Expand All @@ -135,7 +135,7 @@ function M.generate(variant)
"info": null,
"info.background": null,
"info.border": null,
"modified": null,
"modified": "${orange}",
"modified.background": null,
"modified.border": null,
"predictive": null,
Expand All @@ -150,8 +150,8 @@ function M.generate(variant)
"unreachable": null,
"unreachable.background": null,
"unreachable.border": null,
"warning": null,
"warning.background": null,
"warning": "${yellow}",
"warning.background": "${bg}",
"warning.border": null,
"players": [],
"syntax": {
Expand Down

0 comments on commit 2b52b8b

Please sign in to comment.