Skip to content

Commit

Permalink
Add bracket pair colorization to new themes
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoCoimbra committed Apr 5, 2022
1 parent 649311a commit 4cc880f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,13 @@ function getTheme({ theme, name }) {
'terminal.ansiBrightCyan': color.ansi.cyanBright,
'terminal.ansiBrightWhite': color.ansi.whiteBright,

"editorBracketHighlight.foreground1": lightDark(scale.blue[5], scale.blue[2]),
"editorBracketHighlight.foreground2": lightDark(scale.orange[5], scale.orange[2]),
"editorBracketHighlight.foreground3": lightDark(scale.purple[5], scale.purple[2]),
"editorBracketHighlight.foreground4": lightDark(scale.blue[5], scale.blue[2]),
"editorBracketHighlight.foreground5": lightDark(scale.orange[5], scale.orange[2]),
"editorBracketHighlight.foreground6": lightDark(scale.purple[5], scale.purple[2]),

"gitDecoration.addedResourceForeground" : color.success.fg,
"gitDecoration.modifiedResourceForeground" : color.attention.fg,
"gitDecoration.deletedResourceForeground" : color.danger.fg,
Expand Down

0 comments on commit 4cc880f

Please sign in to comment.