csc360-a1-shell/ruby/colours.rb

9 lines
256 B
Ruby

class Shell
# These colours should be safe on dark and light backgrounds.
BLUE = "\033[1;34m".freeze
GREEN = "\033[1;32m".freeze
YELLOW = "\033[1;33m".freeze
RED = "\033[1;31m".freeze
WHITE = "\033[1;37m".freeze
CLEAR = "\033[0;m".freeze
end