-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.template-designtokensrc.json
41 lines (41 loc) · 1.23 KB
/
.template-designtokensrc.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
{
"figmaApiKey": "",
"figmaProjectId": "",
"outputDir": "design-tokens",
"figmaPages": {
"Colors": ["Colors"],
"Other Page": ["Gradients"],
"Design Tokens": ["Typography", "Shadows", "Borders", "Breakpoints"],
"Spacings": ["Spacings"]
},
"figmaThemes": ["dark"],
"styleDictionary": {
"source": ["design-tokens/**/*.json"],
"platforms": {
"css": {
"transformGroup": "css",
"buildPath": "design-tokens/tokens/",
"files": [
{
"destination": "variables.css",
"format": "css/variables"
},
{
"destination": "variables-themes.css",
"format": "css/variables-themes"
}
]
},
"javascript": {
"transformGroup": "js",
"buildPath": "design-tokens/tokens/js/",
"files": [
{
"destination": "variables.ts",
"format": "javascript/es6"
}
]
}
}
}
}