Skip to content

Commit

Permalink
update tokens in theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Pistonight committed Dec 18, 2024
1 parent cf2ebd9 commit fe58f13
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/vs/editor/standalone/common/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ export const vs: IStandaloneThemeData = {
{ token: 'emphasis', fontStyle: 'italic' },
{ token: 'strong', fontStyle: 'bold' },

{ token: 'variable', foreground: '001188' },
{ token: 'variable', foreground: '001080' },
{ token: 'variable.predefined', foreground: '4864AA' },
{ token: 'variable.readonly', foreground: '0070C1' },
{ token: 'variable.language', foreground: '0000FF' },
{ token: 'function', foreground: '795E26' },
{ token: 'constant', foreground: 'dd0000' },
{ token: 'comment', foreground: '008000' },
{ token: 'number', foreground: '098658' },
Expand Down Expand Up @@ -89,9 +92,12 @@ export const vs_dark: IStandaloneThemeData = {
{ token: 'emphasis', fontStyle: 'italic' },
{ token: 'strong', fontStyle: 'bold' },

{ token: 'variable', foreground: '74B0DF' },
{ token: 'variable', foreground: '9CDCFE' },
{ token: 'variable.predefined', foreground: '4864AA' },
{ token: 'variable.parameter', foreground: '9CDCFE' },
{ token: 'variable.readonly', foreground: '4FC1FF' },
{ token: 'variable.language', foreground: '569CD6' },
{ token: 'function', foreground: 'DCDCAA' },
{ token: 'constant', foreground: '569CD6' },
{ token: 'comment', foreground: '608B4E' },
{ token: 'number', foreground: 'B5CEA8' },
Expand Down Expand Up @@ -161,8 +167,11 @@ export const hc_black: IStandaloneThemeData = {
{ token: 'emphasis', fontStyle: 'italic' },
{ token: 'strong', fontStyle: 'bold' },

{ token: 'variable', foreground: '1AEBFF' },
{ token: 'variable', foreground: '9CDCFE' },
{ token: 'variable.parameter', foreground: '9CDCFE' },
{ token: 'variable.readonly', foreground: '9CDCFE' },
{ token: 'variable.language', foreground: '569CD6' },
{ token: 'function', foreground: 'DCDCAA' },
{ token: 'constant', foreground: '569CD6' },
{ token: 'comment', foreground: '608B4E' },
{ token: 'number', foreground: 'FFFFFF' },
Expand Down Expand Up @@ -220,8 +229,11 @@ export const hc_light: IStandaloneThemeData = {
{ token: 'emphasis', fontStyle: 'italic' },
{ token: 'strong', fontStyle: 'bold' },

{ token: 'variable', foreground: '264F70' },
{ token: 'variable', foreground: '001080' },
{ token: 'variable.predefined', foreground: '4864AA' },
{ token: 'variable.readonly', foreground: '001080' },
{ token: 'variable.language', foreground: '0F4A85' },
{ token: 'function', foreground: '5E2CBC' },
{ token: 'constant', foreground: 'dd0000' },
{ token: 'comment', foreground: '008000' },
{ token: 'number', foreground: '098658' },
Expand Down

0 comments on commit fe58f13

Please sign in to comment.