Can't change circle color

Hi,

I can’t change the color of my circle (it stays black) …

this.backGroundCircleOne = this.add.circle(700, 700, 300, "#FF0000");

I tried to add this but it didn’t change anything :
this.backGroundCircleOne.setFillStyle("#FF0000", 1);

Any idea ? :sweat_smile:

Colors are given as hex values, not CSS color values. So. swap your string for 0xff0000 instead.

Thank you it works !