| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- export default {
- base: 'vs-dark' as const,
- inherit: true,
- rules: [
- {
- foreground: 'de935f',
- token: 'number'
- },
- {
- foreground: '969896',
- token: 'comment'
- },
- {
- foreground: 'ced1cf',
- token: 'keyword.operator.class'
- },
- {
- foreground: 'ced1cf',
- token: 'constant.other'
- },
- {
- foreground: 'ced1cf',
- token: 'source.php.embedded.line'
- },
- {
- foreground: 'cc6666',
- token: 'variable'
- },
- {
- foreground: 'cc6666',
- token: 'support.other.variable'
- },
- {
- foreground: 'cc6666',
- token: 'string.other.link'
- },
- {
- foreground: 'cc6666',
- token: 'string.regexp'
- },
- {
- foreground: 'cc6666',
- token: 'entity.name.tag'
- },
- {
- foreground: 'cc6666',
- token: 'entity.other.attribute-name'
- },
- {
- foreground: 'cc6666',
- token: 'meta.tag'
- },
- {
- foreground: 'cc6666',
- token: 'declaration.tag'
- },
- {
- foreground: 'cc6666',
- token: 'markup.deleted.git_gutter'
- },
- {
- foreground: 'de935f',
- token: 'constant.numeric'
- },
- {
- foreground: 'de935f',
- token: 'constant.language'
- },
- {
- foreground: 'de935f',
- token: 'support.constant'
- },
- {
- foreground: 'de935f',
- token: 'constant.character'
- },
- {
- foreground: 'de935f',
- token: 'variable.parameter'
- },
- {
- foreground: 'de935f',
- token: 'punctuation.section.embedded'
- },
- {
- foreground: 'de935f',
- token: 'keyword.other.unit'
- },
- {
- foreground: 'f0c674',
- token: 'entity.name.class'
- },
- {
- foreground: 'f0c674',
- token: 'entity.name.type.class'
- },
- {
- foreground: 'f0c674',
- token: 'support.type'
- },
- {
- foreground: 'f0c674',
- token: 'support.class'
- },
- {
- foreground: 'b5bd68',
- token: 'string'
- },
- {
- foreground: 'b5bd68',
- token: 'constant.other.symbol'
- },
- {
- foreground: 'b5bd68',
- token: 'entity.other.inherited-class'
- },
- {
- foreground: 'b5bd68',
- token: 'markup.heading'
- },
- {
- foreground: 'b5bd68',
- token: 'markup.inserted.git_gutter'
- },
- {
- foreground: '8abeb7',
- token: 'keyword.operator'
- },
- {
- foreground: '8abeb7',
- token: 'constant.other.color'
- },
- {
- foreground: '81a2be',
- token: 'entity.name.function'
- },
- {
- foreground: '81a2be',
- token: 'meta.function-call'
- },
- {
- foreground: '81a2be',
- token: 'support.function'
- },
- {
- foreground: '81a2be',
- token: 'keyword.other.special-method'
- },
- {
- foreground: '81a2be',
- token: 'meta.block-level'
- },
- {
- foreground: '81a2be',
- token: 'markup.changed.git_gutter'
- },
- {
- foreground: 'b294bb',
- token: 'keyword'
- },
- {
- foreground: 'b294bb',
- token: 'storage'
- },
- {
- foreground: 'b294bb',
- token: 'storage.type'
- },
- {
- foreground: 'b294bb',
- token: 'entity.name.tag.css'
- },
- {
- foreground: 'ced2cf',
- background: 'df5f5f',
- token: 'invalid'
- },
- {
- foreground: 'ced2cf',
- background: '82a3bf',
- token: 'meta.separator'
- },
- {
- foreground: 'ced2cf',
- background: 'b798bf',
- token: 'invalid.deprecated'
- },
- {
- foreground: 'ffffff',
- token: 'markup.inserted.diff'
- },
- {
- foreground: 'ffffff',
- token: 'markup.deleted.diff'
- },
- {
- foreground: 'ffffff',
- token: 'meta.diff.header.to-file'
- },
- {
- foreground: 'ffffff',
- token: 'meta.diff.header.from-file'
- },
- {
- foreground: '718c00',
- token: 'markup.inserted.diff'
- },
- {
- foreground: '718c00',
- token: 'meta.diff.header.to-file'
- },
- {
- foreground: 'c82829',
- token: 'markup.deleted.diff'
- },
- {
- foreground: 'c82829',
- token: 'meta.diff.header.from-file'
- },
- {
- foreground: 'ffffff',
- background: '4271ae',
- token: 'meta.diff.header.from-file'
- },
- {
- foreground: 'ffffff',
- background: '4271ae',
- token: 'meta.diff.header.to-file'
- },
- {
- foreground: '3e999f',
- fontStyle: 'italic',
- token: 'meta.diff.range'
- }
- ],
- colors: {
- 'editor.foreground': '#C5C8C6',
- 'editor.background': '#1D1F21',
- 'editor.selectionBackground': '#373B41',
- 'editor.lineHighlightBackground': '#282A2E',
- 'editorCursor.foreground': '#AEAFAD',
- 'editorWhitespace.foreground': '#4B4E55'
- }
- }
|