Skip to content

Commit 6e7dbce

Browse files
committed
update tokens in theme
1 parent ebe010b commit 6e7dbce

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

src/vs/editor/standalone/common/themes.ts

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ export const vs: IStandaloneThemeData = {
1717
{ token: 'emphasis', fontStyle: 'italic' },
1818
{ token: 'strong', fontStyle: 'bold' },
1919

20-
{ token: 'variable', foreground: '001188' },
20+
{ token: 'variable', foreground: '001080' },
2121
{ token: 'variable.predefined', foreground: '4864AA' },
22+
{ token: 'variable.readonly', foreground: '0070C1' },
23+
{ token: 'variable.language', foreground: '0000FF' },
24+
{ token: 'function', foreground: '795E26' },
2225
{ token: 'constant', foreground: 'dd0000' },
2326
{ token: 'comment', foreground: '008000' },
2427
{ token: 'number', foreground: '098658' },
@@ -89,9 +92,12 @@ export const vs_dark: IStandaloneThemeData = {
8992
{ token: 'emphasis', fontStyle: 'italic' },
9093
{ token: 'strong', fontStyle: 'bold' },
9194

92-
{ token: 'variable', foreground: '74B0DF' },
95+
{ token: 'variable', foreground: '9CDCFE' },
9396
{ token: 'variable.predefined', foreground: '4864AA' },
9497
{ token: 'variable.parameter', foreground: '9CDCFE' },
98+
{ token: 'variable.readonly', foreground: '4FC1FF' },
99+
{ token: 'variable.language', foreground: '569CD6' },
100+
{ token: 'function', foreground: 'DCDCAA' },
95101
{ token: 'constant', foreground: '569CD6' },
96102
{ token: 'comment', foreground: '608B4E' },
97103
{ token: 'number', foreground: 'B5CEA8' },
@@ -161,8 +167,11 @@ export const hc_black: IStandaloneThemeData = {
161167
{ token: 'emphasis', fontStyle: 'italic' },
162168
{ token: 'strong', fontStyle: 'bold' },
163169

164-
{ token: 'variable', foreground: '1AEBFF' },
170+
{ token: 'variable', foreground: '9CDCFE' },
165171
{ token: 'variable.parameter', foreground: '9CDCFE' },
172+
{ token: 'variable.readonly', foreground: '9CDCFE' },
173+
{ token: 'variable.language', foreground: '569CD6' },
174+
{ token: 'function', foreground: 'DCDCAA' },
166175
{ token: 'constant', foreground: '569CD6' },
167176
{ token: 'comment', foreground: '608B4E' },
168177
{ token: 'number', foreground: 'FFFFFF' },
@@ -220,8 +229,11 @@ export const hc_light: IStandaloneThemeData = {
220229
{ token: 'emphasis', fontStyle: 'italic' },
221230
{ token: 'strong', fontStyle: 'bold' },
222231

223-
{ token: 'variable', foreground: '264F70' },
232+
{ token: 'variable', foreground: '001080' },
224233
{ token: 'variable.predefined', foreground: '4864AA' },
234+
{ token: 'variable.readonly', foreground: '001080' },
235+
{ token: 'variable.language', foreground: '0F4A85' },
236+
{ token: 'function', foreground: '5E2CBC' },
225237
{ token: 'constant', foreground: 'dd0000' },
226238
{ token: 'comment', foreground: '008000' },
227239
{ token: 'number', foreground: '098658' },

0 commit comments

Comments
 (0)