Skip to content

Commit

Permalink
fix: match syntax highlighting tokens to style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
uncenter authored Sep 8, 2024
1 parent 67ce281 commit 69eceab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/catppuccin-vsc/src/theme/tokens/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function tokens(context: ThemeContext): TextmateColors {
name: "Comments",
scope: ["comment", "punctuation.definition.comment"],
settings: {
foreground: palette.overlay0,
foreground: palette.overlay2,
fontStyle: options.italicComments ? "italic" : "",
},
},
Expand Down Expand Up @@ -107,7 +107,7 @@ export default function tokens(context: ThemeContext): TextmateColors {
},
},
{
name: "Punctuation",
name: "Operators",
scope: [
"keyword.operator",
"punctuation.accessor",
Expand All @@ -117,7 +117,7 @@ export default function tokens(context: ThemeContext): TextmateColors {
"punctuation.separator.key-value",
],
settings: {
foreground: palette.teal,
foreground: palette.sky,
},
},
{
Expand Down

0 comments on commit 69eceab

Please sign in to comment.