@bitrise/bitkit 9.7.0-alpha-chakra.2 → 9.7.0-alpha-chakra.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "9.7.0-alpha-chakra.2",
4
+ "version": "9.7.0-alpha-chakra.3",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -57,7 +57,7 @@
57
57
  .Input__container--disabled,
58
58
  .Input__container--readonly {
59
59
  box-shadow: none;
60
- background-color: var(--color-gray--2);
60
+ background-color: var(--color-gray--1);
61
61
  }
62
62
 
63
63
  .Input__container--invalid,
@@ -8,7 +8,7 @@ export type Props = TextProps;
8
8
  * input.
9
9
  */
10
10
  const InputLabel: React.FunctionComponent<Props> = (props: Props) => {
11
- return <Text {...props} Component="label" margin="x1" size="3" textColor="grape-4" weight="bold" />;
11
+ return <Text {...props} Component="label" margin="x1" size="3" textColor="grape-5" weight="bold" />;
12
12
  };
13
13
 
14
14
  export default InputLabel;
@@ -111,7 +111,7 @@ const Modal: React.FunctionComponent<Props> = (props: Props) => {
111
111
  };
112
112
 
113
113
  Modal.defaultProps = {
114
- backgroundColor: 'gray-1',
114
+ backgroundColor: 'white',
115
115
  };
116
116
 
117
117
  export default Modal;