Class: Scruffy::Themes::Mephisto

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

Overview

Roughly, roughly based on the color scheme of www.mephistoblog.com.

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

#initializeMephisto

Returns a new instance of Mephisto.



106
107
108
109
110
111
112
113
# File 'lib/scruffy/themes.rb', line 106

def initialize
  super({
          :background => ['#101010', '#999977'],
          :marker => :white,
          :colors => %w(#DD3300 #66AABB #225533 #992200)
        })
  
end