Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Kozea/pygal
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Jun 19, 2013
2 parents 4fb327e + 032cf52 commit 4ca7100
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pygal/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,19 @@ def to_dict(self):
lighten('#7dcf30', 10), darken('#247fab', 10), '#fff'))


BlueStyle = Style(
background=darken('#f8f8f8', 3),
plot_background='#f8f8f8',
foreground='rgba(0, 0, 0, 0.9)',
foreground_light='rgba(0, 0, 0, 0.9)',
foreground_dark='rgba(0, 0, 0, 0.6)',
opacity='.5',
opacity_hover='.9',
transition='250ms ease-in',
colors=('#00b2f0', '#43d9be', '#0662ab', '#ffd541', lighten('#43d9be', 20),
lighten('#7dcf30', 10), darken('#0662ab', 15), '#7dcf30', darken('#ffd541', 20)))


styles = {'default': DefaultStyle,
'light': LightStyle,
'neon': NeonStyle,
Expand All @@ -250,7 +263,8 @@ def to_dict(self):
'turquoise': TurquoiseStyle,
'green': GreenLightStyle,
'dark_green': GreenDarkStyle,
'dark_green_blue': GreenBlueDarkStyle}
'dark_green_blue': GreenBlueDarkStyle,
'blue_colorized': BlueStyle}


parametric_styles = {}
Expand Down

0 comments on commit 4ca7100

Please sign in to comment.