This visualization represents the content of the dataset. Then we will see how it looks in a graph representation.

ggplot(luv_colours, aes(u, v)) + 
geom_point(aes(colour = col), size = 3) + 
scale_color_identity() + 
coord_equal() +
  theme_void()