I am attempting to modify the color of the ion-checkbox using TypeScript
<ion-item >
<ion-label id="check1">No</ion-label>
<ion-checkbox color="blue" id="box1" [(ngModel)]="todo.check1" name="check1"></ion-checkbox>
</ion-item>
I have tried the following:
document.getElementById("box1").color = "dark";
Unfortunately, this method did not work
I also attempted changing the class, but that was unsuccessful as well.
Thank you for your support