-
Notifications
You must be signed in to change notification settings - Fork 1
/
optsSchema.json
60 lines (60 loc) · 1.5 KB
/
optsSchema.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
{
"type": "object",
"title": "postcss-custom-props-themes schema",
"description": "Options passed to the postcss-custom-props-themes plugin.",
"required": ["defaultTheme", "themes"],
"properties": {
"defaultTheme": {
"description": "The theme that will be applied globally.",
"type": "string"
},
"themes": {
"type": "array",
"maxItems": 50,
"items": {
"title": "Theme",
"description": "A theme to generate CSS for.",
"type": "object",
"required": ["name"],
"properties": {
"name": {
"description": "The name of the theme.",
"type": "string"
},
"inherits": {
"descriptions":
"A theme for this theme's unset properties to inherit from.",
"type": "string"
},
"background-color": {
"type": "string"
},
"background-hover-color": {
"type": "string"
},
"color": {
"type": "string"
},
"link-color": {
"type": "string"
},
"link-hover-color": {
"type": "string"
},
"heading-color": {
"type": "string"
},
"heading-link-color": {
"type": "string"
},
"heading-link-hover-color": {
"type": "string"
},
"border-color": {
"type": "string"
}
}
}
}
}
}