class Term::ANSIColor::RGBTriple

def invert

def invert
  self.class.new(255 - red, 255 - green, 255 - blue)
end