@integrigo/integrigo-ui 1.6.16-b → 1.6.16-c

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "registry": "https://npm.pkg.github.com/integrigo"
5
5
  },
6
- "version": "1.6.16b",
6
+ "version": "1.6.16c",
7
7
  "main": "lib/index.js",
8
8
  "module": "lib/index.esm.js",
9
9
  "types": "lib/index.d.ts",
@@ -162,15 +162,15 @@ const getVariantStyles = (variant: ChipVariant, clickable: boolean): string => {
162
162
  `;
163
163
  case ChipVariant.grey:
164
164
  return `
165
- background-color: var(--shades-of-grey-40);
165
+ background-color: var(--shades-of-grey-20);
166
166
 
167
167
  ${clickable && `
168
168
  &:hover {
169
- background-color: var(--shades-of-grey-60);
169
+ background-color: var(--shades-of-grey-40);
170
170
  }
171
171
 
172
172
  &:active {
173
- background-color: var(--shades-of-grey-60);
173
+ background-color: var(--shades-of-grey-40);
174
174
  }
175
175
  `}
176
176
  `;