Beautiful Ghibli colors
This is a full port of the great R package ewenme/ghibli
using GhibliPalettes
# This will give you access to the ghibli dictionary in your global environment
ghibli["MononokeMedium"] # Check the nice colors
GhibliPalettes.load_ghibli()
# You are ready to go to use it in plots and cool stuff
using Plots
p = plot(title = "MarnieLight1", palette = :MarnieLight1)
for c in eachcol(rand(100, 7))
scatter!(p, c)
end
display(p)