vertical-stack-in-card
vertical-stack-in-card copied to clipboard
[Issue] When using RBG with Alpha (transparency) channel get added, appearing darker
As you can see here, when using an alpha channel in background colors they get added together, making the whole card way darker, than it is supposed to be.
Color it is supposed to be: rgba(10, 10, 10, 0.4) I suspect the color now is (10, 10, 10, 0.8), but I'm not certain Interestingly, the header gets treated differently, and is therefore not impacted
[FIX]
Use Card Mod to make the background of all cards clear, only leaving the title as is.
Do this by adding
card_mod: style: | ha-card { background: rgba(10, 10, 10, 0); }
Please use the styles
option as mentioned above.