// triad( color )
// returns triad variations of given color

me-triad( color )
    first = spin( color, 120 )
    second = spin( color, -120 )
    ( first second )

triad = me-triad unless me-no-conflict
