Uses of Interface
toxi.color.theory.ColorTheoryStrategy

Packages that use ColorTheoryStrategy
toxi.color   
toxi.color.theory   
 

Uses of ColorTheoryStrategy in toxi.color
 

Methods in toxi.color with parameters of type ColorTheoryStrategy
static ColorList ColorList.createUsingStrategy(ColorTheoryStrategy strategy, TColor c)
          Factory method.
 

Uses of ColorTheoryStrategy in toxi.color.theory
 

Classes in toxi.color.theory that implement ColorTheoryStrategy
 class AnalogousStrategy
          Creates a new palette of 4 similar (slightly paler) colors in addition to the given start color.
 class ComplementaryStrategy
          Creates 5 additional colors in relation to the given base color: a contrasting color: much darker or lighter than the original. a soft supporting color: lighter and less saturated. a contrasting complement: very dark or very light. the complement and a light supporting variant.
 class CompoundTheoryStrategy
           
 class LeftSplitComplementaryStrategy
           
 class MonochromeTheoryStrategy
          Creates 4 additional shades of the given color, thus creating a monochrome palette.
 class RightSplitComplementaryStrategy
           
 class SingleComplementStrategy
          Implements the single complementary color scheme to create a compatible color for the given one.
 class SplitComplementaryStrategy
          Implements the split-complementary color scheme to create 2 compatible colors for the given one.
 class TetradTheoryStrategy
          Implements the tetradic color scheme to create 4 compatible colors for the given one.
 class TriadTheoryStrategy
          Implements the triadic color scheme to create 3 compatible colors for the given one.
 

Fields in toxi.color.theory declared as ColorTheoryStrategy
static ColorTheoryStrategy ColorTheoryRegistry.ANALOGOUS
           
static ColorTheoryStrategy ColorTheoryRegistry.COMPLEMENTARY
           
static ColorTheoryStrategy ColorTheoryRegistry.COMPOUND
           
static ColorTheoryStrategy ColorTheoryRegistry.LEFT_SPLIT_COMPLEMENTARY
           
static ColorTheoryStrategy ColorTheoryRegistry.MONOCHROME
           
static ColorTheoryStrategy ColorTheoryRegistry.RIGHT_SPLIT_COMPLEMENTARY
           
static ColorTheoryStrategy ColorTheoryRegistry.SINGLE_COMPLEMENT
           
static ColorTheoryStrategy ColorTheoryRegistry.SPLIT_COMPLEMENTARY
           
static ColorTheoryStrategy ColorTheoryRegistry.TETRAD
           
static ColorTheoryStrategy ColorTheoryRegistry.TRIAD
           
 

Methods in toxi.color.theory that return ColorTheoryStrategy
static ColorTheoryStrategy ColorTheoryRegistry.getStrategyForName(java.lang.String id)
           
 

Methods in toxi.color.theory that return types with arguments of type ColorTheoryStrategy
static java.util.ArrayList<ColorTheoryStrategy> ColorTheoryRegistry.getRegisteredStrategies()
           
 

Methods in toxi.color.theory with parameters of type ColorTheoryStrategy
static void ColorTheoryRegistry.registerImplementation(ColorTheoryStrategy impl)