Skip to content

Commit

Permalink
fix: disabled action buttons color (#360)
Browse files Browse the repository at this point in the history
* fix: disabled action buttons color

* fix: dark color
  • Loading branch information
dylandepass authored Nov 14, 2024
1 parent d14f27c commit a1a8a52
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/extension/app/spectrum-2.css.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ export const spectrum2 = css`
--spectrum2-action-button-hover-dark: #FFFFFF12;
--spectrum2-action-button-selected-light: #292929FF;
--spectrum2-action-button-selected-dark: #DADADAFF;
--spectrum2-action-button-disabled-light: #C6C6C6;
--spectrum2-action-button-disabled-dark: #DBDBDB66;
--spectrum2-background-color-negative-light: #D73220;
--spectrum2-background-color-negative-dark: #CD2E1D;
--spectrum2-foreground-color-negative-light: #D73220;
Expand Down Expand Up @@ -178,6 +180,7 @@ export const spectrum2 = css`
--mod-actionbutton-focus-indicator-color: var(--spectrum2-color-focus-dark);
--mod-actionbutton-background-color-focus: var(--spectrum2-background-color-hover-dark);
--mod-actionbutton-background-color-hover: var(--spectrum2-action-button-hover-dark);
--mod-actionbutton-content-color-disabled: var(--spectrum2-action-button-disabled-dark);
--mod-picker-focus-indicator-color: var(--spectrum2-color-focus);
--mod-actionbutton-focus-indicator-color: var(--spectrum2-color-focus);
Expand Down Expand Up @@ -257,7 +260,7 @@ export const spectrum2 = css`
--mod-actionbutton-focus-indicator-color: var(--spectrum2-color-focus-dark);
--mod-actionbutton-background-color-focus: var(--spectrum2-background-color-hover-dark);
--mod-actionbutton-background-color-hover: var(--spectrum2-action-button-hover-dark);
--mod-actionbutton-content-color-disabled: var(--spectrum2-action-button-disabled-light);
--mod-picker-focus-indicator-color: var(--spectrum2-color-focus);
--mod-actionbutton-focus-indicator-color: var(--spectrum2-color-focus);
Expand Down

0 comments on commit a1a8a52

Please sign in to comment.