This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A basic sketch of a class to parse and manage/hold color schemes | |
// from Adobe's Kuler (or any other list of hex value formatted colors) | |
// starting with a string of comma-separate hex color values | |
class Kuler | |
{ | |
String colors = ""; // Put the sequence of comma-separated Kuler hex values here | |
String[] colorList; | |
int[] cList; | |
int numColors; |
NewerOlder