Sha256: 93cb0366deba01218e367cfad196a9a2b366281e81546386e0bcb30adf6b8ff3
Contents?: true
Size: 1.16 KB
Versions: 23
Compression:
Stored size: 1.16 KB
Contents
module Guard module UI module Colors # Brighten the color ANSI_ESCAPE_BRIGHT = "1" # Black foreground color ANSI_ESCAPE_BLACK = "30" # Red foreground color ANSI_ESCAPE_RED = "31" # Green foreground color ANSI_ESCAPE_GREEN = "32" # Yellow foreground color ANSI_ESCAPE_YELLOW = "33" # Blue foreground color ANSI_ESCAPE_BLUE = "34" # Magenta foreground color ANSI_ESCAPE_MAGENTA = "35" # Cyan foreground color ANSI_ESCAPE_CYAN = "36" # White foreground color ANSI_ESCAPE_WHITE = "37" # Black background color ANSI_ESCAPE_BGBLACK = "40" # Red background color ANSI_ESCAPE_BGRED = "41" # Green background color ANSI_ESCAPE_BGGREEN = "42" # Yellow background color ANSI_ESCAPE_BGYELLOW = "43" # Blue background color ANSI_ESCAPE_BGBLUE = "44" # Magenta background color ANSI_ESCAPE_BGMAGENTA = "45" # Cyan background color ANSI_ESCAPE_BGCYAN = "46" # White background color ANSI_ESCAPE_BGWHITE = "47" end end end
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
guard-2.7.2 | lib/guard/ui/colors.rb |
guard-2.7.1 | lib/guard/ui/colors.rb |
guard-2.7.0 | lib/guard/ui/colors.rb |