Skip to content

Commit c7374a3

Browse files
committed
fix: in react ui, soften light colors, update dark to use same hues
Signed-off-by: Nick Mitchell <[email protected]>
1 parent 259048f commit c7374a3

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pdl-live-react/src/view/masonry/Masonry.css

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,27 @@
2828
.pf-v6-theme-dark {
2929
.pdl-masonry-tile {
3030
&[data-kind="model"] {
31-
background: var(--pf-t--global--color--status--custom--default);
31+
background: #63bdbd;
32+
}
33+
&[data-kind="read"] {
34+
background: #f5921b;
3235
}
3336
&[data-kind="code"] {
34-
background: var(--pf-t--global--color--status--success--default);
37+
background: #876fd4;
3538
}
3639
}
3740
}
3841

3942
.pdl-masonry-tile {
4043
background: var(--pf-t--global--background--color--secondary--default);
4144
&[data-kind="model"] {
42-
background: var(--pf-t--global--color--nonstatus--teal--default);
45+
background: #daf2f2;
4346
}
4447
&[data-kind="read"] {
45-
background: var(--pf-t--global--color--nonstatus--orange--default);
48+
background: #ffe8cc;
4649
}
4750
&[data-kind="code"] {
48-
background: var(--pf-t--global--color--nonstatus--purple--default);
51+
background: #ece6ff;
4952
}
5053
}
5154

0 commit comments

Comments
 (0)