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

fix(Table): fix incorrect color value from paletteInkNormal to palett… #3727

Merged
merged 1 commit into from Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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