Skip to content

Commit

Permalink
fix(sublime): modify tagName color in sublime theme. (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Dec 10, 2022
1 parent c50705e commit cbb41d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion themes/sublime/src/index.ts
Expand Up @@ -23,10 +23,12 @@ export function sublimeInit(options?: CreateThemeOptions) {
{ tag: [t.string, t.regexp, t.attributeValue], color: '#99C592' },
{ tag: t.operator, color: '#f47954' },
// { tag: t.moduleKeyword, color: 'red' },
{ tag: [t.propertyName, t.typeName], color: '#629ccd' },
{ tag: [t.tagName, t.modifier], color: '#E35F63' },
{ tag: [t.number, t.definition(t.tagName), t.className, t.definition(t.variableName)], color: '#fbac52' },
{ tag: [t.atom, t.bool, t.special(t.variableName)], color: '#E35F63' },
{ tag: t.variableName, color: '#539ac4' },
{ tag: [t.propertyName, t.typeName], color: '#629ccd' },
{ tag: t.propertyName, color: '#36b7b5' },
...styles,
],
});
Expand Down

0 comments on commit cbb41d1

Please sign in to comment.