Module: Guard::UI::Colors

Included in:
Guard::UI
Defined in:
lib/guard/ui/colors.rb

Constant Summary collapse

ANSI_ESCAPE_BRIGHT =

Brighten the color

"1"
ANSI_ESCAPE_BLACK =

Black foreground color

"30"
ANSI_ESCAPE_RED =

Red foreground color

"31"
ANSI_ESCAPE_GREEN =

Green foreground color

"32"
ANSI_ESCAPE_YELLOW =

Yellow foreground color

"33"
ANSI_ESCAPE_BLUE =

Blue foreground color

"34"
ANSI_ESCAPE_MAGENTA =

Magenta foreground color

"35"
ANSI_ESCAPE_CYAN =

Cyan foreground color

"36"
ANSI_ESCAPE_WHITE =

White foreground color

"37"
ANSI_ESCAPE_BGBLACK =

Black background color

"40"
ANSI_ESCAPE_BGRED =

Red background color

"41"
ANSI_ESCAPE_BGGREEN =

Green background color

"42"
ANSI_ESCAPE_BGYELLOW =

Yellow background color

"43"
ANSI_ESCAPE_BGBLUE =

Blue background color

"44"
ANSI_ESCAPE_BGMAGENTA =

Magenta background color

"45"
ANSI_ESCAPE_BGCYAN =

Cyan background color

"46"
ANSI_ESCAPE_BGWHITE =

White background color

"47"