U
    /e                     @  s   d Z ddlmZ ddlZeeZddlmZm	Z	m
Z
mZmZ ddlmZ dZdZd	Zd
ZdZdZei dZeeejdeee
jdeeejdeeejdeee	jdiZdS )a   Provide access to built-in themes:

Built-in themes
---------------

CALIBER
~~~~~~~

.. bokeh-plot::

    from bokeh.plotting import figure, output_file, show
    from bokeh.themes import built_in_themes
    from bokeh.io import curdoc

    x = [1, 2, 3, 4, 5]
    y = [6, 7, 6, 4, 5]

    output_file("caliber.html")
    curdoc().theme = 'caliber'
    p = figure(title='caliber', width=300, height=300)
    p.line(x, y)
    show(p)

DARK_MINIMAL
~~~~~~~~~~~~

.. bokeh-plot::

    from bokeh.plotting import figure, output_file, show
    from bokeh.themes import built_in_themes
    from bokeh.io import curdoc

    x = [1, 2, 3, 4, 5]
    y = [6, 7, 6, 4, 5]

    output_file("dark_minimal.html")
    curdoc().theme = 'dark_minimal'
    p = figure(title='dark_minimal', width=300, height=300)
    p.line(x, y)
    show(p)


LIGHT_MINIMAL
~~~~~~~~~~~~~

.. bokeh-plot::

    from bokeh.plotting import figure, output_file, show
    from bokeh.themes import built_in_themes
    from bokeh.io import curdoc

    x = [1, 2, 3, 4, 5]
    y = [6, 7, 6, 4, 5]

    output_file("light_minimal.html")
    curdoc().theme = 'light_minimal'
    p = figure(title='light_minimal', width=300, height=300)
    p.line(x, y)
    show(p)

NIGHT_SKY
~~~~~~~~~

.. bokeh-plot::

    from bokeh.plotting import figure, output_file, show
    from bokeh.themes import built_in_themes
    from bokeh.io import curdoc

    x = [1, 2, 3, 4, 5]
    y = [6, 7, 6, 4, 5]

    output_file("night_sky.html")
    curdoc().theme = 'night_sky'
    p = figure(title='night_sky', width=300, height=300)
    p.line(x, y)
    show(p)

CONTRAST
~~~~~~~~

.. bokeh-plot::

    from bokeh.plotting import figure, output_file, show
    from bokeh.themes import built_in_themes
    from bokeh.io import curdoc

    x = [1, 2, 3, 4, 5]
    y = [6, 7, 6, 4, 5]

    output_file("contrast.html")
    curdoc().theme = 'contrast'
    p = figure(title='contrast', width=300, height=300)
    p.line(x, y)
    show(p)

Theme
-----

.. autoclass:: Theme

    )annotationsN   )_caliber	_contrast_dark_minimal_light_minimal
_night_sky)Theme)CALIBERDARK_MINIMALLIGHT_MINIMAL	NIGHT_SKYCONTRASTr	   built_in_themesdefaultZcaliberZlight_minimalZdark_minimalZ	night_skyZcontrast)json)__doc__
__future__r   logging	getLogger__name__log r   r   r   r   r   Zthemer	   __all__r
   r   r   r   r   r   r   r    r   r   9/tmp/pip-unpacked-wheel-f5fndrjf/bokeh/themes/__init__.py<module>   s.   j

 
 
 
 
 
