Class: Rainbow::Color::RGB

Inherits:
Indexed show all
Defined in:
lib/rainbow/color.rb

Direct Known Subclasses

X11Named

Instance Attribute Summary collapse

Attributes inherited from Indexed

#num

Attributes inherited from Rainbow::Color

#ground

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Rainbow::Color

build, parse_hex_color

Constructor Details

#initialize(ground, *values) ⇒ RGB

Returns a new instance of RGB.



100
101
102
103
104
105
106
107
# File 'lib/rainbow/color.rb', line 100

def initialize(ground, *values)
  if values.min < 0 || values.max > 255
    raise ArgumentError, "RGB value outside 0-255 range"
  end

  super(ground, 8)
  @r, @g, @b = values
end

Instance Attribute Details

#bObject (readonly)

Returns the value of attribute b.



94
95
96
# File 'lib/rainbow/color.rb', line 94

def b
  @b
end

#gObject (readonly)

Returns the value of attribute g.



94
95
96
# File 'lib/rainbow/color.rb', line 94

def g
  @g
end

#rObject (readonly)

Returns the value of attribute r.



94
95
96
# File 'lib/rainbow/color.rb', line 94

def r
  @r
end

Class Method Details

.to_ansi_domain(value) ⇒ Object



96
97
98
# File 'lib/rainbow/color.rb', line 96

def self.to_ansi_domain(value)
  (6 * (value / 256.0)).to_i
end

Instance Method Details

#codesObject



109
110
111
# File 'lib/rainbow/color.rb', line 109

def codes
  super + [5, code_from_rgb]
end