module HighLine::BuiltinStyles

Builtin Styles that are included at HighLine initialization. It has the basic styles like :bold and :underline.

Constants

BASIC_COLORS

The builtin styles basic colors like black, red, green.

COLORS

The builtin styles' colors like LIGHT_RED and BRIGHT_BLUE.

COLOR_LIST

A Hash with the basic colors an their ANSI escape codes.

STYLES

Basic Style names like CLEAR, BOLD, UNDERLINE

STYLE_LIST

Basic styles' ANSI escape codes like :bold => “e[1m”

Public Class Methods

included(base) click to toggle source

Included callback @param base [Class, Module] base class

# File lib/highline/builtin_styles.rb, line 8
def self.included(base)
  base.extend ClassMethods
end