1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
"name": "linux-themes",
"displayName": "Linux Themes for VS Code",
"description": "Color themes designed to match the popular Ubuntu themes.",
"version": "0.4.0",
"publisher": "SolarLiner",
"icon": "icon.png",
"license": "MIT",
"repository": {
"type": "GitHub",
"url": "https://github.com/SolarLiner/vscode-arc-theme"
},
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Arc Dark",
"uiTheme": "vs-dark",
"path": "./themes/arc-dark.json"
},
{
"label": "Adapta Nokto",
"uiTheme": "vs-dark",
"path": "./themes/adapta-nokto.json"
}
]
}
}
|