Skip to content

Commit

Permalink
Disabled tokens fix: text-background switch (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
3dyonic authored May 19, 2022
1 parent f792110 commit 9d9180b
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 56 deletions.
8 changes: 4 additions & 4 deletions src/Themes/basic-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
--icon-on-secondary-color: var(--color-asphalt);

// disabled
--disabled-background-color: #bdbec7;
--disabled-background-on-secondary-color: #bdbec7;
--disabled-text-color: #ecedf5;
--disabled-text-on-secondary-color: #ecedf5;
--disabled-background-color: #ecedf5;
--disabled-background-on-secondary-color: #ecedf5;
--disabled-text-color: #bdbec7;
--disabled-text-on-secondary-color: #bdbec7;

--dark-background-color: var(--color-riverstone_gray);
--dark-background-on-secondary-color: var(--color-riverstone_gray);
Expand Down
8 changes: 4 additions & 4 deletions src/Themes/black-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
--icon-on-secondary-color: #aaaaaa;

// disabled
--disabled-background-color: #5d5d5d;
--disabled-background-on-secondary-color: #5d5d5d;
--disabled-text-color: #3a3a3a;
--disabled-text-on-secondary-color: #3a3a3a;
--disabled-background-color: #3a3a3a;
--disabled-background-on-secondary-color: #3a3a3a;
--disabled-text-color: #5d5d5d;
--disabled-text-on-secondary-color: #5d5d5d;

--dark-background-color: #2c2c2c;
--dark-background-on-secondary-color: #4b4e69;
Expand Down
96 changes: 48 additions & 48 deletions src/Themes/dark-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
--icon-on-secondary-color: var(--color-wolf_gray);

// disabled
--disabled-background-color: #5d6072;
--disabled-background-on-secondary-color: #5d6072;
--disabled-text-color: #3c3f59;
--disabled-text-on-secondary-color: #3c3f59;
--disabled-background-color: #3c3f59;
--disabled-background-on-secondary-color: #3c3f59;
--disabled-text-color: #5d6072;
--disabled-text-on-secondary-color: #5d6072;

--dark-background-color: #393b53;
--dark-background-on-secondary-color: #4b4e69;
Expand Down Expand Up @@ -217,50 +217,50 @@
--color-brown-hover: #684943;
--color-brown-selected: #4d3941;

// Orchid
--color-orchid: #E190C0;
--color-orchid-hover: #B4739A;
--color-orchid-selected: #B4739A;
// Tan
--color-tan: #BDAB95;
--color-tan-hover: #978977;
--color-tan-selected: #716863;
// Sky
--color-sky: #B4E9F8;
--color-sky-hover: #90BAC6;
--color-sky-selected: #6C8A9A;
// Coffee
--color-coffee: #CA9A8B;
--color-coffee-hover: #A27B6F;
--color-coffee-selected: #795E5D;
// Royal
--color-royal: #5591EA;
--color-royal-hover: #4474BB;
--color-royal-selected: #375993;
// Teal
--color-teal: #457B82;
--color-teal-hover: #376268;
--color-teal-selected: #2E4D58;
// Lavender
--color-lavender: #CAB9FA;
--color-lavender-hover: #A294C8;
--color-lavender-selected: #85597B;
// Steel
--color-steel: #BACBED;
--color-steel-hover: #95A2BE;
--color-steel-selected: #707A95;
// Lilac
--color-lilac: #B1ADC7;
--color-lilac-hover: #8E8A9F;
--color-lilac-selected: #6B697F;
// Orchid
--color-orchid: #E190C0;
--color-orchid-hover: #B4739A;
--color-orchid-selected: #B4739A;

// Tan
--color-tan: #BDAB95;
--color-tan-hover: #978977;
--color-tan-selected: #716863;

// Sky
--color-sky: #B4E9F8;
--color-sky-hover: #90BAC6;
--color-sky-selected: #6C8A9A;

// Coffee
--color-coffee: #CA9A8B;
--color-coffee-hover: #A27B6F;
--color-coffee-selected: #795E5D;

// Royal
--color-royal: #5591EA;
--color-royal-hover: #4474BB;
--color-royal-selected: #375993;

// Teal
--color-teal: #457B82;
--color-teal-hover: #376268;
--color-teal-selected: #2E4D58;

// Lavender
--color-lavender: #CAB9FA;
--color-lavender-hover: #A294C8;
--color-lavender-selected: #85597B;

// Steel
--color-steel: #BACBED;
--color-steel-hover: #95A2BE;
--color-steel-selected: #707A95;

// Lilac
--color-lilac: #B1ADC7;
--color-lilac-hover: #8E8A9F;
--color-lilac-selected: #6B697F;

// Pecan
--color-pecan: #786565;
Expand Down

0 comments on commit 9d9180b

Please sign in to comment.