Skip to content

Commit

Permalink
fix(Table): fix incorrect color value from paletteInkNormal to palett…
Browse files Browse the repository at this point in the history
…eInkDark (#3727)
  • Loading branch information
mainframev committed Jan 23, 2023
1 parent f058aa4 commit fc5e7d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/orbit-components/src/Table/TableCell/index.tsx
Expand Up @@ -23,7 +23,7 @@ export const StyledTableCell = styled(
box-sizing: border-box;
font-family: ${theme.orbit.fontFamily};
font-size: ${theme.orbit.fontSizeTextNormal};
color: ${theme.orbit.paletteInkNormal};
color: ${theme.orbit.paletteInkDark};
text-align: ${align && textAlign(align)};
white-space: ${whiteSpace};
vertical-align: ${verticalAlign};
Expand Down
2 changes: 1 addition & 1 deletion packages/orbit-components/src/Table/index.tsx
Expand Up @@ -92,7 +92,7 @@ const StyledTable = styled.table<{ type: Type; striped?: boolean; compact?: bool
? `6px ${theme.orbit.spaceSmall}`
: `10px ${theme.orbit.spaceSmall}`}; /* TODO: remove 10px and 6px with new tokens */
line-height: ${theme.orbit.lineHeightTextNormal};
color: ${type === TYPE_OPTIONS.SECONDARY && theme.orbit.paletteInkLight};
color: ${type === TYPE_OPTIONS.SECONDARY && theme.orbit.paletteInkNormal};
}
`};
`;
Expand Down

0 comments on commit fc5e7d3

Please sign in to comment.