Some fixes for colors (#15479)

Please note the background colors of the tags and of the nodes

## Before

<img width="3456" height="2161" alt="CleanShot 2025-10-30 at 16 03
21@2x"
src="https://github.com/user-attachments/assets/09cbd1bd-26e2-4e05-88bc-f7d96de8a004"
/>

## After

<img width="3456" height="2160" alt="CleanShot 2025-10-30 at 17 03
25@2x"
src="https://github.com/user-attachments/assets/dc4fe113-1489-4476-a8b6-4cb446addcd5"
/>
This commit is contained in:
Baptiste Devessier
2025-10-30 17:23:22 +01:00
committed by GitHub
parent a16fcebe67
commit 51fdaf2731
3 changed files with 64 additions and 64 deletions
@@ -26,7 +26,7 @@ export const getWorkflowDiagramColors = ({
case 'RUNNING': {
return {
selected: {
background: theme.color.yellow3,
background: theme.color.yellow2,
borderColor: theme.color.yellow,
color: theme.tag.text.yellow,
titleColor: theme.font.color.primary,
@@ -44,7 +44,7 @@ export const getWorkflowDiagramColors = ({
case 'FAILED': {
return {
selected: {
background: theme.color.red3,
background: theme.color.red2,
borderColor: theme.color.red,
color: theme.tag.text.red,
titleColor: theme.font.color.primary,
@@ -63,7 +63,7 @@ export const getWorkflowDiagramColors = ({
case 'SUCCESS': {
return {
selected: {
background: theme.color.turquoise3,
background: theme.color.turquoise2,
borderColor: theme.color.turquoise,
color: theme.tag.text.green,
titleColor: theme.font.color.primary,
@@ -81,7 +81,7 @@ export const getWorkflowDiagramColors = ({
default: {
return {
selected: {
background: theme.color.blue3,
background: theme.color.blue2,
borderColor: theme.color.blue,
color: theme.tag.text.blue,
titleColor: theme.font.color.primary,