lets_plot.flavor_darcula#

lets_plot.flavor_darcula()#

Darcula color scheme.

Returns:
FeatureSpec

Theme specification.

Examples

 1import numpy as np
 2from lets_plot import *
 3LetsPlot.setup_html()
 4data = {'name': ['pen', 'brush', 'paper'],
 5        'slice': [1, 3, 3]}
 6ggplot(data) + \
 7    geom_pie(aes(fill='name', slice='slice'),
 8             stat='identity', color='pen',
 9             tooltips='none', labels=layer_labels().line('@name')) + \
10    scale_fill_manual(['pen', 'brush', 'paper']) + \
11    flavor_darcula()