Skip to content

Commit

Permalink
feat(token): add new selected-light-ui token (#5718)
Browse files Browse the repository at this point in the history
* feat(tokens): add selected-ui-light color token

* fix(tokens): add to token list

* fix(tokens): add new selected-light-ui color token

Co-authored-by: Josh Black <[email protected]>
  • Loading branch information
tw15egan and joshblack authored Mar 30, 2020
1 parent 7bb3022 commit 42eb943
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/themes/src/g10.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const activeTertiary = blue80;
export const hoverUI = '#e5e5e5';
export const activeUI = gray30;
export const selectedUI = gray20;
export const selectedLightUI = gray20;
export const inverseHoverUI = '#4c4c4c';

export const hoverSelectedUI = '#cacaca';
Expand Down
1 change: 1 addition & 0 deletions packages/themes/src/g100.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export const activeTertiary = gray30;
export const hoverUI = '#353535';
export const activeUI = gray70;
export const selectedUI = gray80;
export const selectedLightUI = gray70;
export const inverseHoverUI = '#e5e5e5';

export const hoverSelectedUI = '#4c4c4c';
Expand Down
1 change: 1 addition & 0 deletions packages/themes/src/g90.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const activeTertiary = gray30;
export const hoverUI = '#4c4c4c';
export const activeUI = gray60;
export const selectedUI = gray70;
export const selectedLightUI = gray60;
export const inverseHoverUI = '#e5e5e5';

export const hoverSelectedUI = '#656565';
Expand Down
2 changes: 2 additions & 0 deletions packages/themes/src/tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ const colors = [
'activeUI',

'selectedUI',
'selectedLightUI',
'hoverSelectedUI',
'inverseHoverUI',

Expand Down Expand Up @@ -217,6 +218,7 @@ export const unstable__meta = {
'activeUI',
'activeDanger',
'selectedUI',
'selectedLightUI',
'highlight',
'skeleton01',
'skeleton02',
Expand Down
1 change: 1 addition & 0 deletions packages/themes/src/v9.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const activeTertiary = '#414f59';
export const hoverUI = '#EEF4FC';
export const activeUI = '#DFEAFA';
export const selectedUI = '#EEF4FC';
export const selectedLightUI = '#EEF4FC';
export const inverseHoverUI = '#4c4c4c';

export const hoverSelectedUI = '#DFEAFA';
Expand Down
1 change: 1 addition & 0 deletions packages/themes/src/white.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const activeTertiary = blue80;
export const hoverUI = '#e5e5e5';
export const activeUI = gray30;
export const selectedUI = gray20;
export const selectedLightUI = gray20;
export const inverseHoverUI = '#4c4c4c';

export const hoverSelectedUI = '#cacaca';
Expand Down

0 comments on commit 42eb943

Please sign in to comment.