Skip to content

Commit

Permalink
fix: correct colors on sortable icon when inactive
Browse files Browse the repository at this point in the history
  • Loading branch information
geotrev committed Jun 11, 2024
1 parent 508e1de commit 03bec36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tables/src/styled/StyledSortableButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ interface IStyledSortableButtonProps {
const colorStyles = ({ theme, sort }: IStyledSortableButtonProps & ThemeProps<DefaultTheme>) => {
const fgInactive = getColor({
variable: 'foreground.subtle',
transparency: theme.opacity[400],
transparency: theme.opacity[200],
theme
});
const fgActive = getColor({
Expand Down

0 comments on commit 03bec36

Please sign in to comment.