1 Setup 2 Auswahl 3 Reproducibility 1 Setup library(tidyverse) library(paletteer) 2 Auswahl wesanderson::wes_palette("FantasticFox1") show_cols <- function(col_pal){ d <- tibble(x = 1:length(col_pal), col = factor(col_pal)) ggplot(d) + aes(x=x)+ geom_bar(aes(fill = col)) + theme_void() + scale_fill_manual(values = col_pal) } show_cols(paletteer_d("awtools::a_palette", n = 5)) show_cols(paletteer_d("awtools::mpalette", n = 5)) show_cols(paletteer_d("ggthemes::colorblind", n = 5)) paletteer_d(&quot;beyonce::X18&quot;) #> <colors> #> …