|
1 | 1 | { |
2 | 2 | "name": "GitHub Light", |
3 | | - "$schema": "vscode://schemas/color-theme", |
4 | | - "include": "./syntax-light.json", |
5 | 3 | "colors": { |
6 | 4 | "focusBorder": "#2188ff", |
7 | 5 | "foreground": "#444d56", |
|
157 | 155 |
|
158 | 156 | "welcomePage.buttonBackground": "#f6f8fa", |
159 | 157 | "welcomePage.buttonHoverBackground": "#e1e4e8" |
160 | | - } |
| 158 | + }, |
| 159 | + |
| 160 | + "tokenColors": [ |
| 161 | + { |
| 162 | + "scope": [ |
| 163 | + "comment", |
| 164 | + "punctuation.definition.comment", |
| 165 | + "string.comment" |
| 166 | + ], |
| 167 | + "settings": { |
| 168 | + "foreground": "#6a737d" |
| 169 | + } |
| 170 | + }, |
| 171 | + { |
| 172 | + "scope": [ |
| 173 | + "constant", |
| 174 | + "entity.name.constant", |
| 175 | + "variable.other.constant", |
| 176 | + "variable.language" |
| 177 | + ], |
| 178 | + "settings": { |
| 179 | + "foreground": "#005cc5" |
| 180 | + } |
| 181 | + }, |
| 182 | + { |
| 183 | + "scope": [ |
| 184 | + "entity", |
| 185 | + "entity.name" |
| 186 | + ], |
| 187 | + "settings": { |
| 188 | + "foreground": "#6f42c1" |
| 189 | + } |
| 190 | + }, |
| 191 | + { |
| 192 | + "scope": "variable.parameter.function", |
| 193 | + "settings": { |
| 194 | + "foreground": "#24292e" |
| 195 | + } |
| 196 | + }, |
| 197 | + { |
| 198 | + "scope": "entity.name.tag", |
| 199 | + "settings": { |
| 200 | + "foreground": "#22863a" |
| 201 | + } |
| 202 | + }, |
| 203 | + { |
| 204 | + "scope": "keyword", |
| 205 | + "settings": { |
| 206 | + "foreground": "#d73a49" |
| 207 | + } |
| 208 | + }, |
| 209 | + { |
| 210 | + "scope": [ |
| 211 | + "storage", |
| 212 | + "storage.type" |
| 213 | + ], |
| 214 | + "settings": { |
| 215 | + "foreground": "#d73a49" |
| 216 | + } |
| 217 | + }, |
| 218 | + { |
| 219 | + "scope": [ |
| 220 | + "storage.modifier.package", |
| 221 | + "storage.modifier.import", |
| 222 | + "storage.type.java" |
| 223 | + ], |
| 224 | + "settings": { |
| 225 | + "foreground": "#24292e" |
| 226 | + } |
| 227 | + }, |
| 228 | + { |
| 229 | + "scope": [ |
| 230 | + "string", |
| 231 | + "punctuation.definition.string", |
| 232 | + "string punctuation.section.embedded source" |
| 233 | + ], |
| 234 | + "settings": { |
| 235 | + "foreground": "#032f62" |
| 236 | + } |
| 237 | + }, |
| 238 | + { |
| 239 | + "scope": "support", |
| 240 | + "settings": { |
| 241 | + "foreground": "#005cc5" |
| 242 | + } |
| 243 | + }, |
| 244 | + { |
| 245 | + "scope": "meta.property-name", |
| 246 | + "settings": { |
| 247 | + "foreground": "#005cc5" |
| 248 | + } |
| 249 | + }, |
| 250 | + { |
| 251 | + "scope": "variable", |
| 252 | + "settings": { |
| 253 | + "foreground": "#e36209" |
| 254 | + } |
| 255 | + }, |
| 256 | + { |
| 257 | + "scope": "variable.other", |
| 258 | + "settings": { |
| 259 | + "foreground": "#24292e" |
| 260 | + } |
| 261 | + }, |
| 262 | + { |
| 263 | + "scope": "invalid.broken", |
| 264 | + "settings": { |
| 265 | + "fontStyle": "bold italic underline", |
| 266 | + "foreground": "#b31d28" |
| 267 | + } |
| 268 | + }, |
| 269 | + { |
| 270 | + "scope": "invalid.deprecated", |
| 271 | + "settings": { |
| 272 | + "fontStyle": "bold italic underline", |
| 273 | + "foreground": "#b31d28" |
| 274 | + } |
| 275 | + }, |
| 276 | + { |
| 277 | + "scope": "invalid.illegal", |
| 278 | + "settings": { |
| 279 | + "fontStyle": "italic underline", |
| 280 | + "background": "#b31d28", |
| 281 | + "foreground": "#fafbfc" |
| 282 | + } |
| 283 | + }, |
| 284 | + { |
| 285 | + "scope": "carriage-return", |
| 286 | + "settings": { |
| 287 | + "fontStyle": "italic underline", |
| 288 | + "background": "#d73a49", |
| 289 | + "foreground": "#fafbfc", |
| 290 | + "content": "^M" |
| 291 | + } |
| 292 | + }, |
| 293 | + { |
| 294 | + "scope": "invalid.unimplemented", |
| 295 | + "settings": { |
| 296 | + "fontStyle": "bold italic underline", |
| 297 | + "foreground": "#b31d28" |
| 298 | + } |
| 299 | + }, |
| 300 | + { |
| 301 | + "scope": "message.error", |
| 302 | + "settings": { |
| 303 | + "foreground": "#b31d28" |
| 304 | + } |
| 305 | + }, |
| 306 | + { |
| 307 | + "scope": "string source", |
| 308 | + "settings": { |
| 309 | + "foreground": "#24292e" |
| 310 | + } |
| 311 | + }, |
| 312 | + { |
| 313 | + "scope": "string variable", |
| 314 | + "settings": { |
| 315 | + "foreground": "#005cc5" |
| 316 | + } |
| 317 | + }, |
| 318 | + { |
| 319 | + "scope": [ |
| 320 | + "source.regexp", |
| 321 | + "string.regexp" |
| 322 | + ], |
| 323 | + "settings": { |
| 324 | + "foreground": "#032f62" |
| 325 | + } |
| 326 | + }, |
| 327 | + { |
| 328 | + "scope": [ |
| 329 | + "string.regexp.character-class", |
| 330 | + "string.regexp constant.character.escape", |
| 331 | + "string.regexp source.ruby.embedded", |
| 332 | + "string.regexp string.regexp.arbitrary-repitition" |
| 333 | + ], |
| 334 | + "settings": { |
| 335 | + "foreground": "#032f62" |
| 336 | + } |
| 337 | + }, |
| 338 | + { |
| 339 | + "scope": "string.regexp constant.character.escape", |
| 340 | + "settings": { |
| 341 | + "fontStyle": "bold", |
| 342 | + "foreground": "#22863a" |
| 343 | + } |
| 344 | + }, |
| 345 | + { |
| 346 | + "scope": "support.constant", |
| 347 | + "settings": { |
| 348 | + "foreground": "#005cc5" |
| 349 | + } |
| 350 | + }, |
| 351 | + { |
| 352 | + "scope": "support.variable", |
| 353 | + "settings": { |
| 354 | + "foreground": "#005cc5" |
| 355 | + } |
| 356 | + }, |
| 357 | + { |
| 358 | + "scope": "meta.module-reference", |
| 359 | + "settings": { |
| 360 | + "foreground": "#005cc5" |
| 361 | + } |
| 362 | + }, |
| 363 | + { |
| 364 | + "scope": "markup.list", |
| 365 | + "settings": { |
| 366 | + "foreground": "#735c0f" |
| 367 | + } |
| 368 | + }, |
| 369 | + { |
| 370 | + "scope": [ |
| 371 | + "markup.heading", |
| 372 | + "markup.heading entity.name" |
| 373 | + ], |
| 374 | + "settings": { |
| 375 | + "fontStyle": "bold", |
| 376 | + "foreground": "#005cc5" |
| 377 | + } |
| 378 | + }, |
| 379 | + { |
| 380 | + "scope": "markup.quote", |
| 381 | + "settings": { |
| 382 | + "foreground": "#22863a" |
| 383 | + } |
| 384 | + }, |
| 385 | + { |
| 386 | + "scope": "markup.italic", |
| 387 | + "settings": { |
| 388 | + "fontStyle": "italic", |
| 389 | + "foreground": "#24292e" |
| 390 | + } |
| 391 | + }, |
| 392 | + { |
| 393 | + "scope": "markup.bold", |
| 394 | + "settings": { |
| 395 | + "fontStyle": "bold", |
| 396 | + "foreground": "#24292e" |
| 397 | + } |
| 398 | + }, |
| 399 | + { |
| 400 | + "scope": "markup.raw", |
| 401 | + "settings": { |
| 402 | + "foreground": "#005cc5" |
| 403 | + } |
| 404 | + }, |
| 405 | + { |
| 406 | + "scope": [ |
| 407 | + "markup.deleted", |
| 408 | + "meta.diff.header.from-file", |
| 409 | + "punctuation.definition.deleted" |
| 410 | + ], |
| 411 | + "settings": { |
| 412 | + "background": "#ffeef0", |
| 413 | + "foreground": "#b31d28" |
| 414 | + } |
| 415 | + }, |
| 416 | + { |
| 417 | + "scope": [ |
| 418 | + "markup.inserted", |
| 419 | + "meta.diff.header.to-file", |
| 420 | + "punctuation.definition.inserted" |
| 421 | + ], |
| 422 | + "settings": { |
| 423 | + "background": "#f0fff4", |
| 424 | + "foreground": "#22863a" |
| 425 | + } |
| 426 | + }, |
| 427 | + { |
| 428 | + "scope": [ |
| 429 | + "markup.changed", |
| 430 | + "punctuation.definition.changed" |
| 431 | + ], |
| 432 | + "settings": { |
| 433 | + "background": "#ffebda", |
| 434 | + "foreground": "#e36209" |
| 435 | + } |
| 436 | + }, |
| 437 | + { |
| 438 | + "scope": [ |
| 439 | + "markup.ignored", |
| 440 | + "markup.untracked" |
| 441 | + ], |
| 442 | + "settings": { |
| 443 | + "foreground": "#f6f8fa", |
| 444 | + "background": "#005cc5" |
| 445 | + } |
| 446 | + }, |
| 447 | + { |
| 448 | + "scope": "meta.diff.range", |
| 449 | + "settings": { |
| 450 | + "foreground": "#6f42c1", |
| 451 | + "fontStyle": "bold" |
| 452 | + } |
| 453 | + }, |
| 454 | + { |
| 455 | + "scope": "meta.diff.header", |
| 456 | + "settings": { |
| 457 | + "foreground": "#005cc5" |
| 458 | + } |
| 459 | + }, |
| 460 | + { |
| 461 | + "scope": "meta.separator", |
| 462 | + "settings": { |
| 463 | + "fontStyle": "bold", |
| 464 | + "foreground": "#005cc5" |
| 465 | + } |
| 466 | + }, |
| 467 | + { |
| 468 | + "scope": "meta.output", |
| 469 | + "settings": { |
| 470 | + "foreground": "#005cc5" |
| 471 | + } |
| 472 | + }, |
| 473 | + { |
| 474 | + "scope": [ |
| 475 | + "brackethighlighter.tag", |
| 476 | + "brackethighlighter.curly", |
| 477 | + "brackethighlighter.round", |
| 478 | + "brackethighlighter.square", |
| 479 | + "brackethighlighter.angle", |
| 480 | + "brackethighlighter.quote" |
| 481 | + ], |
| 482 | + "settings": { |
| 483 | + "foreground": "#586069" |
| 484 | + } |
| 485 | + }, |
| 486 | + { |
| 487 | + "scope": "brackethighlighter.unmatched", |
| 488 | + "settings": { |
| 489 | + "foreground": "#b31d28" |
| 490 | + } |
| 491 | + }, |
| 492 | + { |
| 493 | + "scope": [ |
| 494 | + "constant.other.reference.link", |
| 495 | + "string.other.link" |
| 496 | + ], |
| 497 | + "settings": { |
| 498 | + "foreground": "#032f62", |
| 499 | + "fontStyle": "underline" |
| 500 | + } |
| 501 | + } |
| 502 | + ] |
161 | 503 | } |
0 commit comments