1<?xml version="1.0" encoding="UTF-8"?>
2<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3    <name>Randomize</name>
4    <id>org.inkscape.color.randomize</id>
5    <param name="tab" type="notebook">
6        <page name="Options" gui-text="Options">
7            <param name="hue_range" type="int" appearance="full" min="0" max="100" indent="0" gui-text="Hue range (%)">100</param>
8            <param name="saturation_range" type="int" appearance="full" min="0" max="100" indent="0" gui-text="Saturation range (%)">100</param>
9            <param name="lightness_range" type="int" appearance="full" min="0" max="100" indent="0" gui-text="Lightness range (%)">100</param>
10            <param name="opacity_range" type="int" appearance="full" min="0" max="100" indent="0" gui-text="Opacity range (%)">0</param>
11        </page>
12        <page name="Help" gui-text="Help">
13            <label xml:space="preserve">Randomizes hue, saturation, lightness and/or opacity (opacity randomization only for objects and groups). Change the range values to limit the distance between the original color and the randomized one.</label>
14        </page>
15    </param>
16    <effect>
17        <object-type>all</object-type>
18        <effects-menu>
19            <submenu name="Color"/>
20        </effects-menu>
21    </effect>
22    <script>
23        <command location="inx" interpreter="python">color_randomize.py</command>
24    </script>
25</inkscape-extension>
26