how to change hexadecimal value in color in unity code example
Example 1: new Color from hex in unity
Color greenColor;
ColorUtility.TryParseHtmlString("#0AC742", out greenColor);
Example 2: unity get hex from color
ColorUtility.ToHtmlStringRGB( myColor );