@devexpress/design-tokens-internal 261.0.0

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 (50) hide show
  1. package/README.md +6 -0
  2. package/package.json +18 -0
  3. package/tokens/base/borders.json +70 -0
  4. package/tokens/base/colors/icons/blazor-default/dark.json +34 -0
  5. package/tokens/base/colors/icons/blazor-default/light.json +34 -0
  6. package/tokens/base/colors/icons/dx-desktop/dark.json +34 -0
  7. package/tokens/base/colors/icons/dx-desktop/light.json +34 -0
  8. package/tokens/base/colors/icons/fluent/dark.json +34 -0
  9. package/tokens/base/colors/icons/fluent/light.json +34 -0
  10. package/tokens/base/colors/palettes/dx-office/orange.json +524 -0
  11. package/tokens/base/colors/palettes/fluent/blue.json +524 -0
  12. package/tokens/base/colors/palettes/fluent/cool-blue.json +524 -0
  13. package/tokens/base/colors/palettes/fluent/desert.json +524 -0
  14. package/tokens/base/colors/palettes/fluent/mint.json +524 -0
  15. package/tokens/base/colors/palettes/fluent/moss.json +524 -0
  16. package/tokens/base/colors/palettes/fluent/orchid.json +524 -0
  17. package/tokens/base/colors/palettes/fluent/purple.json +524 -0
  18. package/tokens/base/colors/palettes/fluent/rose.json +524 -0
  19. package/tokens/base/colors/palettes/fluent/rust.json +524 -0
  20. package/tokens/base/colors/palettes/fluent/steel.json +524 -0
  21. package/tokens/base/colors/palettes/fluent/storm.json +524 -0
  22. package/tokens/base/colors/utility/dx-office.json +554 -0
  23. package/tokens/base/colors/utility/fluent.json +554 -0
  24. package/tokens/base/opacity.json +88 -0
  25. package/tokens/base/spacing.json +200 -0
  26. package/tokens/base/typography/font-family.json +24 -0
  27. package/tokens/base/typography/font-size.json +96 -0
  28. package/tokens/base/typography/font-weight.json +40 -0
  29. package/tokens/base/typography/letter-spacing.json +8 -0
  30. package/tokens/base/typography/line-height.json +100 -0
  31. package/tokens/base/typography/text-case.json +20 -0
  32. package/tokens/base/typography/text-decoration.json +16 -0
  33. package/tokens/global/dx-office/theme-builder.json +56 -0
  34. package/tokens/global/fluent/theme-builder.json +56 -0
  35. package/tokens/semantic/box-shadow/dx-office.json +151 -0
  36. package/tokens/semantic/box-shadow/fluent.json +151 -0
  37. package/tokens/semantic/colors/dx-office/dark.json +1674 -0
  38. package/tokens/semantic/colors/dx-office/light.json +1674 -0
  39. package/tokens/semantic/colors/fluent/dark.json +1678 -0
  40. package/tokens/semantic/colors/fluent/light.json +1678 -0
  41. package/tokens/semantic/typography/dx-office/font-family.json +16 -0
  42. package/tokens/semantic/typography/dx-office/font-size.json +64 -0
  43. package/tokens/semantic/typography/dx-office/font-weight.json +52 -0
  44. package/tokens/semantic/typography/dx-office/letter-spacing.json +64 -0
  45. package/tokens/semantic/typography/dx-office/line-height.json +64 -0
  46. package/tokens/semantic/typography/fluent/font-family.json +16 -0
  47. package/tokens/semantic/typography/fluent/font-size.json +72 -0
  48. package/tokens/semantic/typography/fluent/font-weight.json +52 -0
  49. package/tokens/semantic/typography/fluent/letter-spacing.json +72 -0
  50. package/tokens/semantic/typography/fluent/line-height.json +72 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # DevExpress Internal Design Tokens
2
+
3
+ This package contains design tokens used by the DevExpress team for development.
4
+
5
+ # License
6
+ [DevExpress Licensing](https://www.devexpress.com/support/eulas/)
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@devexpress/design-tokens-internal",
3
+ "version": "261.0.0",
4
+ "description": "",
5
+ "license": "ISC",
6
+ "author": "",
7
+ "type": "commonjs",
8
+ "main": "index.js",
9
+ "files": [
10
+ "tokens/base",
11
+ "tokens/global",
12
+ "tokens/semantic"
13
+ ],
14
+ "scripts": {
15
+ "prepublishOnly": "node prepare-publish.js",
16
+ "test": "echo \"Error: no test specified\" && exit 1"
17
+ }
18
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "border-radius": {
3
+ "0": {
4
+ "$type": "borderRadius",
5
+ "$value": "0rem"
6
+ },
7
+ "10": {
8
+ "$type": "borderRadius",
9
+ "$value": "0.0625rem"
10
+ },
11
+ "20": {
12
+ "$type": "borderRadius",
13
+ "$value": "0.125rem"
14
+ },
15
+ "30": {
16
+ "$type": "borderRadius",
17
+ "$value": "0.1875rem"
18
+ },
19
+ "40": {
20
+ "$type": "borderRadius",
21
+ "$value": "0.25rem"
22
+ },
23
+ "50": {
24
+ "$type": "borderRadius",
25
+ "$value": "0.3125rem"
26
+ },
27
+ "60": {
28
+ "$type": "borderRadius",
29
+ "$value": "0.375rem"
30
+ },
31
+ "80": {
32
+ "$type": "borderRadius",
33
+ "$value": "0.5rem"
34
+ },
35
+ "120": {
36
+ "$type": "borderRadius",
37
+ "$value": "0.75rem"
38
+ },
39
+ "160": {
40
+ "$type": "borderRadius",
41
+ "$value": "1rem"
42
+ },
43
+ "full": {
44
+ "$type": "borderRadius",
45
+ "$value": "62rem"
46
+ }
47
+ },
48
+ "border-width": {
49
+ "0": {
50
+ "$type": "borderWidth",
51
+ "$value": "0rem"
52
+ },
53
+ "10": {
54
+ "$type": "borderWidth",
55
+ "$value": "0.0625rem"
56
+ },
57
+ "20": {
58
+ "$type": "borderWidth",
59
+ "$value": "0.125rem"
60
+ },
61
+ "30": {
62
+ "$type": "borderWidth",
63
+ "$value": "0.1875rem"
64
+ },
65
+ "40": {
66
+ "$type": "borderWidth",
67
+ "$value": "0.25rem"
68
+ }
69
+ }
70
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "icon": {
3
+ "color": {
4
+ "white": {
5
+ "$type": "color",
6
+ "$value": "#FFFFFF"
7
+ },
8
+ "black": {
9
+ "$type": "color",
10
+ "$value": "#D4D4D4"
11
+ },
12
+ "red": {
13
+ "$type": "color",
14
+ "$value": "#E94C4F"
15
+ },
16
+ "yellow": {
17
+ "$type": "color",
18
+ "$value": "#F8B760"
19
+ },
20
+ "green": {
21
+ "$type": "color",
22
+ "$value": "#73DD83"
23
+ },
24
+ "blue": {
25
+ "$type": "color",
26
+ "$value": "#3B9ADC"
27
+ },
28
+ "purple": {
29
+ "$type": "color",
30
+ "$value": "#D471D8"
31
+ }
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "icon": {
3
+ "color": {
4
+ "white": {
5
+ "$type": "color",
6
+ "$value": "#FFFFFF"
7
+ },
8
+ "black": {
9
+ "$type": "color",
10
+ "$value": "#697586"
11
+ },
12
+ "red": {
13
+ "$type": "color",
14
+ "$value": "#CC0F1F"
15
+ },
16
+ "yellow": {
17
+ "$type": "color",
18
+ "$value": "#D27614"
19
+ },
20
+ "green": {
21
+ "$type": "color",
22
+ "$value": "#0F7B38"
23
+ },
24
+ "blue": {
25
+ "$type": "color",
26
+ "$value": "#406CF4"
27
+ },
28
+ "purple": {
29
+ "$type": "color",
30
+ "$value": "#523681"
31
+ }
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "icon": {
3
+ "color": {
4
+ "white": {
5
+ "$type": "color",
6
+ "$value": "#FFFFFF"
7
+ },
8
+ "black": {
9
+ "$type": "color",
10
+ "$value": "#727272"
11
+ },
12
+ "red": {
13
+ "$type": "color",
14
+ "$value": "#D11C1C"
15
+ },
16
+ "yellow": {
17
+ "$type": "color",
18
+ "$value": "#FFB115"
19
+ },
20
+ "green": {
21
+ "$type": "color",
22
+ "$value": "#039C23"
23
+ },
24
+ "blue": {
25
+ "$type": "color",
26
+ "$value": "#1177D7"
27
+ },
28
+ "purple": {
29
+ "$type": "color",
30
+ "$value": "#A846B2"
31
+ }
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "icon": {
3
+ "color": {
4
+ "white": {
5
+ "$type": "color",
6
+ "$value": "#FFFFFF"
7
+ },
8
+ "black": {
9
+ "$type": "color",
10
+ "$value": "#727272"
11
+ },
12
+ "red": {
13
+ "$type": "color",
14
+ "$value": "#D11C1C"
15
+ },
16
+ "yellow": {
17
+ "$type": "color",
18
+ "$value": "#FFB115"
19
+ },
20
+ "green": {
21
+ "$type": "color",
22
+ "$value": "#039C23"
23
+ },
24
+ "blue": {
25
+ "$type": "color",
26
+ "$value": "#1177D7"
27
+ },
28
+ "purple": {
29
+ "$type": "color",
30
+ "$value": "#A846B2"
31
+ }
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "icon": {
3
+ "color": {
4
+ "white": {
5
+ "$type": "color",
6
+ "$value": "#FFFFFF"
7
+ },
8
+ "black": {
9
+ "$type": "color",
10
+ "$value": "#D4D4D4"
11
+ },
12
+ "red": {
13
+ "$type": "color",
14
+ "$value": "#E94C4F"
15
+ },
16
+ "yellow": {
17
+ "$type": "color",
18
+ "$value": "#F8B760"
19
+ },
20
+ "green": {
21
+ "$type": "color",
22
+ "$value": "#73DD83"
23
+ },
24
+ "blue": {
25
+ "$type": "color",
26
+ "$value": "#3B9ADC"
27
+ },
28
+ "purple": {
29
+ "$type": "color",
30
+ "$value": "#D471D8"
31
+ }
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "icon": {
3
+ "color": {
4
+ "white": {
5
+ "$type": "color",
6
+ "$value": "#FFFFFF"
7
+ },
8
+ "black": {
9
+ "$type": "color",
10
+ "$value": "#3A3A38"
11
+ },
12
+ "red": {
13
+ "$type": "color",
14
+ "$value": "#ED3D3B"
15
+ },
16
+ "yellow": {
17
+ "$type": "color",
18
+ "$value": "#DE6C00"
19
+ },
20
+ "green": {
21
+ "$type": "color",
22
+ "$value": "#379E4E"
23
+ },
24
+ "blue": {
25
+ "$type": "color",
26
+ "$value": "#1E8BCD"
27
+ },
28
+ "purple": {
29
+ "$type": "color",
30
+ "$value": "#A846B2"
31
+ }
32
+ }
33
+ }
34
+ }