Skip to content

Commit 2af13be

Browse files
committed
5410: Fix --identity-color missing hsl()
1 parent 8f548e9 commit 2af13be

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/stories/Library/colors/color-variables.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ $c-signal-alert: #d5364a;
2424
--identity-color-h: 145;
2525
--identity-color-s: 22%;
2626
--identity-color-l: 35%;
27-
--identity-color: var(--identity-color-h), var(--identity-color-s),
28-
var(--identity-color-l);
27+
--identity-color: hsl(
28+
var(--identity-color-h),
29+
var(--identity-color-s),
30+
var(--identity-color-l)
31+
);
2932
--tint-color-20: hsl(var(--identity-color), 0.2);
3033
--tint-color-40: hsl(var(--identity-color), 0.4);
3134
--tint-color-60: hsl(var(--identity-color), 0.6);

0 commit comments

Comments
 (0)