name: paint version: 2.0.0 synopsis: Colorization of text for command-line output description: Paint is a small module that implements the essential subset of the ANSI terminal codes that provide various text styling features, such as underlining, blinking or different foreground and background coloring. homepage: https://github.com/lovasko/paint license: OtherLicense license-file: LICENSE author: Daniel Lovasko maintainer: Daniel Lovasko copyright: 2017-2020 Daniel Lovasko category: Text build-type: Simple cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Text.Paint build-depends: base >= 4.7 && < 5 default-language: Haskell2010 executable paint-example-simple hs-source-dirs: examples main-is: Simple.hs build-depends: base , paint default-language: Haskell2010 executable paint-example-log hs-source-dirs: examples main-is: Log.hs build-depends: base , paint default-language: Haskell2010 executable paint-example-rainbow hs-source-dirs: examples main-is: Rainbow.hs build-depends: base , paint default-language: Haskell2010 source-repository head type: git location: https://github.com/lovasko/paint