Noticed that the color-dot in the info-card is black regardless of well color. Seems to be due this change that was added in #2747 . The "normalization" here puts the RGB values to 0-1, but the rgb() utility expects the colors to be 0-255, and only the alpha to be 0-1. I'd argue this pattern is the "normal" way to present RBGA arrays, so the normalizer function should reflect this (and docs updated accordingly).
// InfoCard.tsx::119
<span
style={{
color: rgb(
...toNormalizedRGBAColor(
propertyRow.color
)
).toString(),
}}
>
Noticed that the color-dot in the info-card is black regardless of well color. Seems to be due this change that was added in #2747 . The "normalization" here puts the RGB values to 0-1, but the
rgb()utility expects the colors to be 0-255, and only the alpha to be 0-1. I'd argue this pattern is the "normal" way to present RBGA arrays, so the normalizer function should reflect this (and docs updated accordingly).