-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcherrypick.gschema.xml
More file actions
31 lines (30 loc) · 1.41 KB
/
cherrypick.gschema.xml
File metadata and controls
31 lines (30 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="io.github.ellie_commons.cherrypick.format">
<value value="0" nick="hex"/>
<value value="1" nick="rgb"/>
<value value="2" nick="rgba"/>
<value value="3" nick="cmyk"/>
<value value="4" nick="hsl"/>
<value value="5" nick="hsla"/>
</enum>
<schema path="/io/github/ellie_commons/cherrypick/" id="io.github.ellie_commons.cherrypick">
<key name="color-history" type="as">
<!-- Setting default to some of the colors from elementary palette -->
<default>["rgba(237, 83, 83, 1)", "rgba(243, 115, 41, 1)", "rgba(249, 196, 64, 1)", "rgba(155, 219, 77, 1)", "rgba(165, 109, 226, 1)"]</default>
<summary>Color history</summary>
<description>The rgba values for last selected colors</description>
</key>
<key name="color-snapshot" type="as">
<!-- Setting default to some of the colors from elementary palette -->
<default>["rgba(237, 83, 83, 1)", "rgba(243, 115, 41, 1)", "rgba(249, 196, 64, 1)", "rgba(155, 219, 77, 1)", "rgba(165, 109, 226, 1)"]</default>
<summary>Color history</summary>
<description>The rgba values for saved snapshot</description>
</key>
<key name="color-format" enum="io.github.ellie_commons.cherrypick.format">
<default>"rgba"</default>
<summary>Color format</summary>
<description>Last selected color format</description>
</key>
</schema>
</schemalist>