diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2023-05-12 17:27:56 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-05-16 20:02:50 +0000 |
commit | ad0029cacacc54b36830b32bd68d30034a671b5d (patch) | |
tree | 204871cf62e6b7875b31b2b58ad9409e2e4fee15 /server/sonar-web/design-system/src/theme/light.ts | |
parent | 9d470a890bc45f553ff849b578090c919296d09e (diff) | |
download | sonarqube-ad0029cacacc54b36830b32bd68d30034a671b5d.tar.gz sonarqube-ad0029cacacc54b36830b32bd68d30034a671b5d.zip |
SONAR-19171 New Execution Flow component
Diffstat (limited to 'server/sonar-web/design-system/src/theme/light.ts')
-rw-r--r-- | server/sonar-web/design-system/src/theme/light.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/sonar-web/design-system/src/theme/light.ts b/server/sonar-web/design-system/src/theme/light.ts index 24cd71f3ea3..cbcebc1e185 100644 --- a/server/sonar-web/design-system/src/theme/light.ts +++ b/server/sonar-web/design-system/src/theme/light.ts @@ -169,6 +169,9 @@ export const lightTheme = { // code viewer codeLineIssueIndicator: COLORS.blueGrey[400], // Should be blueGrey[300], to be changed once code viewer is reworked + codeLineLocationMarker: COLORS.red[200], + codeLineLocationMarkerSelected: danger.lighter, + codeLineLocationSelected: COLORS.blueGrey[100], // checkbox checkboxHover: COLORS.indigo[50], @@ -368,6 +371,9 @@ export const lightTheme = { subnavigationSeparator: COLORS.grey[50], subnavigationSubheading: COLORS.blueGrey[25], subnavigationDisabled: COLORS.blueGrey[300], + subnavigationExecutionFlow: COLORS.blueGrey[25], + subnavigationExecutionFlowBorder: secondary.default, + subnavigationExecutionFlowActive: COLORS.indigo[500], // footer footer: COLORS.white, @@ -526,6 +532,10 @@ export const lightTheme = { toggle: secondary.darker, toggleHover: secondary.darker, + // code viewer + codeLineLocationMarker: COLORS.red[900], + codeLineLocationMarkerSelected: COLORS.red[900], + // code snippet codeSnippetHighlight: danger.default, @@ -625,6 +635,7 @@ export const lightTheme = { // subnavigation sidebar subnavigation: secondary.darker, + subnavigationExecutionFlow: COLORS.blueGrey[700], subnavigationHover: COLORS.blueGrey[700], subnavigationSubheading: secondary.dark, |