baseui 0.0.0-next-42b159f → 0.0.0-next-c014e5b

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.
@@ -36,6 +36,7 @@ foundation = colorTokens) => {
36
36
  backgroundStateDisabled: colors.gray800,
37
37
  backgroundOverlayDark: hexToRgba(colors.black, '0.3'),
38
38
  backgroundOverlayLight: hexToRgba(colors.black, '0.08'),
39
+ backgroundOverlayArt: hexToRgba(colors.black, '0.16'),
39
40
  backgroundAccent: foundation.accent,
40
41
  backgroundNegative: foundation.negative,
41
42
  backgroundWarning: foundation.warning,
@@ -36,6 +36,7 @@ foundation = colorTokens) => {
36
36
  backgroundStateDisabled: colors.gray50,
37
37
  backgroundOverlayDark: hexToRgba(colors.black, '0.3'),
38
38
  backgroundOverlayLight: hexToRgba(colors.black, '0.08'),
39
+ backgroundOverlayArt: hexToRgba(colors.black, '0.00'),
39
40
  backgroundAccent: foundation.accent,
40
41
  backgroundNegative: foundation.negative,
41
42
  backgroundWarning: foundation.warning,
@@ -42,6 +42,7 @@ export default (function () {
42
42
  backgroundStateDisabled: colors.gray800,
43
43
  backgroundOverlayDark: hexToRgba(colors.black, '0.3'),
44
44
  backgroundOverlayLight: hexToRgba(colors.black, '0.08'),
45
+ backgroundOverlayArt: hexToRgba(colors.black, '0.16'),
45
46
  backgroundAccent: foundation.accent,
46
47
  backgroundNegative: foundation.negative,
47
48
  backgroundWarning: foundation.warning,
@@ -42,6 +42,7 @@ export default (function () {
42
42
  backgroundStateDisabled: colors.gray50,
43
43
  backgroundOverlayDark: hexToRgba(colors.black, '0.3'),
44
44
  backgroundOverlayLight: hexToRgba(colors.black, '0.08'),
45
+ backgroundOverlayArt: hexToRgba(colors.black, '0.00'),
45
46
  backgroundAccent: foundation.accent,
46
47
  backgroundNegative: foundation.negative,
47
48
  backgroundWarning: foundation.warning,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baseui",
3
- "version": "0.0.0-next-42b159f",
3
+ "version": "0.0.0-next-c014e5b",
4
4
  "description": "A React Component library implementing the Base design language",
5
5
  "keywords": [
6
6
  "react",
@@ -48,6 +48,7 @@ var _default = function _default() {
48
48
  backgroundStateDisabled: _colors.default.gray800,
49
49
  backgroundOverlayDark: (0, _util.hexToRgb)(_colors.default.black, '0.3'),
50
50
  backgroundOverlayLight: (0, _util.hexToRgb)(_colors.default.black, '0.08'),
51
+ backgroundOverlayArt: (0, _util.hexToRgb)(_colors.default.black, '0.16'),
51
52
  backgroundAccent: foundation.accent,
52
53
  backgroundNegative: foundation.negative,
53
54
  backgroundWarning: foundation.warning,
@@ -49,6 +49,7 @@ export default (
49
49
  backgroundStateDisabled: colors.gray800,
50
50
  backgroundOverlayDark: hexToRgba(colors.black, '0.3'),
51
51
  backgroundOverlayLight: hexToRgba(colors.black, '0.08'),
52
+ backgroundOverlayArt: hexToRgba(colors.black, '0.16'),
52
53
  backgroundAccent: foundation.accent,
53
54
  backgroundNegative: foundation.negative,
54
55
  backgroundWarning: foundation.warning,
@@ -48,6 +48,7 @@ var _default = function _default() {
48
48
  backgroundStateDisabled: _colors.default.gray50,
49
49
  backgroundOverlayDark: (0, _util.hexToRgb)(_colors.default.black, '0.3'),
50
50
  backgroundOverlayLight: (0, _util.hexToRgb)(_colors.default.black, '0.08'),
51
+ backgroundOverlayArt: (0, _util.hexToRgb)(_colors.default.black, '0.00'),
51
52
  backgroundAccent: foundation.accent,
52
53
  backgroundNegative: foundation.negative,
53
54
  backgroundWarning: foundation.warning,
@@ -49,6 +49,7 @@ export default (
49
49
  backgroundStateDisabled: colors.gray50,
50
50
  backgroundOverlayDark: hexToRgba(colors.black, '0.3'),
51
51
  backgroundOverlayLight: hexToRgba(colors.black, '0.08'),
52
+ backgroundOverlayArt: hexToRgba(colors.black, '0.00'),
52
53
  backgroundAccent: foundation.accent,
53
54
  backgroundNegative: foundation.negative,
54
55
  backgroundWarning: foundation.warning,
@@ -127,6 +127,7 @@ export type CoreExtensionSemanticColorTokensT = {|
127
127
  backgroundStateDisabled: string,
128
128
  backgroundOverlayDark: ?string,
129
129
  backgroundOverlayLight: ?string,
130
+ backgroundOverlayArt: ?string,
130
131
  backgroundAccent: string,
131
132
  backgroundNegative: string,
132
133
  backgroundWarning: string,