Change tint color of main skybox material in script

How can I access the tint color property of the main skybox material through scripting? Trying RenderSettings.skybox, the material returned does not have a color property to edit.

That’s because it uses _Tint instead of _Color (you can see this in the shader file); you can use SetColor(“_Tint”… instead.