x := color.RGBA{255, 255, 255, 0} is instantiating an RGBA type from the image/color package
import org.somelib.colors.* x = new RGBA(255, 255, 255, 0);
import org.somelib.* x = new colors.RGBA(255, 255, 255, 0);
using colors = org.somelib.colors;
x := color.RGBA{255, 255, 255, 0} is instantiating an RGBA type from the image/color package