-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.6 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "kintsugi",
"displayName": "Kintsugi",
"description": "A sophisticated theme for the discerning developer, inspired by the Japanese art of Kintsugi. Available in dark and light variants.",
"version": "0.2.1",
"license": "MIT",
"publisher": "ahmedhatem",
"author": {
"name": "Ahmed Hatem"
},
"repository": {
"type": "git",
"url": "https://github.com/ahatem/vscode-kintsugi.git"
},
"icon": "assets/icon-rounded.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"light",
"kintsugi",
"minimal",
"minimalist",
"clean",
"focus",
"zen",
"elegant",
"soft",
"calm",
"aesthetic",
"professional",
"low contrast",
"gold",
"warm",
"brown",
"sand",
"beige",
"charcoal",
"flared",
"orange",
"terracotta",
"cozy",
"autumn",
"monokai",
"gruvbox",
"washi",
"ivory",
"japanese",
"ceramic"
],
"contributes": {
"themes": [
{
"label": "Kintsugi Dark",
"uiTheme": "vs-dark",
"path": "./themes/Kintsugi-Dark-color-theme.json"
},
{
"label": "Kintsugi Dark Flared",
"uiTheme": "vs-dark",
"path": "./themes/Kintsugi-Dark-Flared-color-theme.json"
},
{
"label": "Kintsugi Light",
"uiTheme": "vs",
"path": "./themes/Kintsugi-Light-color-theme.json"
},
{
"label": "Kintsugi Light Flared",
"uiTheme": "vs",
"path": "./themes/Kintsugi-Light-Flared-color-theme.json"
}
]
}
}