Class: Scruffy::Themes::CareBears

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

Overview

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

#initializeCareBears

Returns a new instance of CareBears.



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

def initialize
  super({
          # Playing with Sky Background
          # :background => ['#2774B6', '#5EA6D8'],
          # :marker => :white,
          :background => [:black, '#4A465A'],
          :marker => :white,
          :colors => %w(#FFBBBB #00CC33 #7788BB #EEAA44 #FFDD11 #44BBDD #DD6677)
        })
end