Unchecked button color not change in Theme

After update to 0.113.3, Dark theme toggle switch color not change when uncheck.
If the switch is on it shows no problem by
switch-checked-color: “#00E2D8

But when in uncheck status, toggle button color is not change.
I use below
switch-unchecked-button-color: “var(–switch-unchecked-color, #00E2D8)”
or
switch-unchecked-button-color: “#00E2D8

And one more strange thing is in my banner-card, all switch button shows black when uncheck.
In default entity card, it shows light color by default.

Any one can help me?
FYI

Best solution will be I can control the button color by using Theme.
Secondary solution will be just change the black switch toggle button in banner card.

Thanks a lot
For better understanding my issue I attached a screenshot. Sorry for the entity name in Chinese.

Try adding these to your theme as well:

  paper-toggle-button-unchecked-button-color:
  paper-toggle-button-unchecked-bar-color: 

Have this added before.
The original theme was using paper-toggle.
It’s no use after update to 0.113 so I add switch-unchecked-button-color.

And after I investigating the code, I find the switch button color in banner-card is using card-background-color.
If I change the card background color the button color also will change.
But it’s a dark theme, not possible to change the card color.

I have just encountered this problem with the dark theme in 2021.8.8 as well.

So now with the help of card-mod it can be fixed with the following code:

        card_mod:
          style: |
            ha-card {
                   --switch-unchecked-button-color: #999999;
                 }

At least, it works for me.