Class: KameColours

Inherits:
Object
  • Object
show all
Defined in:
lib/kame/kame_colours.rb

Class Method Summary collapse

Class Method Details

.lookupObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/kame/kame_colours.rb', line 2

def self.lookup
  {
    :white => 0xffffffff,
    :black => 0xff000000,
    :red => 0xffff0000,
    :green => 0xff00ff00,
    :blue => 0xff0000ff,  
    :yellow => 0xffffff00,
    :pink => 0xffff00ff,
    :grey => 0xff808080,
    :orange => 0xffff9900,
    :purple => 0xff9900ff,
    :brown => 0xff6b4e01,
    :peach => 0xffffcb7a,
    :turquoise => 0xff5edfbf,
    :silver => 0xffcccccc,
    :gold => 0xffffd700,
    :violet => 0xffbe75ea
  }
end