class Colors
Public Class Methods
BLUE()
click to toggle source
# File lib/geektool_kit/colors.rb, line 15 def self.BLUE "\033[34m" end
CYAN()
click to toggle source
# File lib/geektool_kit/colors.rb, line 23 def self.CYAN "\033[36m" end
DEFAULT()
click to toggle source
# File lib/geektool_kit/colors.rb, line 31 def self.DEFAULT "\033[0;39m" end
GREEN()
click to toggle source
# File lib/geektool_kit/colors.rb, line 7 def self.GREEN "\033[32m" end
MAGENTA()
click to toggle source
# File lib/geektool_kit/colors.rb, line 19 def self.MAGENTA "\033[35m" end
RED()
click to toggle source
# File lib/geektool_kit/colors.rb, line 3 def self.RED "\033[31m" end
RESET()
click to toggle source
# File lib/geektool_kit/colors.rb, line 35 def self.RESET "\033[0m" end
WHITE()
click to toggle source
# File lib/geektool_kit/colors.rb, line 27 def self.WHITE "\033[37m" end
YELLOW()
click to toggle source
# File lib/geektool_kit/colors.rb, line 11 def self.YELLOW "\033[33m" end