Class: Wads::WadsDarkRedBrownTheme
- 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
-
#initialize ⇒ WadsDarkRedBrownTheme
constructor
A new instance of WadsDarkRedBrownTheme.
Methods inherited from GuiTheme
#pixel_width_for_large_font, #pixel_width_for_string
Constructor Details
#initialize ⇒ WadsDarkRedBrownTheme
Returns a new instance of WadsDarkRedBrownTheme.
188 189 190 191 192 193 194 195 196 197 |
# File 'lib/wads/widgets.rb', line 188 def initialize super(COLOR_WHITE, # text color Gosu::Color.argb(0xffD63D41), # graphic elements - dark red Gosu::Color.argb(0xffEC5633), # border color - dark orange Gosu::Color.argb(0xff52373B), # background - dark brown Gosu::Color.argb(0xffEC5633), # selected item - dark orange true, # use icons Gosu::Font.new(22), # regular font Gosu::Font.new(38)) # large font end |