Skip to content

Commit

Permalink
feat(syntax): add some zed specific highlights for python (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
tecandrew authored Nov 21, 2024
1 parent f345edc commit 4b8b6a9
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 0 deletions.
40 changes: 40 additions & 0 deletions themes/catppuccin-mauve.json
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#fe640b",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#df8e1d",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#acb0be",
"font_style": "italic",
Expand Down Expand Up @@ -1235,6 +1245,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#ef9f76",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#e5c890",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#626880",
"font_style": "italic",
Expand Down Expand Up @@ -1875,6 +1895,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#f5a97f",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#eed49f",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#5b6078",
"font_style": "italic",
Expand Down Expand Up @@ -2515,6 +2545,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#fab387",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#f9e2af",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#585b70",
"font_style": "italic",
Expand Down
40 changes: 40 additions & 0 deletions themes/catppuccin-no-italics-mauve.json
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#fe640b",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#df8e1d",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#acb0be",
"font_style": null,
Expand Down Expand Up @@ -1235,6 +1245,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#ef9f76",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#e5c890",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#626880",
"font_style": null,
Expand Down Expand Up @@ -1875,6 +1895,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#f5a97f",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#eed49f",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#5b6078",
"font_style": null,
Expand Down Expand Up @@ -2515,6 +2545,16 @@
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#fab387",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#f9e2af",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#585b70",
"font_style": null,
Expand Down
10 changes: 10 additions & 0 deletions zed.tera
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,16 @@ whiskers:
"font_style": null,
"font_weight": 700
},
"function.decorator": {
"color": "#{{ c.peach.hex }}",
"font_style": null,
"font_weight": null
},
"type.class.definition": {
"color": "#{{ c.yellow.hex }}",
"font_style": null,
"font_weight": 600
},
"hint": {
"color": "#{{ c.surface2.hex }}",
"font_style": {{ italics }},
Expand Down

0 comments on commit 4b8b6a9

Please sign in to comment.