aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json119
1 files changed, 119 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 015b912b3..c72037da9 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -268,6 +268,125 @@
268 }, 268 },
269 "pattern": "$rustc" 269 "pattern": "$rustc"
270 } 270 }
271 ],
272 "colors": [
273 {
274 "id": "ralsp.background",
275 "description": "Background color",
276 "defaults": {
277 "dark": "#3F3F3F",
278 "light": "#001080",
279 "highContrast": "#000000"
280 }
281 },
282 {
283 "id": "ralsp.comment",
284 "description": "Color for comments",
285 "defaults": {
286 "dark": "#7F9F7F",
287 "light": "#008000",
288 "highContrast": "#7CA668"
289 }
290 },
291 {
292 "id": "ralsp.string",
293 "description": "Color for strings",
294 "defaults": {
295 "dark": "#CC9393",
296 "light": "#A31515",
297 "highContrast": "#CE9178"
298 }
299 },
300 {
301 "id": "ralsp.unsafe",
302 "description": "Color for unsafe",
303 "defaults": {
304 "dark": "#FF3030",
305 "light": "#FF1010",
306 "highContrast": "#FF1010"
307 }
308 },
309 {
310 "id": "ralsp.keyword",
311 "description": "Color for keywords",
312 "defaults": {
313 "dark": "#F0DFAF",
314 "light": "#0000FF",
315 "highContrast": "#569CD6"
316 }
317 },
318 {
319 "id": "ralsp.control",
320 "description": "Color for control keywords",
321 "defaults": {
322 "dark": "#CF20FB",
323 "light": "#AF00DB",
324 "highContrast": "#C586C0"
325 }
326 },
327 {
328 "id": "ralsp.function",
329 "description": "Color for functions",
330 "defaults": {
331 "dark": "#93E0E3",
332 "light": "#795E26",
333 "highContrast": "#DCDCAA"
334 }
335 },
336 {
337 "id": "ralsp.parameter",
338 "description": "Color for parameters",
339 "defaults": {
340 "dark": "#94BFF3",
341 "light": "#001080",
342 "highContrast": "#9CDCFE"
343 }
344 },
345 {
346 "id": "ralsp.builtin",
347 "description": "Color for builtins",
348 "defaults": {
349 "dark": "#DD6718",
350 "light": "#DD6718",
351 "highContrast": "#DD6718"
352 }
353 },
354 {
355 "id": "ralsp.text",
356 "description": "Color for text",
357 "defaults": {
358 "dark": "#DCDCCC",
359 "light": "#000000",
360 "highContrast": "#FFFFFF"
361 }
362 },
363 {
364 "id": "ralsp.attribute",
365 "description": "Color for attributes",
366 "defaults": {
367 "dark": "#BFEBBF",
368 "light": "#1F4B1F",
369 "highContrast": "#108010"
370 }
371 },
372 {
373 "id": "ralsp.literal",
374 "description": "Color for literals",
375 "defaults": {
376 "dark": "#DFAF8F",
377 "light": "#09885A",
378 "highContrast": "#B5CEA8"
379 }
380 },
381 {
382 "id": "ralsp.macro",
383 "description": "Color for DFAF8F",
384 "defaults": {
385 "dark": "#BFEBBF",
386 "light": "#DD6718",
387 "highContrast": "#ED7718"
388 }
389 }
271 ] 390 ]
272 } 391 }
273} 392}