abbrev <- tribble(
~`Colour space model`, ~Parameter, ~Abbreviation,
"RGB", "Red", "R",
"RGB", "Green", "G",
"RGB", "Blue", "B",
"CIE xyY", "Chromatic coordinate x", "x",
"CIE xyY", "Chromatic coordinate y", "y",
"CIE xyY", "Brightness", "Y",
"CIE LAB", "Metric lightness function", "L",
"CIE LAB", "Chromatic coordinate opponent red–green scales", "a*",
"CIE LAB", "Chromatic coordinate opponent blue–yellow scales", "b*",
"CIE LUV", "Chromatic coordinate opponent red–green scales", "u*",
"CIE LUV", "Chromatic coordinate opponent blue–yellow scales", "v*",
"CIE LCH", "CIE hue", "c*",
"CIE LCH", "CIE chroma", "h*",)