# Color themes from Kuler.

import web

# Get the current most popular themes.
themes = web.kuler.search_by_popularity()

# Display colors from the first theme.
for i in range(100):
    for r, g, b in themes[0]:
        print r, g, b
        # the code below assumes the availability of methods 
        # defined in NodeBox.
        #fill(r, g, b, 0.8)
        #rotate(random(360))
        #s = random(50) + 10
        #oval(random(300), random(300), s, s)
