Skip to content

Commit

Permalink
tweak types
Browse files Browse the repository at this point in the history
  • Loading branch information
tecandrew authored Nov 12, 2024
1 parent 472d8e0 commit 33c4af3
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 10 deletions.
36 changes: 28 additions & 8 deletions themes/catppuccin-mauve.json
Original file line number Diff line number Diff line change
Expand Up @@ -359,14 +359,19 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#8839ef",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#df8e1d",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"type.super": {
"color": "#df8e1d",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"variable": {
Expand Down Expand Up @@ -753,14 +758,19 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#ca9ee6",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#e5c890",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"type.super": {
"color": "#e5c890",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"variable": {
Expand Down Expand Up @@ -1147,14 +1157,19 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#c6a0f6",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#eed49f",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"type.super": {
"color": "#eed49f",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"variable": {
Expand Down Expand Up @@ -1541,14 +1556,19 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#cba6f7",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#f9e2af",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"type.super": {
"color": "#f9e2af",
"font_style": null,
"font_style": "italic",
"font_weight": null
},
"variable": {
Expand Down
20 changes: 20 additions & 0 deletions themes/catppuccin-no-italics-mauve.json
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,11 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#8839ef",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#df8e1d",
"font_style": null,
Expand Down Expand Up @@ -753,6 +758,11 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#ca9ee6",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#e5c890",
"font_style": null,
Expand Down Expand Up @@ -1147,6 +1157,11 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#c6a0f6",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#eed49f",
"font_style": null,
Expand Down Expand Up @@ -1541,6 +1556,11 @@
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#cba6f7",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#f9e2af",
"font_style": null,
Expand Down
9 changes: 7 additions & 2 deletions zed.tera
Original file line number Diff line number Diff line change
Expand Up @@ -360,14 +360,19 @@ whiskers:
"font_style": null,
"font_weight": null
},
"type.builtin": {
"color": "#{{c.mauve.hex}}",
"font_style": null,
"font_weight": null
},
"type.interface": {
"color": "#{{c.yellow.hex}}",
"font_style": null,
"font_style": {%if variant == '-no-italics'%}null{%else%}"italic"{%endif%},
"font_weight": null
},
"type.super": {
"color": "#{{c.yellow.hex}}",
"font_style": null,
"font_style": {%if variant == '-no-italics'%}null{%else%}"italic"{%endif%},
"font_weight": null
},
"variable": {
Expand Down

0 comments on commit 33c4af3

Please sign in to comment.