Skip to content

Commit cbb41d1

Browse files
committedDec 10, 2022
fix(sublime): modify tagName color in sublime theme. (#430)
1 parent c50705e commit cbb41d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎themes/sublime/src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ export function sublimeInit(options?: CreateThemeOptions) {
2323
{ tag: [t.string, t.regexp, t.attributeValue], color: '#99C592' },
2424
{ tag: t.operator, color: '#f47954' },
2525
// { tag: t.moduleKeyword, color: 'red' },
26-
{ tag: [t.propertyName, t.typeName], color: '#629ccd' },
2726
{ tag: [t.tagName, t.modifier], color: '#E35F63' },
2827
{ tag: [t.number, t.definition(t.tagName), t.className, t.definition(t.variableName)], color: '#fbac52' },
2928
{ tag: [t.atom, t.bool, t.special(t.variableName)], color: '#E35F63' },
29+
{ tag: t.variableName, color: '#539ac4' },
30+
{ tag: [t.propertyName, t.typeName], color: '#629ccd' },
31+
{ tag: t.propertyName, color: '#36b7b5' },
3032
...styles,
3133
],
3234
});

0 commit comments

Comments
 (0)
Please sign in to comment.