@adobe/spectrum-tokens 12.0.0-beta.45 → 12.0.0-beta.46
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/CHANGELOG.md +2 -2
- package/dist/json/drover.json +4 -0
- package/dist/json/variables.json +17 -0
- package/package.json +1 -1
- package/src/color-alias.json +16 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# [12.0.0-beta.
|
|
1
|
+
# [12.0.0-beta.46](https://github.com/adobe/spectrum-tokens/compare/v12.0.0-beta.45...v12.0.0-beta.46) (2022-08-24)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* added overlay-color and overlay-opacity values ([#58](https://github.com/adobe/spectrum-tokens/issues/58)) ([798d22d](https://github.com/adobe/spectrum-tokens/commit/798d22d531c4d2c783fc55f6c3c3748e90a6b879))
|
package/dist/json/drover.json
CHANGED
|
@@ -256,6 +256,7 @@
|
|
|
256
256
|
"orange-700": "rgb(228, 111, 0)",
|
|
257
257
|
"orange-800": "rgb(203, 93, 0)",
|
|
258
258
|
"orange-900": "rgb(177, 76, 0)",
|
|
259
|
+
"overlay-color": "rgb(0, 0, 0)",
|
|
259
260
|
"positive-background-color-default": "rgb(0, 122, 77)",
|
|
260
261
|
"positive-background-color-down": "rgb(0, 81, 50)",
|
|
261
262
|
"positive-background-color-hover": "rgb(0, 101, 62)",
|
|
@@ -595,6 +596,7 @@
|
|
|
595
596
|
"orange-700": "rgb(225, 109, 0)",
|
|
596
597
|
"orange-800": "rgb(244, 129, 12)",
|
|
597
598
|
"orange-900": "rgb(254, 154, 46)",
|
|
599
|
+
"overlay-color": "rgb(0, 0, 0)",
|
|
598
600
|
"positive-background-color-default": "rgb(67, 199, 143)",
|
|
599
601
|
"positive-background-color-down": "rgb(129, 233, 184)",
|
|
600
602
|
"positive-background-color-hover": "rgb(94, 217, 162)",
|
|
@@ -934,6 +936,7 @@
|
|
|
934
936
|
"orange-700": "rgb(210, 98, 0)",
|
|
935
937
|
"orange-800": "rgb(232, 116, 0)",
|
|
936
938
|
"orange-900": "rgb(249, 137, 23)",
|
|
939
|
+
"overlay-color": "rgb(0, 0, 0)",
|
|
937
940
|
"positive-background-color-default": "rgb(52, 187, 132)",
|
|
938
941
|
"positive-background-color-down": "rgb(103, 222, 168)",
|
|
939
942
|
"positive-background-color-hover": "rgb(75, 205, 149)",
|
|
@@ -1144,6 +1147,7 @@
|
|
|
1144
1147
|
"in-line-alert-minimum-width": "320px",
|
|
1145
1148
|
"line-height-100": "1.3",
|
|
1146
1149
|
"line-height-200": "1.5",
|
|
1150
|
+
"overlay-opacity": "0.6",
|
|
1147
1151
|
"popover-tip-height": "8px",
|
|
1148
1152
|
"popover-tip-width": "16px",
|
|
1149
1153
|
"popover-top-to-content-area": "4px",
|
package/dist/json/variables.json
CHANGED
|
@@ -72,6 +72,23 @@
|
|
|
72
72
|
"ref": "{black}",
|
|
73
73
|
"value": "rgb(0, 0, 0)"
|
|
74
74
|
},
|
|
75
|
+
"overlay-color": {
|
|
76
|
+
"ref": "{black}",
|
|
77
|
+
"value": "rgb(0, 0, 0)"
|
|
78
|
+
},
|
|
79
|
+
"overlay-opacity": {
|
|
80
|
+
"sets": {
|
|
81
|
+
"light": {
|
|
82
|
+
"value": "0.4"
|
|
83
|
+
},
|
|
84
|
+
"dark": {
|
|
85
|
+
"value": "0.5"
|
|
86
|
+
},
|
|
87
|
+
"darkest": {
|
|
88
|
+
"value": "0.6"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
75
92
|
"neutral-content-color-default": {
|
|
76
93
|
"ref": "{gray-800}",
|
|
77
94
|
"sets": {
|
package/package.json
CHANGED
package/src/color-alias.json
CHANGED
|
@@ -59,7 +59,22 @@
|
|
|
59
59
|
"static-black-focus-ring-color": {
|
|
60
60
|
"value": "{black}"
|
|
61
61
|
},
|
|
62
|
-
|
|
62
|
+
"overlay-color": {
|
|
63
|
+
"value": "{black}"
|
|
64
|
+
},
|
|
65
|
+
"overlay-opacity": {
|
|
66
|
+
"sets": {
|
|
67
|
+
"light": {
|
|
68
|
+
"value": "0.4"
|
|
69
|
+
},
|
|
70
|
+
"dark": {
|
|
71
|
+
"value": "0.5"
|
|
72
|
+
},
|
|
73
|
+
"darkest": {
|
|
74
|
+
"value": "0.6"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
63
78
|
"neutral-content-color-default": {
|
|
64
79
|
"value": "{gray-800}"
|
|
65
80
|
},
|