-- | Helper functions to color strings module Web.Tweet.Utils.Colors where import Text.PrettyPrint.ANSI.Leijen -- | Make a string red toRed :: String -> String toRed = show . red . text -- | Make a string yellow toYellow :: String -> String toYellow = show . dullyellow . text -- | Make a string green toGreen :: String -> String toGreen = show . dullgreen . text