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, #marker

Instance Method Summary collapse

Methods inherited from Base

#darken, #lighten, #next_color

Constructor Details

#initializeMephisto

Returns a new instance of Mephisto.



72
73
74
75
76
77
78
79
# File 'lib/scruffy/themes.rb', line 72

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