@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.
Files changed (30) hide show
  1. package/package.json +10 -3
  2. package/src/tokens/css/color-scheme/dark.css +100 -0
  3. package/src/tokens/css/color-scheme/light.css +100 -0
  4. package/src/tokens/css/colors/default.css +212 -0
  5. package/src/tokens/css/density/comfortable.css +51 -0
  6. package/src/tokens/css/density/compact.css +51 -0
  7. package/src/tokens/css/density/relaxed.css +51 -0
  8. package/src/tokens/css/font/default.css +7 -0
  9. package/src/tokens/css/primitives/default.css +84 -0
  10. package/src/tokens/css/semantic/default.css +115 -0
  11. package/src/tokens/css/variables.css +772 -0
  12. package/src/tokens/dtcg/color-scheme/dark.json +1092 -0
  13. package/src/tokens/dtcg/color-scheme/light.json +1092 -0
  14. package/src/tokens/dtcg/colors/default.json +2344 -0
  15. package/src/tokens/dtcg/density/comfortable.json +748 -0
  16. package/src/tokens/dtcg/density/compact.json +748 -0
  17. package/src/tokens/dtcg/density/relaxed.json +748 -0
  18. package/src/tokens/dtcg/font/default.json +76 -0
  19. package/src/tokens/dtcg/primitives/default.json +1181 -0
  20. package/src/tokens/dtcg/semantic/default.json +1667 -0
  21. package/src/tokens/ts/color-scheme/dark.ts +119 -0
  22. package/src/tokens/ts/color-scheme/light.ts +119 -0
  23. package/src/tokens/ts/colors/default.ts +251 -0
  24. package/src/tokens/ts/density/comfortable.ts +102 -0
  25. package/src/tokens/ts/density/compact.ts +102 -0
  26. package/src/tokens/ts/density/relaxed.ts +102 -0
  27. package/src/tokens/ts/font/default.ts +18 -0
  28. package/src/tokens/ts/primitives/default.ts +171 -0
  29. package/src/tokens/ts/semantic/dark.ts +214 -0
  30. 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
+ }