Skip to content

Commit

Permalink
Make default themes cleaner (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanzhong authored Feb 13, 2023
1 parent 552700c commit 993a1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CoreEditor/src/styling/themes/github-dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ function highlight() {
{ tag: [tags.function(tags.variableName), tags.function(tags.propertyName)], color: '#d2a8ff' },
{ tag: [tags.meta, tags.comment], color: colors.comment },
{ tag: [tags.link, tags.escape, tags.string, tags.regexp, tags.special(tags.string)], color: '#a5d6ff' },
{ tag: [tags.url, tags.linkMark], color: colors.text },
{ tag: tags.propertyName, color: colors.text },
{ tag: [tags.url, tags.linkMark, tags.propertyName], color: colors.text },
{ tag: [tags.quote, tags.quoteMark], color: base.green, fontStyle: 'italic' },
], 'dark');
}
Expand Down
3 changes: 1 addition & 2 deletions CoreEditor/src/styling/themes/github-light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ function highlight() {
{ tag: [tags.function(tags.variableName), tags.function(tags.propertyName)], color: '#8250df' },
{ tag: [tags.meta, tags.comment], color: colors.comment },
{ tag: [tags.link, tags.escape, tags.string, tags.regexp, tags.special(tags.string)], color: '#0a3069' },
{ tag: [tags.url, tags.linkMark], color: colors.text },
{ tag: tags.propertyName, color: colors.text },
{ tag: [tags.url, tags.linkMark, tags.propertyName], color: colors.text },
{ tag: [tags.quote, tags.quoteMark], color: base.green, fontStyle: 'italic' },
]);
}
Expand Down

0 comments on commit 993a1a6

Please sign in to comment.