If you have the color already, I do not see how this would be a problem!
Simply get your object's Light component, GetComponent(), and change its color value to your color.
//Let's say that the color picker returns a Color type.
Color newLightColor = ColorPicker.GetSelectedColor();
//Your "light" game object
go.GetComponent().color = newLightColor;
↧