Class: Wads::WadsAquaTheme

Inherits:
GuiTheme show all
Defined in:
lib/wads/widgets.rb

Instance Attribute Summary

Attributes inherited from GuiTheme

#background_color, #border_color, #font, #font_large, #graphic_elements_color, #selection_color, #text_color, #use_icons

Instance Method Summary collapse

Methods inherited from GuiTheme

#pixel_width_for_large_font, #pixel_width_for_string

Constructor Details

#initializeWadsAquaTheme

Returns a new instance of WadsAquaTheme.



240
241
242
243
244
245
246
247
248
249
# File 'lib/wads/widgets.rb', line 240

def initialize 
    super(COLOR_WHITE,                  # text color
          Gosu::Color.argb(0xff387CA3), # graphic elements
          Gosu::Color.argb(0xff387CA3), # border color
          Gosu::Color.argb(0xff52ADC8), # background
          Gosu::Color.argb(0xff55C39E), # selected item
          true,                         # use icons
          Gosu::Font.new(22), # regular font
          Gosu::Font.new(38, { :bold => true})) # large font
end