When I init ColorPickerField I try to set up alpha value. For example
val rgb = Color().decode(“#00ff00”)
ColorPickerField().apply {
value = Color(rgb.red, rgb.green, rgb.blue, 0)
}
But when I open ColorPickerField it has alpha = 1. Color is Ok, but alpha is not.