plot_themes
Plot themes. See Bokeh documentation on Theme class
DARKTHEME = Theme(json={'attrs': darkprops})
module-attribute
#
Dark theme object
LIGHTTHEME = Theme(json={'attrs': lightprops})
module-attribute
#
Light theme object
darkprops = {'Plot': {'background_fill_color': '#212121', 'border_fill_color': '#424242', 'outline_line_color': '#616161'}, 'Axis': {'major_tick_line_color': '#FFFFFF', 'minor_tick_line_color': '#BDBDBD', 'axis_line_color': '#BDBDBD', 'major_label_text_color': '#FFFFFF', 'major_label_text_font_size': '11pt', 'axis_label_text_color': '#FFFFFF', 'axis_label_text_font_size': '16pt'}, 'Grid': {'grid_line_color': '#616161'}, 'Title': {'text_color': '#FFFFFF', 'text_font_size': '16pt'}, 'Legend': {'background_fill_color': '#424242', 'label_text_color': '#FFFFFF'}, 'ColorBar': {'background_fill_color': '#424242', 'title_text_color': '#FFFFFF', 'major_label_text_color': '#FFFFFF', 'major_label_text_font_size': '11pt', 'title_text_font_size': '16pt'}, 'Text': {'text_color': '#FFFFFF'}}
module-attribute
#
Specific hex colors for the dark theme.
lightprops = {'Plot': {'background_fill_color': '#FAFAFA', 'border_fill_color': '#EEEEEE', 'outline_line_color': '#BDBDBD'}, 'Axis': {'major_tick_line_color': '#212121', 'minor_tick_line_color': '#616161', 'axis_line_color': '#616161', 'major_label_text_color': '#212121', 'major_label_text_font_size': '11pt', 'axis_label_text_color': '#212121', 'axis_label_text_font_size': '16pt'}, 'Grid': {'grid_line_color': '#BDBDBD'}, 'Title': {'text_color': '#212121', 'text_font_size': '16pt'}, 'Legend': {'background_fill_color': '#EEEEEE', 'label_text_color': '#212121'}, 'ColorBar': {'background_fill_color': '#EEEEEE', 'title_text_color': '#212121', 'major_label_text_color': '#212121', 'major_label_text_font_size': '11pt', 'title_text_font_size': '16pt'}, 'Text': {'text_color': '#212121'}}
module-attribute
#
Specific hex colors for the light theme.