Class: Scruffy::Themes::Standard

Inherits:
Base
  • Object
show all
Defined in:
lib/scruffy/themes.rb

Overview

Instance Attribute Summary

Attributes inherited from Base

#background, #colors, #font_family, #legend_font_size, #marker, #marker_font_size, #outlines, #title_font_size

Instance Method Summary collapse

Methods inherited from Base

#darken, #lighten, #next_color, #next_outline

Constructor Details

#initializeStandard

Returns a new instance of Standard.



81
82
83
84
85
86
87
88
# File 'lib/scruffy/themes.rb', line 81

def initialize
  super({
          :background => ['#FFFFFF', '#FFFFFF'],
          :marker => '#999999',
          :colors => %w(#1919B3 #FFB200 #FFFF00 #660099 #E9E9FF #FFF7E6 #FFFFE6 #F7E6FF #0F0F6B #996B00 #999900 #3D005C)
        })

end