Use plain English colour names for AAGI colours to get the hex codes.
Usage
colour_as_hex(
name = c("AAGI Black", "AAGI Bright Green", "AAGI Blue", "AAGI Teal", "AAGI Green",
"AAGI Yellow", "AAGI Orange", "AAGI Grey")
)
Examples
# return AAGI Black as a hex code
colour_as_hex(name = "AAGI Black")
#> [1] "#414042"
# return AAGI Black, Bright Green and Orange as hex codes
colour_as_hex(name = c("AAGI Black", "AAGI Bright Green", "AAGI Orange"))
#> [1] "#414042" "#B6D438" "#ec8525"