PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / AutoLaunch / templates / global / color.json

color.json in Extendify trunk, at src/AutoLaunch/templates/global/color.json

94 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://json-schema.org/draft/2020-12/schema",
3 "$id": "extendify/launch-global/color",
4 "title": "Color",
5 "type": "object",
6 "additionalProperties": false,
7 "properties": {
8 "--ext-ui-page": {
9 "type": "string",
10 "default": "#2271b1",
11 "x-card": "Page",
12 "x-label": "Page",
13 "x-control": "color"
14 },
15 "--ext-ui-page-text": {
16 "type": "string",
17 "default": "#ffffff",
18 "x-card": "Page",
19 "x-label": "Page text",
20 "x-control": "color"
21 },
22 "--ext-ui-action": {
23 "type": "string",
24 "default": "#2271b1",
25 "x-card": "Action",
26 "x-label": "Action",
27 "x-control": "color"
28 },
29 "--ext-ui-action-text": {
30 "type": "string",
31 "default": "#ffffff",
32 "x-card": "Action",
33 "x-label": "Action text",
34 "x-control": "color"
35 },
36 "--ext-ui-focus": {
37 "type": "string",
38 "default": "#2271b1",
39 "x-card": "Action",
40 "x-label": "Focus",
41 "x-control": "color"
42 },
43 "--ext-ui-surface": {
44 "type": "string",
45 "default": "#f0f0f0",
46 "x-card": "Surface",
47 "x-label": "Surface",
48 "x-control": "color"
49 },
50 "--ext-ui-ink": {
51 "type": "string",
52 "default": "#1e1e1e",
53 "x-card": "Surface",
54 "x-label": "Surface text",
55 "x-control": "color"
56 },
57 "--ext-ui-ink-muted": {
58 "type": "string",
59 "default": "#757575",
60 "x-card": "Surface",
61 "x-label": "Placeholder",
62 "x-control": "color"
63 },
64 "--ext-ui-line": {
65 "type": "string",
66 "default": "#dddddd",
67 "x-card": "Surface",
68 "x-label": "Border",
69 "x-control": "color"
70 },
71 "--ext-ui-secondary-fill": {
72 "type": "string",
73 "default": "#f0f0f0",
74 "x-card": "Secondary button",
75 "x-label": "Fill",
76 "x-control": "color"
77 },
78 "--ext-ui-secondary-line": {
79 "type": "string",
80 "default": "#1e1e1e",
81 "x-card": "Secondary button",
82 "x-label": "Outline",
83 "x-control": "color"
84 },
85 "--ext-ui-secondary-text": {
86 "type": "string",
87 "default": "#1e1e1e",
88 "x-card": "Secondary button",
89 "x-label": "Text",
90 "x-control": "color"
91 }
92 }
93 }
94