A smallish package to generate colors in traditional Japanese color system. See 日本の伝統色 for a complete list of colors. Both Roman and Kanji names are supported.
NipponColors.jl can be installed with the Julia package manager. From the Julia REPL, you can get in the package manager (by pressing ]) and add the package
julia> ]
(v1.6) pkg> add NipponColors
using Plots, NipponColors
D = dict_color()
x = 0:0.02:1 |> collect
plot(x, sin.(2π .* x), color = D["mizu"])
plot!(x, cos.(2π .* x), color = D["梔子"])