Skip to content

Commit

Permalink
fix(theme): Highlight components with green (#429)
Browse files Browse the repository at this point in the history
VS Code highlights React components with green
  • Loading branch information
karlhorky committed Dec 10, 2022
1 parent b19e563 commit cbb7c7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions themes/vscode/src/index.ts
Expand Up @@ -23,7 +23,7 @@ export function vscodeDarkInit(options?: CreateThemeOptions) {
},
styles: [
{
tag: [t.keyword, t.operatorKeyword, t.modifier, t.color, t.constant(t.name), t.standard(t.name), t.tagName, t.special(t.brace), t.atom, t.bool, t.special(t.variableName)],
tag: [t.keyword, t.operatorKeyword, t.modifier, t.color, t.constant(t.name), t.standard(t.name), t.standard(t.tagName), t.special(t.brace), t.atom, t.bool, t.special(t.variableName)],
color: '#569cd6',
},
{
Expand All @@ -36,7 +36,7 @@ export function vscodeDarkInit(options?: CreateThemeOptions) {
},
{ tag: t.heading, fontWeight: 'bold', color: '#9cdcfe' },
{
tag: [t.typeName, t.className, t.number, t.changed, t.annotation, t.self, t.namespace],
tag: [t.typeName, t.className, t.tagName, t.number, t.changed, t.annotation, t.self, t.namespace],
color: '#4ec9b0',
},
{
Expand Down

0 comments on commit cbb7c7a

Please sign in to comment.