Class: Scruffy::Themes::Keynote

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

Overview

Keynote theme, based on Apple’s Keynote presentation software.

Color values used from Gruff’s default theme.

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

#initializeKeynote

Returns a new instance of Keynote.



61
62
63
64
65
66
67
# File 'lib/scruffy/themes.rb', line 61

def initialize
  super({  
          :background => [:black, '#4A465A'],
          :marker => :white, 
          :colors => %w(#6886B4 #FDD84E #72AE6E #D1695E #8A6EAF #EFAA43 white)
         })
end