get the SDGS colour for each Goal

SDGs_cols(...)

Arguments

...

arguments for passing to other functions

Value

hex colour for each Goal

Examples

if (FALSE) {
Norway <- SDGsR::get_indicator(Country = "578", indicator = "15.4.1")
Norway %>%
  dplyr::select(timePeriodStart, value, seriesDescription) %>%
  ggplot2::ggplot(aes(timePeriodStart, value)) +
  ggplot2::geom_point(colour = SDGs_cols("Goal15")) +
  ggplot2::ggtitle(label = paste0(Norway$seriesDescription[1]))
  }