Skip to content

Commit

Permalink
fix(tokens): update backgroundSelectedHover, turn on feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Apr 26, 2021
1 parent 68f9fa1 commit 9226112
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/react/.storybook/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ $css--font-face: true;
$css--reset: true;
$prefix: 'bx';

$feature-flags: (
enable-2021-release: true,
);

// IMPORTANT: This import path should _not_ be used outside our source tree
// as `src` directory is _not_ meant to be shipped in our NPM package.
// Use e.g. `@import '~carbon-components/scss/globals/scss/styles.scss'` instead.
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/src/g80.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const buttonSecondaryHover = adjustLightness(buttonSecondary, -7);
export const buttonTertiaryHover = white;

export const backgroundSelected = gray70;
export const backgroundSelectedHover = adjustLightness(layerSelected, +7);
export const backgroundSelectedHover = adjustLightness(layerSelected, -7);
export const layerSelected = gray60;
export const layerSelectedHover = adjustLightness(layerSelected, -6);
export const layerSelectedInverse = gray10;
Expand Down

0 comments on commit 9226112

Please sign in to comment.