Hi! Earlier I used bubble card light switches only with switch entities, but now I need to use it with light entities. And I saw that these switches changing their color to light-pink with light entities.
I saw that there is a css-styling possibility but it didn’t work for me Is there any way to make light switches as yellow as switch switches with switch entities?
I could not find the same color, even with the help of special sites. I picked up the optimal option itself, which looks good in both light and dark themes.
styles: |
.switch-button {
background-color: ${state === 'on' ? '#FFB300' : ''} !important;
}
.bubble-icon {
color: ${state === 'on' ? 'darkorange' : ''} !important;
}