Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve icon readability in light theme #2323

Merged
merged 2 commits into from
Dec 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: update src/scss/themes/_base.scss
  • Loading branch information
nolanlawson authored Dec 18, 2022
commit 174bf2087d838ff48f5fb2629882110d815c67f8
6 changes: 3 additions & 3 deletions src/scss/themes/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
--action-button-fill-color: #{lighten($main-theme-color, 11.5%)};
--action-button-fill-color-hover: #{lighten($main-theme-color, 6%)};
--action-button-fill-color-active: #{$main-theme-color};
--action-button-fill-color-pressed: #{saturate($main-theme-color, 5%)};
--action-button-fill-color-pressed-hover: #{darken(saturate($main-theme-color, 5%), 4%)};
--action-button-fill-color-pressed-active: #{darken(saturate($main-theme-color, 5%), 8%)};
--action-button-fill-color-pressed: #{darken(saturate($main-theme-color, 5%), 6%)};
--action-button-fill-color-pressed-hover: #{darken(saturate($main-theme-color, 5%), 12%)};
--action-button-fill-color-pressed-active: #{darken(saturate($main-theme-color, 5%), 15%)};

--action-button-deemphasized-fill-color: #{$deemphasized-color};
--action-button-deemphasized-fill-color-hover: #{lighten($deemphasized-color, 22%)};
Expand Down