Skip to content

Commit

Permalink
fix(TextLink): fix color on active state
Browse files Browse the repository at this point in the history
  • Loading branch information
DSil committed Apr 26, 2023
1 parent 593c5e8 commit c981604
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/orbit-components/src/TextLink/index.tsx
Expand Up @@ -54,8 +54,8 @@ const getActiveColor: GetTextLinkTokensType =
({ $type }) =>
({ theme }) => {
const tokens = {
[TYPE_OPTIONS.PRIMARY]: theme.orbit.paletteProductDarker,
[TYPE_OPTIONS.SECONDARY]: theme.orbit.paletteProductDarker,
[TYPE_OPTIONS.PRIMARY]: theme.orbit.paletteProductDarkActive,
[TYPE_OPTIONS.SECONDARY]: theme.orbit.paletteProductDarkActive,
[TYPE_OPTIONS.SUCCESS]: theme.orbit.paletteGreenDarker,
[TYPE_OPTIONS.INFO]: theme.orbit.paletteBlueDarker,
[TYPE_OPTIONS.WARNING]: theme.orbit.paletteOrangeDarker,
Expand Down

0 comments on commit c981604

Please sign in to comment.