Skip to content

Commit

Permalink
fix: add color support for constant placeholders inside strings
Browse files Browse the repository at this point in the history
Closes #1291
  • Loading branch information
equinusocio committed Dec 10, 2023
1 parent 0b34672 commit 8fd5192
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/generator/color-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => {
* Override all syntax tokens
*/
customTokens: [
{
name: 'Constant Placeholder',
scope: [
'constant.other.placeholder'
],
settings: {
foreground: theme.scheme.base.red
}
},
{
name: 'Markup Deleted',
scope: [
Expand Down

0 comments on commit 8fd5192

Please sign in to comment.