Skip to content

Commit

Permalink
fix: fixed tag tokens from 80 to 70 (#17724)
Browse files Browse the repository at this point in the history
  • Loading branch information
guidari authored Oct 14, 2024
1 parent 0015363 commit 32c8bef
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions packages/themes/src/component-tokens/tag/tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ export const tagBackgroundRed = {
};

export const tagColorRed = {
whiteTheme: red80,
g10: red80,
whiteTheme: red70,
g10: red70,
g90: red20,
g100: red20,
};
Expand All @@ -103,8 +103,8 @@ export const tagBackgroundMagenta = {
};

export const tagColorMagenta = {
whiteTheme: magenta80,
g10: magenta80,
whiteTheme: magenta70,
g10: magenta70,
g90: magenta20,
g100: magenta20,
};
Expand All @@ -124,8 +124,8 @@ export const tagBackgroundPurple = {
};

export const tagColorPurple = {
whiteTheme: purple80,
g10: purple80,
whiteTheme: purple70,
g10: purple70,
g90: purple20,
g100: purple20,
};
Expand All @@ -145,8 +145,8 @@ export const tagBackgroundBlue = {
};

export const tagColorBlue = {
whiteTheme: blue80,
g10: blue80,
whiteTheme: blue70,
g10: blue70,
g90: blue20,
g100: blue20,
};
Expand All @@ -166,8 +166,8 @@ export const tagBackgroundCyan = {
};

export const tagColorCyan = {
whiteTheme: cyan80,
g10: cyan80,
whiteTheme: cyan70,
g10: cyan70,
g90: cyan20,
g100: cyan20,
};
Expand All @@ -185,8 +185,8 @@ export const tagBackgroundTeal = {
g100: teal70,
};
export const tagColorTeal = {
whiteTheme: teal80,
g10: teal80,
whiteTheme: teal70,
g10: teal70,
g90: teal20,
g100: teal20,
};
Expand All @@ -206,8 +206,8 @@ export const tagBackgroundGreen = {
};

export const tagColorGreen = {
whiteTheme: green80,
g10: green80,
whiteTheme: green70,
g10: green70,
g90: green20,
g100: green20,
};
Expand Down

0 comments on commit 32c8bef

Please sign in to comment.