paletteer: nice package for creating color palettes in R
https://paulvanderlaken.com/2020/03/17/paletteer-hundreds-of-color-palettes-in-r/
install.packages("paletteer")
library(paletteer)
install.packages("ggplot2")
library(ggplot2)
ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
geom_point() +
scale_color_paletteer_d("nord::aurora")