|
| System.Console.ANSI.Stylized |
|
|
|
| Synopsis |
|
| ColorIntensity (Dull, Vivid) | | | Color (Black, Red, Green, Yellow, Blue, Magenta, Cyan, White) | | | ConsoleIntensity (BoldIntensity, FaintIntensity, NormalIntensity) | | | Underlining (SingleUnderline, DoubleUnderline, NoUnderline) | | | type Style = (ColourOption, StyleOption) | | | type ColourOption = (ColorIntensity, Color) | | | type StyleOption = (ConsoleIntensity, Underlining) | | | hResetGR :: Handle -> IO () | | | resetGR :: IO () | | | hPutStrS :: Handle -> Style -> String -> IO () | | | putStrS :: Style -> String -> IO () | | | hPutStrLnS :: Handle -> Style -> String -> IO () | | | putStrLnS :: Style -> String -> IO () | | | hPutS :: Handle -> [(Style, String)] -> IO () | | | putS :: [(Style, String)] -> IO () | | | hPutLnS :: Handle -> [(Style, String)] -> IO () | | | putLnS :: [(Style, String)] -> IO () | | | hPutT :: (t -> Style) -> Handle -> [(t, String)] -> IO () | | | putT :: (t -> Style) -> [(t, String)] -> IO () | | | hPutLnT :: (t -> Style) -> Handle -> [(t, String)] -> IO () | | | putLnT :: (t -> Style) -> [(t, String)] -> IO () |
|
|
| Documentation |
|
| ColorIntensity (Dull, Vivid) |
|
| Color (Black, Red, Green, Yellow, Blue, Magenta, Cyan, White) |
|
| ConsoleIntensity (BoldIntensity, FaintIntensity, NormalIntensity) |
|
| Underlining (SingleUnderline, DoubleUnderline, NoUnderline) |
|
|
|
|
|
|
|
|
| Given an handle, reset graphic rendition
|
|
|
| On stdout, reset graphic rendition
|
|
|
| Given an handle, set style and put string
|
|
|
| On stdout, set style and put string
|
|
|
| Given an handle, set style and put string followed by newline
|
|
|
| On stdout, set style and put string followed by newline
|
|
|
| Given an handle, for each item set style and put string
|
|
|
| On stdout, for each item set style and put string
|
|
|
| Given an handle, for each item set style and put string followed by newline
|
|
|
| On stdout, for each item set style and put string followed by newline
|
|
|
| Given a function mapping some type t to Style, return a function
behaving like hPutS
|
|
|
| Given a function mapping some type t to Style, return a function
behaving like putS
|
|
|
| Given a function mapping some type t to Style, return a function
behaving like hPutLnS
|
|
|
| Given a function mapping some type t to Style, return a function
behaving like putLnS
|
|
| Produced by Haddock version 2.4.2 |