Skip to content

Commit 0d79ff0

Browse files
[web] Increase contrast on attribute items in sidebar (#736)
Signed-off-by: Peter Wielander <mittgfu@gmail.com>
1 parent e7de61f commit 0d79ff0

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.changeset/fluffy-cats-matter.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@workflow/web-shared": patch
3+
---
4+
5+
Increase contrast on attribute items in sidebar

packages/web-shared/src/sidebar/attribute-panel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ export const AttributeBlock = ({
570570
<div className="flex items-center gap-1.5">
571571
<span
572572
className="text-[11px] font-medium"
573-
style={{ color: 'var(--ds-gray-500)' }}
573+
style={{ color: 'var(--ds-gray-700)' }}
574574
>
575575
{attribute}
576576
</span>
@@ -594,7 +594,7 @@ export const AttributeBlock = ({
594594
<div key={attribute} className="flex flex-col gap-0 my-2">
595595
<span
596596
className="text-xs font-medium"
597-
style={{ color: 'var(--ds-gray-500)' }}
597+
style={{ color: 'var(--ds-gray-700)' }}
598598
>
599599
{attribute}
600600
</span>
@@ -670,7 +670,7 @@ export const AttributePanel = ({
670670
>
671671
<span
672672
className="text-[11px] font-medium"
673-
style={{ color: 'var(--ds-gray-500)' }}
673+
style={{ color: 'var(--ds-gray-700)' }}
674674
>
675675
{attribute}
676676
</span>

packages/web-shared/src/sidebar/events-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export function EventsList({
115115
>
116116
<span
117117
className="text-[11px] font-medium"
118-
style={{ color: 'var(--ds-gray-500)' }}
118+
style={{ color: 'var(--ds-gray-700)' }}
119119
>
120120
{key}
121121
</span>

0 commit comments

Comments
 (0)