I'm trying this in Ionic 5 and it works:
<ion-content style="--background: yellow;">
However I want to change the color dinamically. I've tried this with no success:
<ion-content [ngStyle]="{'--background': backgroundColor}">
I can't find the mistake.
NgStyle
does not support css variables.It's a "known" limitation and it's been for quite a while:
https://github.com/angular/angular/issues/9343
There are workarounds, however, even if somewhat ugly. My preferred is this: