ScalaColor

Build Status Codacy Badge Codacy Badge Sonatype Version Scala Version Licence

ScalaColor is a simple Scala library which provides abstraction for colorized print in the console.

Installation

In your build.sbt :

resolvers += Resolver.sonatypeRepo("public")

libraryDependencies += "com.github.SnipyJulmy" %% "scalacolor" % "1.0"

or for maven :

<dependency>
  <groupId>com.github.SnipyJulmy</groupId>
  <artifactId>scalacolor_2.12</artifactId>
  <version>1.0</version>
</dependency>

For the moment the library is available only for scala 2.12.1...

Example

object Main extends App {

    // ...

    println("Error...".red)

    //..
}

License

GPLv3, just because I like the GPL !