optparse-applicative-fork-0.16.1.0: Utilities and combinators for parsing command line options
Safe Haskell Safe-Inferred
Language Haskell98

Options.Applicative.Help.Style

Synopsis

Documentation

data SetStyle Source #

Constructors

SetStyle

Fields

data ColorIntensity Source #

ANSI's standard colors come in two intensities

Constructors

Dull
Vivid

Instances

Instances details
Bounded ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

Enum ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

Eq ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

Ord ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

Read ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

Show ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

Ix ColorIntensity
Instance details

Defined in System.Console.ANSI.Types

data ConsoleIntensity Source #

ANSI general console intensity: usually treated as setting the font style (e.g. BoldIntensity causes text to be bold)

Constructors

BoldIntensity
FaintIntensity

Not widely supported: sometimes treated as concealing text. Not supported natively on Windows 10

NormalIntensity

Instances

Instances details
Bounded ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

Enum ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

Eq ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

Ord ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

Read ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

Show ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

Ix ConsoleIntensity
Instance details

Defined in System.Console.ANSI.Types

data Underlining Source #

ANSI text underlining

Constructors

SingleUnderline
DoubleUnderline

Not widely supported. Not supported natively on Windows 10

NoUnderline

Instances

Instances details
Bounded Underlining
Instance details

Defined in System.Console.ANSI.Types

Enum Underlining
Instance details

Defined in System.Console.ANSI.Types

Eq Underlining
Instance details

Defined in System.Console.ANSI.Types

Ord Underlining
Instance details

Defined in System.Console.ANSI.Types

Read Underlining
Instance details

Defined in System.Console.ANSI.Types

Show Underlining
Instance details

Defined in System.Console.ANSI.Types

Ix Underlining
Instance details

Defined in System.Console.ANSI.Types

color :: Color -> SetStyle Source #

Style the foreground with a vivid color.

bgColor :: Color -> SetStyle Source #

Style the background with a vivid color.

colorDull :: Color -> SetStyle Source #

Style the foreground with a dull color.

bgColorDull :: Color -> SetStyle Source #

Style the background with a dull color.