forked from tokens-studio/plugin-example-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokens.json
46 lines (46 loc) · 827 Bytes
/
tokens.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
{
"global": {
"colors": {
"red": {
"300": {
"value": "#FCA5A5",
"type": "color"
},
"500": {
"value": "#EF4444",
"type": "color"
},
"700": {
"value": "#B91C1C",
"type": "color"
}
},
"black": {
"value": "#000000",
"type": "color"
},
"white": {
"value": "#ffffff",
"type": "color"
}
},
"spacing": {
"sm": {
"value": "4",
"type": "spacing"
},
"md": {
"value": "{spacing.sm} * 2",
"type": "spacing"
},
"lg": {
"value": "{spacing.md} * 2",
"type": "spacing"
},
"xl": {
"value": "{spacing.lg} * 2",
"type": "spacing"
}
}
}
}