@comicrelief/component-library 8.24.1 → 8.24.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.
@@ -82,7 +82,7 @@ const CheckInput = exports.CheckInput = _styledComponents.default.input.withConf
82
82
  let {
83
83
  theme
84
84
  } = _ref6;
85
- return theme.color('grey_for_forms');
85
+ return theme.color('grey');
86
86
  }, _ref7 => {
87
87
  let {
88
88
  theme
@@ -92,7 +92,7 @@ const CheckInput = exports.CheckInput = _styledComponents.default.input.withConf
92
92
  let {
93
93
  theme
94
94
  } = _ref8;
95
- return theme.color('black');
95
+ return theme.color('grey');
96
96
  }, _CR_Tick_black.default, _ref9 => {
97
97
  let {
98
98
  theme
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comicrelief/component-library",
3
3
  "author": "Comic Relief Engineering Team",
4
- "version": "8.24.1",
4
+ "version": "8.24.2",
5
5
  "main": "dist/index.js",
6
6
  "license": "ISC",
7
7
  "jest": {
@@ -177,12 +177,12 @@ const CheckInput = styled.input`
177
177
  left: 0;
178
178
  top:0;
179
179
  margin: 0;
180
- border: 1px solid ${({ theme }) => theme.color('grey_for_forms')};
180
+ border: 1px solid ${({ theme }) => theme.color('grey')};
181
181
  + span {
182
182
  width: 30px;
183
183
  height: 30px;
184
184
  background-color: ${({ theme }) => theme.color('white')};
185
- border: 1px solid ${({ theme }) => theme.color('black')};
185
+ border: 1px solid ${({ theme }) => theme.color('grey')};
186
186
  float: left;
187
187
  border-radius: 8px;
188
188
  }