There is a typo that prevent the use of "ordered-sequential" palettes.
tableau_color_pal(palette = "Blue-Green Sequential", type = "ordered-sequential")
# Error in match.arg(type) :
# 'arg' should be one of “regular”, “ordered-seqential”, “ordered-diverging”
tableau_color_pal(palette = "Blue-Green Sequential", type = "ordered-seqential")
# Error in tableau_color_pal(palette = "Blue-Green Sequential", type = "ordered-seqential") :
# `palette` must be one of .
Simply rewrite "ordered-sequential" should fix the issue.
There is a typo that prevent the use of "ordered-sequential" palettes.
Simply rewrite "ordered-sequential" should fix the issue.