| Copyright | (c) 2020 Kowainik |
|---|---|
| License | MPL-2.0 |
| Maintainer | Kowainik <xrom.xkov@gmail.com> |
| Safe Haskell | None |
| Language | Haskell2010 |
Colourista.IO
Description
Functions to output formatted Text directly to terminal.
Synopsis
- redMessage :: Text -> IO ()
- greenMessage :: Text -> IO ()
- blueMessage :: Text -> IO ()
- yellowMessage :: Text -> IO ()
- blackMessage :: Text -> IO ()
- whiteMessage :: Text -> IO ()
- magentaMessage :: Text -> IO ()
- cyanMessage :: Text -> IO ()
- successMessage :: Text -> IO ()
- infoMessage :: Text -> IO ()
- skipMessage :: Text -> IO ()
- warningMessage :: Text -> IO ()
- errorMessage :: Text -> IO ()
- boldMessage :: Text -> IO ()
- italicMessage :: Text -> IO ()
- formattedMessage :: [Text] -> Text -> IO ()
Color
Direct
Aliases with unicode indicators
successMessage :: Text -> IO () Source #
Similar to greenMessage, but add unicode indicator.

infoMessage :: Text -> IO () Source #
Similar to blueMessage, but add unicode indicator.

skipMessage :: Text -> IO () Source #
Similar to cyanMessage, but add unicode indicator.

warningMessage :: Text -> IO () Source #
Similar to yellowMessage, but add unicode indicator.

errorMessage :: Text -> IO () Source #
Similar to redMessage, but add unicode indicator.

Emphasis
General purpose
formattedMessage :: [Text] -> Text -> IO () Source #
Print message with specified list of formatting options. See
formatWith for more details. If this function takes empty
list, no formatting is applied.
