How to change Fog Volume VFX color through scripting

I'm using Instant Fog Volume VFX and trying to change Color, which is in the General section under Smart for the effect. But I'm not sure how to access it through the script.

For point lights I just use: myLight:SetColor(Color.BLUE) for example, but this doesn't work for the fog effect.

I tried accessing it with myFog.color and I'm getting an error saying it's a misspelled the key name or does not exist. (I also tried it with Color .. same error)

Does anyone know how to change this through scripting?

You would need to use the :SetSmartProperty() function of the fog object. The smart property being the name of the fog color property.

Thanks so much!