Skip to content

Instantly share code, notes, and snippets.

@i386
Created October 18, 2012 08:12
Show Gist options
  • Save i386/3910402 to your computer and use it in GitHub Desktop.
Save i386/3910402 to your computer and use it in GitHub Desktop.
A nice java api for that thing
public class LightMain
{
public static void main(String[] args) throws Exception
{
Light.letThereBe(args[0])
.color(Color.CYAN)
.color(Color.RED)
.color(Color.BLUE)
.gradient(Color.GREEN, Color.PINK, 5);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment