| 1 |
{ |
| 2 |
"name": "solarized-light", |
| 3 |
"tokenColors": [ |
| 4 |
{ |
| 5 |
"settings": { |
| 6 |
"foreground": "#657B83" |
| 7 |
} |
| 8 |
}, |
| 9 |
{ |
| 10 |
"scope": [ |
| 11 |
"meta.embedded", |
| 12 |
"source.groovy.embedded", |
| 13 |
"string meta.image.inline.markdown", |
| 14 |
"variable.legacy.builtin.python" |
| 15 |
], |
| 16 |
"settings": { |
| 17 |
"foreground": "#657B83" |
| 18 |
} |
| 19 |
}, |
| 20 |
{ |
| 21 |
"name": "Comment", |
| 22 |
"scope": "comment", |
| 23 |
"settings": { |
| 24 |
"fontStyle": "italic", |
| 25 |
"foreground": "#93A1A1" |
| 26 |
} |
| 27 |
}, |
| 28 |
{ |
| 29 |
"name": "String", |
| 30 |
"scope": "string", |
| 31 |
"settings": { |
| 32 |
"foreground": "#2AA198" |
| 33 |
} |
| 34 |
}, |
| 35 |
{ |
| 36 |
"name": "Regexp", |
| 37 |
"scope": "string.regexp", |
| 38 |
"settings": { |
| 39 |
"foreground": "#DC322F" |
| 40 |
} |
| 41 |
}, |
| 42 |
{ |
| 43 |
"name": "Number", |
| 44 |
"scope": "constant.numeric", |
| 45 |
"settings": { |
| 46 |
"foreground": "#D33682" |
| 47 |
} |
| 48 |
}, |
| 49 |
{ |
| 50 |
"name": "Variable", |
| 51 |
"scope": ["variable.language", "variable.other"], |
| 52 |
"settings": { |
| 53 |
"foreground": "#268BD2" |
| 54 |
} |
| 55 |
}, |
| 56 |
{ |
| 57 |
"name": "Keyword", |
| 58 |
"scope": "keyword", |
| 59 |
"settings": { |
| 60 |
"foreground": "#859900" |
| 61 |
} |
| 62 |
}, |
| 63 |
{ |
| 64 |
"name": "Storage", |
| 65 |
"scope": "storage", |
| 66 |
"settings": { |
| 67 |
"fontStyle": "bold", |
| 68 |
"foreground": "#586E75" |
| 69 |
} |
| 70 |
}, |
| 71 |
{ |
| 72 |
"name": "Class name", |
| 73 |
"scope": [ |
| 74 |
"entity.name.class", |
| 75 |
"entity.name.type", |
| 76 |
"entity.name.namespace", |
| 77 |
"entity.name.scope-resolution" |
| 78 |
], |
| 79 |
"settings": { |
| 80 |
"fontStyle": "", |
| 81 |
"foreground": "#CB4B16" |
| 82 |
} |
| 83 |
}, |
| 84 |
{ |
| 85 |
"name": "Function name", |
| 86 |
"scope": "entity.name.function", |
| 87 |
"settings": { |
| 88 |
"foreground": "#268BD2" |
| 89 |
} |
| 90 |
}, |
| 91 |
{ |
| 92 |
"name": "Variable start", |
| 93 |
"scope": "punctuation.definition.variable", |
| 94 |
"settings": { |
| 95 |
"foreground": "#859900" |
| 96 |
} |
| 97 |
}, |
| 98 |
{ |
| 99 |
"name": "Embedded code markers", |
| 100 |
"scope": ["punctuation.section.embedded.begin", "punctuation.section.embedded.end"], |
| 101 |
"settings": { |
| 102 |
"foreground": "#DC322F" |
| 103 |
} |
| 104 |
}, |
| 105 |
{ |
| 106 |
"name": "Built-in constant", |
| 107 |
"scope": ["constant.language", "meta.preprocessor"], |
| 108 |
"settings": { |
| 109 |
"foreground": "#B58900" |
| 110 |
} |
| 111 |
}, |
| 112 |
{ |
| 113 |
"name": "Support.construct", |
| 114 |
"scope": ["support.function.construct", "keyword.other.new"], |
| 115 |
"settings": { |
| 116 |
"foreground": "#CB4B16" |
| 117 |
} |
| 118 |
}, |
| 119 |
{ |
| 120 |
"name": "User-defined constant", |
| 121 |
"scope": ["constant.character", "constant.other"], |
| 122 |
"settings": { |
| 123 |
"foreground": "#CB4B16" |
| 124 |
} |
| 125 |
}, |
| 126 |
{ |
| 127 |
"name": "Inherited class", |
| 128 |
"scope": "entity.other.inherited-class", |
| 129 |
"settings": { |
| 130 |
"foreground": "#6C71C4" |
| 131 |
} |
| 132 |
}, |
| 133 |
{ |
| 134 |
"name": "Function argument", |
| 135 |
"scope": "variable.parameter", |
| 136 |
"settings": {} |
| 137 |
}, |
| 138 |
{ |
| 139 |
"name": "Tag name", |
| 140 |
"scope": "entity.name.tag", |
| 141 |
"settings": { |
| 142 |
"foreground": "#268BD2" |
| 143 |
} |
| 144 |
}, |
| 145 |
{ |
| 146 |
"name": "Tag start/end", |
| 147 |
"scope": "punctuation.definition.tag", |
| 148 |
"settings": { |
| 149 |
"foreground": "#93A1A1" |
| 150 |
} |
| 151 |
}, |
| 152 |
{ |
| 153 |
"name": "Tag attribute", |
| 154 |
"scope": "entity.other.attribute-name", |
| 155 |
"settings": { |
| 156 |
"foreground": "#93A1A1" |
| 157 |
} |
| 158 |
}, |
| 159 |
{ |
| 160 |
"name": "Library function", |
| 161 |
"scope": "support.function", |
| 162 |
"settings": { |
| 163 |
"foreground": "#268BD2" |
| 164 |
} |
| 165 |
}, |
| 166 |
{ |
| 167 |
"name": "Continuation", |
| 168 |
"scope": "punctuation.separator.continuation", |
| 169 |
"settings": { |
| 170 |
"foreground": "#DC322F" |
| 171 |
} |
| 172 |
}, |
| 173 |
{ |
| 174 |
"name": "Library constant", |
| 175 |
"scope": ["support.constant", "support.variable"], |
| 176 |
"settings": {} |
| 177 |
}, |
| 178 |
{ |
| 179 |
"name": "Library class/type", |
| 180 |
"scope": ["support.type", "support.class"], |
| 181 |
"settings": { |
| 182 |
"foreground": "#859900" |
| 183 |
} |
| 184 |
}, |
| 185 |
{ |
| 186 |
"name": "Library Exception", |
| 187 |
"scope": "support.type.exception", |
| 188 |
"settings": { |
| 189 |
"foreground": "#CB4B16" |
| 190 |
} |
| 191 |
}, |
| 192 |
{ |
| 193 |
"name": "Library variable", |
| 194 |
"scope": "support.other.variable", |
| 195 |
"settings": {} |
| 196 |
}, |
| 197 |
{ |
| 198 |
"name": "Invalid", |
| 199 |
"scope": "invalid", |
| 200 |
"settings": { |
| 201 |
"foreground": "#DC322F" |
| 202 |
} |
| 203 |
}, |
| 204 |
{ |
| 205 |
"name": "diff: header", |
| 206 |
"scope": ["meta.diff", "meta.diff.header"], |
| 207 |
"settings": { |
| 208 |
"fontStyle": "italic", |
| 209 |
"foreground": "#268BD2" |
| 210 |
} |
| 211 |
}, |
| 212 |
{ |
| 213 |
"name": "diff: deleted", |
| 214 |
"scope": "markup.deleted", |
| 215 |
"settings": { |
| 216 |
"fontStyle": "", |
| 217 |
"foreground": "#DC322F" |
| 218 |
} |
| 219 |
}, |
| 220 |
{ |
| 221 |
"name": "diff: changed", |
| 222 |
"scope": "markup.changed", |
| 223 |
"settings": { |
| 224 |
"fontStyle": "", |
| 225 |
"foreground": "#CB4B16" |
| 226 |
} |
| 227 |
}, |
| 228 |
{ |
| 229 |
"name": "diff: inserted", |
| 230 |
"scope": "markup.inserted", |
| 231 |
"settings": { |
| 232 |
"foreground": "#859900" |
| 233 |
} |
| 234 |
}, |
| 235 |
{ |
| 236 |
"name": "Markup Quote", |
| 237 |
"scope": "markup.quote", |
| 238 |
"settings": { |
| 239 |
"foreground": "#859900" |
| 240 |
} |
| 241 |
}, |
| 242 |
{ |
| 243 |
"name": "Markup Lists", |
| 244 |
"scope": "markup.list", |
| 245 |
"settings": { |
| 246 |
"foreground": "#B58900" |
| 247 |
} |
| 248 |
}, |
| 249 |
{ |
| 250 |
"name": "Markup Styling", |
| 251 |
"scope": ["markup.bold", "markup.italic"], |
| 252 |
"settings": { |
| 253 |
"foreground": "#D33682" |
| 254 |
} |
| 255 |
}, |
| 256 |
{ |
| 257 |
"name": "Markup: Strong", |
| 258 |
"scope": "markup.bold", |
| 259 |
"settings": { |
| 260 |
"fontStyle": "bold" |
| 261 |
} |
| 262 |
}, |
| 263 |
{ |
| 264 |
"name": "Markup: Emphasis", |
| 265 |
"scope": "markup.italic", |
| 266 |
"settings": { |
| 267 |
"fontStyle": "italic" |
| 268 |
} |
| 269 |
}, |
| 270 |
{ |
| 271 |
"scope": "markup.strikethrough", |
| 272 |
"settings": { |
| 273 |
"fontStyle": "strikethrough" |
| 274 |
} |
| 275 |
}, |
| 276 |
{ |
| 277 |
"name": "Markup Inline", |
| 278 |
"scope": "markup.inline.raw", |
| 279 |
"settings": { |
| 280 |
"fontStyle": "", |
| 281 |
"foreground": "#2AA198" |
| 282 |
} |
| 283 |
}, |
| 284 |
{ |
| 285 |
"name": "Markup Headings", |
| 286 |
"scope": "markup.heading", |
| 287 |
"settings": { |
| 288 |
"fontStyle": "bold", |
| 289 |
"foreground": "#268BD2" |
| 290 |
} |
| 291 |
}, |
| 292 |
{ |
| 293 |
"name": "Markup Setext Header", |
| 294 |
"scope": "markup.heading.setext", |
| 295 |
"settings": { |
| 296 |
"fontStyle": "", |
| 297 |
"foreground": "#268BD2" |
| 298 |
} |
| 299 |
} |
| 300 |
], |
| 301 |
"colors": { |
| 302 |
"focusBorder": "#b49471", |
| 303 |
"input.background": "#DDD6C1", |
| 304 |
"input.foreground": "#586E75", |
| 305 |
"input.placeholderForeground": "#586E75AA", |
| 306 |
"inputOption.activeBorder": "#D3AF86", |
| 307 |
"badge.background": "#B58900AA", |
| 308 |
"progressBar.background": "#B58900", |
| 309 |
"dropdown.background": "#EEE8D5", |
| 310 |
"dropdown.border": "#D3AF86", |
| 311 |
"button.background": "#AC9D57", |
| 312 |
"selection.background": "#878b9180", |
| 313 |
"list.activeSelectionBackground": "#DFCA88", |
| 314 |
"list.activeSelectionForeground": "#6C6C6C", |
| 315 |
"quickInputList.focusBackground": "#DFCA8866", |
| 316 |
"list.hoverBackground": "#DFCA8844", |
| 317 |
"list.inactiveSelectionBackground": "#D1CBB8", |
| 318 |
"list.highlightForeground": "#B58900", |
| 319 |
"editor.background": "#FDF6E3", |
| 320 |
"editor.foreground": "#657B83", |
| 321 |
"notebook.cellEditorBackground": "#F7F0E0", |
| 322 |
"editorWidget.background": "#EEE8D5", |
| 323 |
"editorCursor.foreground": "#657B83", |
| 324 |
"editorWhitespace.foreground": "#586E7580", |
| 325 |
"editor.lineHighlightBackground": "#EEE8D5", |
| 326 |
"editor.selectionBackground": "#EEE8D5", |
| 327 |
"minimap.selectionHighlight": "#EEE8D5", |
| 328 |
"editorIndentGuide.background": "#586E7580", |
| 329 |
"editorIndentGuide.activeBackground": "#081E2580", |
| 330 |
"editorHoverWidget.background": "#CCC4B0", |
| 331 |
"editorLineNumber.activeForeground": "#567983", |
| 332 |
"peekViewResult.background": "#EEE8D5", |
| 333 |
"peekViewEditor.background": "#FFFBF2", |
| 334 |
"peekViewTitle.background": "#EEE8D5", |
| 335 |
"peekView.border": "#B58900", |
| 336 |
"peekViewEditor.matchHighlightBackground": "#7744AA40", |
| 337 |
"titleBar.activeBackground": "#EEE8D5", |
| 338 |
"editorGroup.border": "#DDD6C1", |
| 339 |
"editorGroup.dropBackground": "#DDD6C1AA", |
| 340 |
"editorGroupHeader.tabsBackground": "#D9D2C2", |
| 341 |
"tab.border": "#DDD6C1", |
| 342 |
"tab.activeBackground": "#FDF6E3", |
| 343 |
"tab.inactiveForeground": "#586E75", |
| 344 |
"tab.inactiveBackground": "#D3CBB7", |
| 345 |
"tab.activeModifiedBorder": "#cb4b16", |
| 346 |
"tab.lastPinnedBorder": "#FDF6E3", |
| 347 |
"activityBar.background": "#DDD6C1", |
| 348 |
"activityBar.foreground": "#584c27", |
| 349 |
"activityBarBadge.background": "#B58900", |
| 350 |
"panel.border": "#DDD6C1", |
| 351 |
"sideBar.background": "#EEE8D5", |
| 352 |
"sideBarTitle.foreground": "#586E75", |
| 353 |
"statusBar.foreground": "#586E75", |
| 354 |
"statusBar.background": "#EEE8D5", |
| 355 |
"statusBar.debuggingBackground": "#EEE8D5", |
| 356 |
"statusBar.noFolderBackground": "#EEE8D5", |
| 357 |
"statusBarItem.remoteBackground": "#AC9D57", |
| 358 |
"ports.iconRunningProcessForeground": "#2AA19899", |
| 359 |
"statusBarItem.prominentBackground": "#DDD6C1", |
| 360 |
"statusBarItem.prominentHoverBackground": "#DDD6C199", |
| 361 |
"debugToolBar.background": "#DDD6C1", |
| 362 |
"debugExceptionWidget.background": "#DDD6C1", |
| 363 |
"debugExceptionWidget.border": "#AB395B", |
| 364 |
"pickerGroup.border": "#2AA19899", |
| 365 |
"pickerGroup.foreground": "#2AA19899", |
| 366 |
"extensionButton.prominentBackground": "#b58900", |
| 367 |
"extensionButton.prominentHoverBackground": "#584c27aa", |
| 368 |
"terminal.ansiBlack": "#073642", |
| 369 |
"terminal.ansiRed": "#dc322f", |
| 370 |
"terminal.ansiGreen": "#859900", |
| 371 |
"terminal.ansiYellow": "#b58900", |
| 372 |
"terminal.ansiBlue": "#268bd2", |
| 373 |
"terminal.ansiMagenta": "#d33682", |
| 374 |
"terminal.ansiCyan": "#2aa198", |
| 375 |
"terminal.ansiWhite": "#eee8d5", |
| 376 |
"terminal.ansiBrightBlack": "#002b36", |
| 377 |
"terminal.ansiBrightRed": "#cb4b16", |
| 378 |
"terminal.ansiBrightGreen": "#586e75", |
| 379 |
"terminal.ansiBrightYellow": "#657b83", |
| 380 |
"terminal.ansiBrightBlue": "#839496", |
| 381 |
"terminal.ansiBrightMagenta": "#6c71c4", |
| 382 |
"terminal.ansiBrightCyan": "#93a1a1", |
| 383 |
"terminal.ansiBrightWhite": "#fdf6e3", |
| 384 |
"terminal.background": "#FDF6E3", |
| 385 |
"walkThrough.embeddedEditorBackground": "#00000014" |
| 386 |
}, |
| 387 |
"semanticHighlighting": true |
| 388 |
} |
| 389 |
|