Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 394 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 394 Bytes

termcolor

Composable terminal colors for Haskell.

import Text.Termcolor
import Text.Termcolor.Style
import qualified Text.Termcolor.Foreground as F
import qualified Text.Termcolor.Background as B

main = putStrLn . format . underline . bold . (light . B.cyan) . (F.red) $ read "Hello World!"

demo output