diff --git a/packages/design-system/src/styleguide/colors.stories.mdx b/packages/design-system/src/styleguide/colors.stories.mdx index 6778b632d0..7090bbde3f 100644 --- a/packages/design-system/src/styleguide/colors.stories.mdx +++ b/packages/design-system/src/styleguide/colors.stories.mdx @@ -44,7 +44,7 @@ import ColorCircles from './ColorCircles.vue'; {{ - template: ``, + template: ``, components: { ColorCircles, }, diff --git a/packages/design-system/theme/src/_tokens.scss b/packages/design-system/theme/src/_tokens.scss index 93f46ac037..24e245a344 100644 --- a/packages/design-system/theme/src/_tokens.scss +++ b/packages/design-system/theme/src/_tokens.scss @@ -75,6 +75,15 @@ var(--color-success-tint-2-l) ); + --color-success-light-h: 150; + --color-success-light-s: 54%; + --color-success-light-l: 70%; + --color-success-light: hsl( + var(--color-success-light-h), + var(--color-success-light-s), + var(--color-success-light-l) + ); + --color-warning-h: 36; --color-warning-s: 77%; --color-warning-l: 57%; diff --git a/packages/editor-ui/src/views/canvasHelpers.ts b/packages/editor-ui/src/views/canvasHelpers.ts index aed8fcd507..44ac7c3125 100644 --- a/packages/editor-ui/src/views/canvasHelpers.ts +++ b/packages/editor-ui/src/views/canvasHelpers.ts @@ -79,7 +79,7 @@ export const CONNECTOR_PAINT_STYLE_PRIMARY = { export const CONNECTOR_PAINT_STYLE_SUCCESS = { ...CONNECTOR_PAINT_STYLE_DEFAULT, - stroke: getStyleTokenValue('--color-success'), + stroke: getStyleTokenValue('--color-success-light'), }; export const CONNECTOR_ARROW_OVERLAYS: OverlaySpec[] = [