| 1 |
{ |
| 2 |
"$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 |
"$id": "extendify/launch-global/shape", |
| 4 |
"title": "Surface", |
| 5 |
"type": "object", |
| 6 |
"additionalProperties": false, |
| 7 |
"properties": { |
| 8 |
"--ext-ui-radius": { |
| 9 |
"type": "number", |
| 10 |
"minimum": 0, |
| 11 |
"maximum": 48, |
| 12 |
"default": 24, |
| 13 |
"x-card": "Corners", |
| 14 |
"x-label": "Radius", |
| 15 |
"x-control": "length", |
| 16 |
"x-unlocks": "radius" |
| 17 |
}, |
| 18 |
"--ext-ui-radius-card": { |
| 19 |
"type": "number", |
| 20 |
"minimum": 0, |
| 21 |
"maximum": 48, |
| 22 |
"default": 24, |
| 23 |
"x-card": "Corners", |
| 24 |
"x-label": "Card", |
| 25 |
"x-control": "length", |
| 26 |
"x-lockedBy": "radius" |
| 27 |
}, |
| 28 |
"--ext-ui-radius-input": { |
| 29 |
"type": "number", |
| 30 |
"minimum": 0, |
| 31 |
"maximum": 48, |
| 32 |
"default": 24, |
| 33 |
"x-card": "Corners", |
| 34 |
"x-label": "Input", |
| 35 |
"x-control": "length", |
| 36 |
"x-lockedBy": "radius" |
| 37 |
}, |
| 38 |
"--ext-ui-radius-button": { |
| 39 |
"type": "number", |
| 40 |
"minimum": 0, |
| 41 |
"maximum": 48, |
| 42 |
"default": 48, |
| 43 |
"x-card": "Corners", |
| 44 |
"x-label": "Button", |
| 45 |
"x-control": "length", |
| 46 |
"x-lockedBy": "radius" |
| 47 |
}, |
| 48 |
"--ext-ui-border-width": { |
| 49 |
"type": "number", |
| 50 |
"minimum": 0, |
| 51 |
"maximum": 8, |
| 52 |
"default": 1, |
| 53 |
"x-card": "Border", |
| 54 |
"x-label": "Border", |
| 55 |
"x-control": "length" |
| 56 |
}, |
| 57 |
"--ext-ui-button-pad": { |
| 58 |
"type": "number", |
| 59 |
"minimum": 0, |
| 60 |
"maximum": 32, |
| 61 |
"default": 8, |
| 62 |
"x-card": "Button", |
| 63 |
"x-label": "Padding", |
| 64 |
"x-control": "length" |
| 65 |
}, |
| 66 |
"--ext-ui-button-pad-x": { |
| 67 |
"type": "number", |
| 68 |
"minimum": 0, |
| 69 |
"maximum": 48, |
| 70 |
"default": 12, |
| 71 |
"x-card": "Button", |
| 72 |
"x-label": "Padding sides", |
| 73 |
"x-control": "length" |
| 74 |
}, |
| 75 |
"--ext-ui-button-label-pad": { |
| 76 |
"type": "number", |
| 77 |
"minimum": 0, |
| 78 |
"maximum": 24, |
| 79 |
"default": 4, |
| 80 |
"x-card": "Button", |
| 81 |
"x-label": "Label inset", |
| 82 |
"x-control": "length" |
| 83 |
}, |
| 84 |
"--ext-ui-shadow": { |
| 85 |
"type": "string", |
| 86 |
"default": "0px 4px 6px -1px rgba(0, 0, 0, 0.1)", |
| 87 |
"x-card": "Shadow", |
| 88 |
"x-label": "Shadow", |
| 89 |
"x-control": "shadow" |
| 90 |
}, |
| 91 |
"--ext-ui-blur": { |
| 92 |
"type": "number", |
| 93 |
"minimum": 0, |
| 94 |
"maximum": 80, |
| 95 |
"default": 40, |
| 96 |
"x-card": "Surface", |
| 97 |
"x-label": "Blur", |
| 98 |
"x-control": "length" |
| 99 |
}, |
| 100 |
"--ext-ui-surface-opacity": { |
| 101 |
"type": "number", |
| 102 |
"minimum": 0, |
| 103 |
"maximum": 1, |
| 104 |
"multipleOf": 0.05, |
| 105 |
"default": 0.8, |
| 106 |
"x-card": "Surface", |
| 107 |
"x-label": "Opacity", |
| 108 |
"x-control": "number" |
| 109 |
}, |
| 110 |
"--ext-ui-surface-padding": { |
| 111 |
"type": "number", |
| 112 |
"minimum": 0, |
| 113 |
"maximum": 64, |
| 114 |
"default": 24, |
| 115 |
"x-card": "Surface", |
| 116 |
"x-label": "Padding", |
| 117 |
"x-control": "length", |
| 118 |
"x-unlocks": "padding" |
| 119 |
}, |
| 120 |
"--ext-ui-padding-top": { |
| 121 |
"type": "number", |
| 122 |
"minimum": 0, |
| 123 |
"maximum": 64, |
| 124 |
"default": 24, |
| 125 |
"x-card": "Surface", |
| 126 |
"x-label": "Top", |
| 127 |
"x-control": "length", |
| 128 |
"x-lockedBy": "padding" |
| 129 |
}, |
| 130 |
"--ext-ui-padding-right": { |
| 131 |
"type": "number", |
| 132 |
"minimum": 0, |
| 133 |
"maximum": 64, |
| 134 |
"default": 24, |
| 135 |
"x-card": "Surface", |
| 136 |
"x-label": "Right", |
| 137 |
"x-control": "length", |
| 138 |
"x-lockedBy": "padding" |
| 139 |
}, |
| 140 |
"--ext-ui-padding-bottom": { |
| 141 |
"type": "number", |
| 142 |
"minimum": 0, |
| 143 |
"maximum": 64, |
| 144 |
"default": 24, |
| 145 |
"x-card": "Surface", |
| 146 |
"x-label": "Bottom", |
| 147 |
"x-control": "length", |
| 148 |
"x-lockedBy": "padding" |
| 149 |
}, |
| 150 |
"--ext-ui-padding-left": { |
| 151 |
"type": "number", |
| 152 |
"minimum": 0, |
| 153 |
"maximum": 64, |
| 154 |
"default": 24, |
| 155 |
"x-card": "Surface", |
| 156 |
"x-label": "Left", |
| 157 |
"x-control": "length", |
| 158 |
"x-lockedBy": "padding" |
| 159 |
}, |
| 160 |
"--ext-ui-section-gap": { |
| 161 |
"type": "number", |
| 162 |
"minimum": 0, |
| 163 |
"maximum": 64, |
| 164 |
"default": 16, |
| 165 |
"x-card": "Layout", |
| 166 |
"x-label": "Sections", |
| 167 |
"x-control": "length" |
| 168 |
}, |
| 169 |
"--ext-ui-label-gap": { |
| 170 |
"type": "number", |
| 171 |
"minimum": 0, |
| 172 |
"maximum": 40, |
| 173 |
"default": 8, |
| 174 |
"x-card": "Layout", |
| 175 |
"x-label": "Labels", |
| 176 |
"x-control": "length" |
| 177 |
} |
| 178 |
} |
| 179 |
} |
| 180 |
|