diff options
Diffstat (limited to 'server/sonar-web/design-system/src')
-rw-r--r-- | server/sonar-web/design-system/src/components/Pill.tsx | 1 | ||||
-rw-r--r-- | server/sonar-web/design-system/src/theme/light.ts | 2 |
2 files changed, 1 insertions, 2 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')}; diff --git a/server/sonar-web/design-system/src/theme/light.ts b/server/sonar-web/design-system/src/theme/light.ts index bc368b517d7..8292f7ec746 100644 --- a/server/sonar-web/design-system/src/theme/light.ts +++ b/server/sonar-web/design-system/src/theme/light.ts @@ -669,7 +669,7 @@ export const lightTheme = { pillWarningIcon: COLORS.yellow[700], pillInfo: COLORS.blue[800], pillInfoIcon: COLORS.blue[700], - pillNeutral: COLORS.blueGrey[800], + pillNeutral: COLORS.blueGrey[500], // breadcrumbs breadcrumb: secondary.dark, |