aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/design-system/src/theme
diff options
context:
space:
mode:
author7PH <benjamin.raymond@sonarsource.com>2024-01-25 10:44:08 +0100
committersonartech <sonartech@sonarsource.com>2024-01-31 20:03:36 +0000
commit512c7e859f9279bab0dba9331919546cf20846de (patch)
tree9a20f3a8fa421cb0fb84c86935f98306c6832f1f /server/sonar-web/design-system/src/theme
parentb7d0b2a329fec46d7fab99504202424efaf2c811 (diff)
downloadsonarqube-512c7e859f9279bab0dba9331919546cf20846de.tar.gz
sonarqube-512c7e859f9279bab0dba9331919546cf20846de.zip
SONAR-21455 Fix software quality impact measures in branch overview page
Diffstat (limited to 'server/sonar-web/design-system/src/theme')
-rw-r--r--server/sonar-web/design-system/src/theme/light.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/design-system/src/theme/light.ts b/server/sonar-web/design-system/src/theme/light.ts
index 79a6cab6ea9..e20f3b914cf 100644
--- a/server/sonar-web/design-system/src/theme/light.ts
+++ b/server/sonar-web/design-system/src/theme/light.ts
@@ -522,6 +522,7 @@ export const lightTheme = {
// project
projectCardBackground: COLORS.white,
projectCardBorder: COLORS.blueGrey[100],
+ projectLightGreyCardBorder: COLORS.grey[50],
// overview
overviewCardDefaultIcon: secondary.light,
@@ -531,7 +532,7 @@ export const lightTheme = {
overviewCardSuccessIcon: COLORS.green[200],
// overview software impact breakdown
- overviewSoftwareImpactSeverityNeutral: COLORS.blueGrey[50],
+ overviewSoftwareImpactSeverityNeutral: [247, 249, 252],
overviewSoftwareImpactSeverityHigh: COLORS.red[100],
overviewSoftwareImpactSeverityMedium: COLORS.yellow[100],
overviewSoftwareImpactSeverityLow: COLORS.blue[100],