Skip to content

Commit

Permalink
Invalid "symbolIcon.constantForeground" Color
Browse files Browse the repository at this point in the history
The color for "symbolIcon.constantForeground" was not indexed, and as such would be ignored by VS-Code.
  • Loading branch information
rroessler committed Nov 14, 2023
1 parent 38b50d4 commit c029d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ function getTheme({ theme, name }) {
"symbolIcon.typeParameterForeground": lightDark( scale.blue[8], scale.blue[2]),
"symbolIcon.unitForeground": lightDark( scale.blue[6], scale.blue[3]),
"symbolIcon.variableForeground": lightDark( scale.orange[6], scale.orange[3]),
"symbolIcon.constantForeground": lightDark( scale.green[6], scale.green),
"symbolIcon.constantForeground": lightDark( scale.green[6], scale.green[3]),

"terminal.foreground": color.fg.default,
'terminal.ansiBlack': color.ansi.black,
Expand Down

0 comments on commit c029d84

Please sign in to comment.