-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproduct-icon-theme.json
93 lines (93 loc) · 3.73 KB
/
product-icon-theme.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
{
"type": "object",
"allowComments": true,
"allowTrailingCommas": true,
"properties": {
"fonts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the font.",
"pattern": "^([\\w_-]+)$",
"patternErrorMessage": "The ID must only contain letters, numbers, underscore and minus."
},
"src": {
"type": "array",
"description": "The location of the font.",
"items": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The font path, relative to the current product icon theme file."
},
"format": {
"type": "string",
"description": "The format of the font.",
"enum": [
"woff",
"woff2",
"truetype",
"opentype",
"embedded-opentype",
"svg"
]
}
},
"required": [
"path",
"format"
]
}
},
"weight": {
"type": "string",
"description": "The weight of the font. See https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight for valid values.",
"anyOf": [
{
"enum": [
"normal",
"bold",
"lighter",
"bolder"
]
},
{
"type": "string",
"pattern": "^(normal|bold|lighter|bolder|(\\d{0-1000}))$"
}
]
},
"style": {
"type": "string",
"description": "The style of the font. See https://developer.mozilla.org/en-US/docs/Web/CSS/font-style for valid values.",
"anyOf": [
{
"enum": [
"normal",
"italic",
"oblique"
]
},
{
"type": "string",
"pattern": "^(normal|italic|(oblique[ \\w\\s-]+))$"
}
]
}
},
"required": [
"id",
"src"
]
}
},
"iconDefinitions": {
"description": "Association of icon name to a font character.",
"$ref": "vscode://schemas/icons"
}
}
}