Themes
See the theming section to find out how to apply these themes.
blank
using Bokeh
p = figure(title="blank", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="blank")
caliber
using Bokeh
p = figure(title="caliber", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="caliber")
contrast
using Bokeh
p = figure(title="contrast", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="contrast")
dark_minimal
using Bokeh
p = figure(title="dark_minimal", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="dark_minimal")
default
using Bokeh
p = figure(title="default", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="default")
light_minimal
using Bokeh
p = figure(title="light_minimal", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="light_minimal")
night_sky
using Bokeh
p = figure(title="night_sky", width=300, height=300)
plot!(p, Line; x=[1, 2, 3, 4, 5], y=[6, 7, 6, 4, 5])
Document(p, theme="night_sky")