@equinor/eds-tokens 2.3.2 → 3.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -3
- package/src/tokens/css/color-scheme/dark.css +100 -0
- package/src/tokens/css/color-scheme/light.css +100 -0
- package/src/tokens/css/colors/default.css +212 -0
- package/src/tokens/css/density/comfortable.css +51 -0
- package/src/tokens/css/density/compact.css +51 -0
- package/src/tokens/css/density/relaxed.css +51 -0
- package/src/tokens/css/font/default.css +7 -0
- package/src/tokens/css/primitives/default.css +84 -0
- package/src/tokens/css/semantic/default.css +115 -0
- package/src/tokens/css/variables.css +772 -0
- package/src/tokens/dtcg/color-scheme/dark.json +1092 -0
- package/src/tokens/dtcg/color-scheme/light.json +1092 -0
- package/src/tokens/dtcg/colors/default.json +2344 -0
- package/src/tokens/dtcg/density/comfortable.json +748 -0
- package/src/tokens/dtcg/density/compact.json +748 -0
- package/src/tokens/dtcg/density/relaxed.json +748 -0
- package/src/tokens/dtcg/font/default.json +76 -0
- package/src/tokens/dtcg/primitives/default.json +1181 -0
- package/src/tokens/dtcg/semantic/default.json +1667 -0
- package/src/tokens/ts/color-scheme/dark.ts +119 -0
- package/src/tokens/ts/color-scheme/light.ts +119 -0
- package/src/tokens/ts/colors/default.ts +251 -0
- package/src/tokens/ts/density/comfortable.ts +102 -0
- package/src/tokens/ts/density/compact.ts +102 -0
- package/src/tokens/ts/density/relaxed.ts +102 -0
- package/src/tokens/ts/font/default.ts +18 -0
- package/src/tokens/ts/primitives/default.ts +171 -0
- package/src/tokens/ts/semantic/dark.ts +214 -0
- package/src/tokens/ts/semantic/light.ts +214 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"family": {
|
|
3
|
+
"header": {
|
|
4
|
+
"$extensions": {
|
|
5
|
+
"$extensions": {
|
|
6
|
+
"com.figma": {
|
|
7
|
+
"hiddenFromPublishing": true,
|
|
8
|
+
"scopes": [
|
|
9
|
+
"FONT_FAMILY"
|
|
10
|
+
]
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"$type": "fontFamily",
|
|
15
|
+
"$value": "{primitives.font-family.equinor}"
|
|
16
|
+
},
|
|
17
|
+
"ui": {
|
|
18
|
+
"$extensions": {
|
|
19
|
+
"$extensions": {
|
|
20
|
+
"com.figma": {
|
|
21
|
+
"hiddenFromPublishing": true,
|
|
22
|
+
"scopes": [
|
|
23
|
+
"FONT_FAMILY"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"$type": "fontFamily",
|
|
29
|
+
"$value": "{primitives.font-family.inter}"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"weight": {
|
|
33
|
+
"bolder": {
|
|
34
|
+
"$extensions": {
|
|
35
|
+
"$extensions": {
|
|
36
|
+
"com.figma": {
|
|
37
|
+
"hiddenFromPublishing": true,
|
|
38
|
+
"scopes": [
|
|
39
|
+
"FONT_WEIGHT"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"$type": "fontWeight",
|
|
45
|
+
"$value": "{primitives.weight-scale.bolder}"
|
|
46
|
+
},
|
|
47
|
+
"lighter": {
|
|
48
|
+
"$extensions": {
|
|
49
|
+
"$extensions": {
|
|
50
|
+
"com.figma": {
|
|
51
|
+
"hiddenFromPublishing": true,
|
|
52
|
+
"scopes": [
|
|
53
|
+
"FONT_WEIGHT"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"$type": "fontWeight",
|
|
59
|
+
"$value": "{primitives.weight-scale.lighter}"
|
|
60
|
+
},
|
|
61
|
+
"normal": {
|
|
62
|
+
"$extensions": {
|
|
63
|
+
"$extensions": {
|
|
64
|
+
"com.figma": {
|
|
65
|
+
"hiddenFromPublishing": true,
|
|
66
|
+
"scopes": [
|
|
67
|
+
"FONT_WEIGHT"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"$type": "fontWeight",
|
|
73
|
+
"$value": "{primitives.weight-scale.normal}"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|