aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/design-system/src/components
diff options
context:
space:
mode:
authorstanislavh <stanislav.honcharov@sonarsource.com>2023-10-09 15:02:12 +0200
committersonartech <sonartech@sonarsource.com>2023-10-10 20:02:45 +0000
commit7408d089a5c6ffd42203e2c8bdd87f998f75011e (patch)
tree082e8b53682a314f8756d34badf6bbdc87e8d57c /server/sonar-web/design-system/src/components
parent7b7e4bcfc75cb76a8e2c87a67a462c6625382658 (diff)
downloadsonarqube-7408d089a5c6ffd42203e2c8bdd87f998f75011e.tar.gz
sonarqube-7408d089a5c6ffd42203e2c8bdd87f998f75011e.zip
[NO-JIRA] Update text font color for neutral pill
Diffstat (limited to 'server/sonar-web/design-system/src/components')
-rw-r--r--server/sonar-web/design-system/src/components/Pill.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/server/sonar-web/design-system/src/components/Pill.tsx b/server/sonar-web/design-system/src/components/Pill.tsx
index e35725df477..7cd93fc083c 100644
--- a/server/sonar-web/design-system/src/components/Pill.tsx
+++ b/server/sonar-web/design-system/src/components/Pill.tsx
@@ -64,7 +64,6 @@ const StyledPill = styled.span<{
${tw`sw-px-[8px] sw-py-[2px]`};
${tw`sw-rounded-pill`};
- background-color: ${({ variant }) => themeContrast(variantThemeColors[variant])};
background-color: ${({ variant }) => themeColor(variantThemeColors[variant])};
color: ${({ variant }) => themeContrast(variantThemeColors[variant])};
border-style: ${({ variant }) => (variant === 'neutral' ? 'hidden' : 'solid')};