I am using the new HDRP/LitTesselation shader.
I would like to change the Base Color + Opacity at runtime:

I added this code to the game object's script:
void start()
{
Color color = new Color(100, 50, 100, 150);
//Fetch the Renderer from the GameObject
Renderer rend = GetComponent<Renderer>();
//Set the main Color of the Material to green
rend.material.shader = Shader.Find("_Color");
rend.material.SetColor("_Color", color);
}
But it generates an Hidden/InternalShaderError error in the shader. Can anyone point me in the right direction?