class Rainbow::Color::Indexed

def codes

def codes
  code = num + (ground == :foreground ? 30 : 40)
  [code]
end

def initialize(ground, num)

def initialize(ground, num)
  @ground = ground
  @num = num
end