-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-dictionary.config.json
54 lines (54 loc) · 1.47 KB
/
style-dictionary.config.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
{
"source": ["tokens/**/*.json"],
"platforms": {
"css": {
"transformGroup": "css",
"buildPath": "build/css/",
"files": [
{
"destination": "_variables.css",
"format": "css/variables"
}
],
"options": {
"outputReferences": true
}
},
"storybook": {
"transformGroup": "storybook",
"buildPath": "build/stories/",
"files": [
{
"destination": "colors.mdx",
"format": "stories/colors",
"filter": "category/color",
"options": {
"title": "Colors",
"description": "The design system color palette consisting of a collection of color scales in a range of contrast ratios from the background color."
}
},
{
"destination": "typography.mdx",
"format": "stories/typography",
"filter": "category/font",
"options": {
"title": "Typography",
"description": "The design system typography consisting of a collection of font families, sizes, and weights."
}
},
{
"destination": "spacing-scale.mdx",
"format": "stories/spacing",
"filter": "type/spacing",
"options": {
"title": "Spacing",
"description": "The design system spacing scale used for padding and margins"
}
}
],
"options": {
"outputReferences": true
}
}
}
}