Go's color.RGBA is alpha-premultiplied. The R, G and B values should
be <= the A value. This format is more efficient for image
composition.
The PNG format is non-alpha-premultiplied. When you pass an invalid
color.RGBA value, then the output can look unexpected.
If you want to use the PNG color model, either use color.RGBA{66, 64,
64, 130} or use color.NRGBA instead of color.RGBA.