Skip to content

Commit

Permalink
fix: update token exports (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
booc0mtaco authored Aug 14, 2023
1 parent d35cfe4 commit 982c55f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .storybook/data/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@
"eds-theme-color-link-neutral-text": "var(--eds-theme-color-text-neutral-strong)",
"eds-theme-color-link-neutral-text-hover": "var(--eds-theme-color-text-brand-default)",
"eds-theme-color-link-neutral-text-focus": "var(--eds-theme-color-text-neutral-default-inverse)",
"eds-theme-color-link-neutral-text-decoration": "var(--eds-theme-color-text-neutral-strong)",
"eds-theme-color-link-neutral-text-decoration": "var(--eds-theme-color-text-neutral-default)",
"eds-theme-color-link-neutral-text-decoration-hover": "var(--eds-theme-color-text-brand-default)",
"eds-theme-color-link-neutral-text-decoration-focus": "var(--eds-theme-color-text-neutral-default-inverse)",
"eds-theme-color-link-neutral-background-focus": "var(--eds-theme-color-text-neutral-default)",
Expand Down
2 changes: 1 addition & 1 deletion src/tokens-dist/css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@
--eds-theme-color-link-neutral-text: var(--eds-theme-color-text-neutral-strong);
--eds-theme-color-link-neutral-text-hover: var(--eds-theme-color-text-brand-default);
--eds-theme-color-link-neutral-text-focus: var(--eds-theme-color-text-neutral-default-inverse);
--eds-theme-color-link-neutral-text-decoration: var(--eds-theme-color-text-neutral-strong);
--eds-theme-color-link-neutral-text-decoration: var(--eds-theme-color-text-neutral-default);
--eds-theme-color-link-neutral-text-decoration-hover: var(--eds-theme-color-text-brand-default);
--eds-theme-color-link-neutral-text-decoration-focus: var(--eds-theme-color-text-neutral-default-inverse);
--eds-theme-color-link-neutral-background-focus: var(--eds-theme-color-text-neutral-default);
Expand Down
2 changes: 1 addition & 1 deletion src/tokens-dist/json/variables-nested.json
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@
"focus": "var(--eds-theme-color-text-neutral-default-inverse)"
},
"text-decoration": {
"@": "var(--eds-theme-color-text-neutral-strong)",
"@": "var(--eds-theme-color-text-neutral-default)",
"hover": "var(--eds-theme-color-text-brand-default)",
"focus": "var(--eds-theme-color-text-neutral-default-inverse)"
},
Expand Down
2 changes: 1 addition & 1 deletion src/tokens-dist/ts/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export const EdsThemeColorLinkNeutralTextHover =
export const EdsThemeColorLinkNeutralTextFocus =
'var(--eds-theme-color-text-neutral-default-inverse)';
export const EdsThemeColorLinkNeutralTextDecoration =
'var(--eds-theme-color-text-neutral-strong)';
'var(--eds-theme-color-text-neutral-default)';
export const EdsThemeColorLinkNeutralTextDecorationHover =
'var(--eds-theme-color-text-brand-default)';
export const EdsThemeColorLinkNeutralTextDecorationFocus =
Expand Down

0 comments on commit 982c55f

Please sign in to comment.