# standard library
import random
# local library
import coloreffect
import inkex
class C(coloreffect.ColorEffect):
help="Adjust hue")
help="Adjust saturation")
help="Adjust lightness")
help="Randomize hue")
help="Randomize saturation")
help="Randomize lightness")
dest="tab",
help="The selected UI-tab when OK was pressed")
#inkex.debug("hsl old: " + str(hsl[0]) + ", " + str(hsl[1]) + ", " + str(hsl[2]))
#inkex.debug("hsl new: " + str(hsl[0]) + ", " + str(hsl[1]) + ", " + str(hsl[2]))
c = C()
c.affect()
# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99