Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 639 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 639 Bytes

GhibliPalettes.jl

Beautiful Ghibli colors

This is a full port of the great R package ewenme/ghibli

How to use

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)