Obelisk::Color
Represents a color with RGB values
Constants
BLACK = Color.new(0_u8, 0_u8, 0_u8)
Common colors
BLUE = Color.new(0_u8, 0_u8, 255_u8)
GREEN = Color.new(0_u8, 255_u8, 0_u8)
RED = Color.new(255_u8, 0_u8, 0_u8)
TRANSPARENT = Color.new(0_u8, 0_u8, 0_u8)
WHITE = Color.new(255_u8, 255_u8, 255_u8)
Constructors
Instance methods
blue
Sourcegreen
Sourcered
Source