This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 204
/
package.json
172 lines (172 loc) · 4.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "atom-material-ui",
"theme": "ui",
"version": "2.1.3",
"description": "A dynamic UI theme for Atom that follows Google's Material Design Guidelines",
"main": "./lib/main",
"keywords": [
"ui",
"theme",
"material",
"md",
"dynamic",
"adaptive",
"adapt to syntax",
"material design"
],
"repository": "https://github.com/atom-material/atom-material-ui",
"license": "MIT",
"engines": {
"atom": ">=1.17.0 <2.0.0"
},
"dependencies": {
"tinycolor2": "1.3.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0"
},
"configSchema": {
"colors": {
"order": 1,
"type": "object",
"title": "Colors",
"properties": {
"abaseColor": {
"title": "Primary color",
"description": "Changes the main theme color.",
"type": "color",
"default": "#009688"
},
"accentColor": {
"title": "Secondary color",
"description": "This color is used as an accent to the Primary Color.",
"type": "color",
"default": "#FFFFFF"
},
"genAccent": {
"title": "Generate complementary secondary color",
"description": "Generates a complementary color based on your selected Primary Color.",
"type": "boolean",
"default": false
},
"predefinedColor": {
"title": "Predefined colors",
"description": "Pick a predefined color from the Material Design palette. If you change the Primary Color it will override this settings.",
"type": "string",
"enum": [
"Amber",
"Blue",
"Blue Grey",
"Brown",
"Cyan",
"Green",
"Grey",
"Indigo",
"Lime",
"Orange",
"Pink",
"Purple",
"Red",
"Teal"
],
"default": "Teal"
},
"paintCursor": {
"title": "Paint text editor's cursor",
"description": "Overrides the syntax theme's cursor color with the selected Primary Color.",
"type": "boolean",
"default": false
}
}
},
"ui": {
"order": 2,
"type": "object",
"title": "User Interface",
"properties": {
"useAnimations": {
"title": "Use animations",
"description": "Enables animations for clicked tabs and other UI elements.",
"type": "boolean",
"default": true
},
"panelContrast": {
"title": "Contrasting panels",
"description": "Adds a little contrast between panels to differentiate where one starts and the other ends.",
"type": "boolean",
"default": false
},
"panelShadows": {
"title": "Panels cast shadows",
"description": "Adds depth to the user interface by using shadows.",
"type": "boolean",
"default": false
}
}
},
"tabs": {
"order": 3,
"type": "object",
"title": "Tabs",
"properties": {
"compactTabs": {
"title": "Compact tab bar",
"description": "Reduces line height so the tab bar won't be too tall.",
"type": "boolean",
"default": false
},
"tintedTabBar": {
"title": "Tinted tab bar",
"description": "Paints the tab bar with the chosen primary color.",
"type": "boolean",
"default": false
},
"noTabMinWidth": {
"title": "No minimum width for tabs",
"description": "Prevents tabs from overflowing off the tab bar.",
"type": "boolean",
"default": false
},
"stretchedTabs": {
"title": "Stretched tabs",
"description": "Stretch tabs to full available width of the tab bar.",
"type": "boolean",
"default": false
}
}
},
"treeView": {
"order": 4,
"type": "object",
"title": "Tree View",
"properties": {
"compactTreeView": {
"title": "Compact tree view",
"description": "Reduces indentation in tree views.",
"type": "boolean",
"default": false
}
}
},
"fonts": {
"order": 5,
"type": "object",
"title": "Fonts",
"properties": {
"fontSize": {
"title": "User interface font size",
"description": "Scales the entire UI based on this value.",
"type": "number",
"default": 16,
"minimum": 10,
"maximum": 32
}
}
}
}
}