/// <summary>
 /// Reads the <see cref="SciterValue"/> as a <see cref="SciterColor"/>
 /// </summary>
 /// <param name="sciterValue"></param>
 /// <param name="value">The output value</param>
 /// <returns></returns>
 public static bool TryAsColor(this SciterValue sciterValue, out SciterColor value)
 {
     return(sciterValue.TryAsColorInternal(out value));
 }