Dim bc As BitmapCreator 'Include this standard core library
bc.Initialize(0, 0) 'Zeroes because we don't really need any bits
Dim argb As ARGBColor
bc.ColorToARGB(xui.Color_ARGB(150, 75, 230, 255), argb)
Log(argb.a & TAB & argb.r & TAB & argb.g & TAB & argb.b)