-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.64 KB
/
package.json
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
{
"name": "tone-syntax",
"theme": "syntax",
"version": "0.2.2",
"description": "An Atom syntax theme with customizable colors",
"keywords": [
"tone",
"syntax",
"customizable"
],
"repository": "https://github.com/simurai/tone-syntax",
"license": "MIT",
"main": "lib/main",
"engines": {
"atom": ">1.9.0 <2.0.0"
},
"dependencies": {
"chroma-js": "1.1.1"
},
"configSchema": {
"color": {
"title": "Custom Colors",
"type": "object",
"properties": {
"uno": {
"title": "Uno",
"description": "Customize the main color",
"order": 1,
"type": "color",
"default": "#dbdbff"
},
"duo": {
"title": "Duo",
"description": "Customize the first accent color",
"order": 2,
"type": "color",
"default": "#6cbeff"
},
"tri": {
"title": "Tri",
"description": "Customize the second accent color",
"order": 3,
"type": "color",
"default": "#1fffd2"
},
"bg": {
"title": "Background",
"description": "Customize the background color",
"order": 4,
"type": "color",
"default": "#2e2e43"
},
"syncUI": {
"title": "Sync UI",
"description": "After making some changes, enable this to sync the colors also with other UI themes and packages. Note: It may take a few seconds to take effect. Doing this manually keeps the performance police happy. 🚓",
"order": 5,
"type": "boolean",
"default": "true"
}
}
}
}
}