Use the correct color for workflow nodes label (#7829)

Follow the design from the Figma about the color to use.

Big up to @Bonapara for doing great job on the Figma!

It was done on stream!

Fixes #7058
This commit is contained in:
Baptiste Devessier 2024-10-19 10:59:04 +02:00 committed by GitHub
parent 29f903a83b
commit 36e59d80c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -66,7 +66,9 @@ const StyledStepNodeLabel = styled.div<{ variant?: Variant }>`
font-weight: ${({ theme }) => theme.font.weight.medium};
column-gap: ${({ theme }) => theme.spacing(2)};
color: ${({ variant, theme }) =>
variant === 'placeholder' ? theme.font.color.extraLight : null};
variant === 'placeholder'
? theme.font.color.extraLight
: theme.font.color.primary};
`;
const StyledSourceHandle = styled(Handle)`