Class: Wads::WadsAquaTheme
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
-
#initialize ⇒ WadsAquaTheme
constructor
A new instance of WadsAquaTheme.
Methods inherited from GuiTheme
#pixel_width_for_large_font, #pixel_width_for_string
Constructor Details
#initialize ⇒ WadsAquaTheme
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 |