@udixio/mcp 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +127 -0
- package/dist/bundled/components-index.json +369 -0
- package/dist/bundled/doc-src/components/Code.astro +14 -0
- package/dist/bundled/doc-src/components/ComponentPreview.astro +218 -0
- package/dist/bundled/doc-src/data/components/button.overview.mdx +152 -0
- package/dist/bundled/doc-src/data/components/card.overview.mdx +91 -0
- package/dist/bundled/doc-src/data/components/carousel.overview.mdx +108 -0
- package/dist/bundled/doc-src/data/components/checkbox.overview.mdx +172 -0
- package/dist/bundled/doc-src/data/components/chip.overview.mdx +216 -0
- package/dist/bundled/doc-src/data/components/date-picker.overview.mdx +102 -0
- package/dist/bundled/doc-src/data/components/divider.overview.mdx +54 -0
- package/dist/bundled/doc-src/data/components/fab-menu.overview.mdx +69 -0
- package/dist/bundled/doc-src/data/components/fab.overview.mdx +80 -0
- package/dist/bundled/doc-src/data/components/icon-button.overview.mdx +155 -0
- package/dist/bundled/doc-src/data/components/navigation-rail.overview.mdx +142 -0
- package/dist/bundled/doc-src/data/components/progress-indicator.overview.mdx +49 -0
- package/dist/bundled/doc-src/data/components/slider.overview.mdx +64 -0
- package/dist/bundled/doc-src/data/components/snackbar.overview.mdx +37 -0
- package/dist/bundled/doc-src/data/components/switch.overview.mdx +41 -0
- package/dist/bundled/doc-src/data/components/tabs.overview.mdx +171 -0
- package/dist/bundled/doc-src/data/components/temp.md +506 -0
- package/dist/bundled/doc-src/data/components/text-field.overview.mdx +90 -0
- package/dist/bundled/doc-src/data/components/tooltip.overview.mdx +159 -0
- package/dist/bundled/doc-src/data/pages/mcp.mdx +92 -0
- package/dist/bundled/doc-src/layouts/components.astro +87 -0
- package/dist/bundled/doc-src/layouts/layout.astro +55 -0
- package/dist/bundled/doc-src/pages/404.astro +18 -0
- package/dist/bundled/doc-src/pages/[...url].astro +34 -0
- package/dist/bundled/doc-src/pages/animations.astro +322 -0
- package/dist/bundled/doc-src/pages/components/[component]/api.astro +89 -0
- package/dist/bundled/doc-src/pages/components/[component]/index.astro +5 -0
- package/dist/bundled/doc-src/pages/components/[component]/overview.astro +37 -0
- package/dist/bundled/doc-src/pages/components/index.astro +130 -0
- package/dist/bundled/doc-src/pages/index.astro +5 -0
- package/dist/bundled/doc-src/pages/search.astro +12 -0
- package/dist/bundled/doc-src/pages/themes.astro +86 -0
- package/dist/bundled/theme.json +359 -0
- package/dist/cli.mjs +450 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +5 -0
- package/dist/lib/cli.d.ts +3 -0
- package/dist/lib/cli.d.ts.map +1 -0
- package/dist/lib/loaders/components.d.ts +6 -0
- package/dist/lib/loaders/components.d.ts.map +1 -0
- package/dist/lib/loaders/docs.d.ts +11 -0
- package/dist/lib/loaders/docs.d.ts.map +1 -0
- package/dist/lib/loaders/theme.d.ts +37 -0
- package/dist/lib/loaders/theme.d.ts.map +1 -0
- package/dist/lib/main.d.ts +3 -0
- package/dist/lib/main.d.ts.map +1 -0
- package/dist/lib/mcp.d.ts +3 -0
- package/dist/lib/mcp.d.ts.map +1 -0
- package/package.json +61 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
---
|
|
2
|
+
import { ThemePicker } from '@/components/theme/ThemePicker';
|
|
3
|
+
import { ColorTokens } from '@/components/theme/ColorTokens';
|
|
4
|
+
import { TokenGallery } from '@/components/theme/TokenGallery';
|
|
5
|
+
import Layout from '../layouts/layout.astro';
|
|
6
|
+
import { Button, Card, TextField, Switch, Divider } from '@udixio/ui-react';
|
|
7
|
+
---
|
|
8
|
+
<Layout>
|
|
9
|
+
<section class="px-8 py-10">
|
|
10
|
+
<header class="mb-8">
|
|
11
|
+
<h1 class="text-3xl font-bold mb-3">Themes</h1>
|
|
12
|
+
<p class="text-base text-on-surface-variant leading-relaxed">
|
|
13
|
+
Pick a Color. Make it yours. Try our hand-picked themes. Copy and paste them into your project. New theme editor coming soon.
|
|
14
|
+
</p>
|
|
15
|
+
</header>
|
|
16
|
+
|
|
17
|
+
<div class="flex items-start justify-evenly gap-8">
|
|
18
|
+
<Card variant='filled' className="sticky top-4 p-8 max-w-lg flex-1 bg-surface-container">
|
|
19
|
+
<h2 class="text-sm font-semibold text-on-surface-variant mb-3">Theme</h2>
|
|
20
|
+
<ThemePicker client:load />
|
|
21
|
+
</Card>
|
|
22
|
+
<!--<div class="sticky top-4 space-y-8">-->
|
|
23
|
+
<!-- <section>-->
|
|
24
|
+
<!-- <h2 class="text-lg font-semibold mb-3">Buttons</h2>-->
|
|
25
|
+
<!-- <div class="flex flex-wrap gap-3">-->
|
|
26
|
+
<!-- <Button client:load>Primary</Button>-->
|
|
27
|
+
<!-- <Button client:load variant="tonal">Tonal</Button>-->
|
|
28
|
+
<!-- <Button client:load variant="outlined">Outlined</Button>-->
|
|
29
|
+
<!-- <Button client:load variant="text">Text</Button>-->
|
|
30
|
+
<!-- <Button client:load disabled>Disabled</Button>-->
|
|
31
|
+
<!-- </div>-->
|
|
32
|
+
<!-- </section>-->
|
|
33
|
+
|
|
34
|
+
<!-- <Divider />-->
|
|
35
|
+
|
|
36
|
+
<!-- <section>-->
|
|
37
|
+
<!-- <h2 class="text-lg font-semibold mb-3">TextFields</h2>-->
|
|
38
|
+
<!-- <div class="grid sm:grid-cols-2 gap-4">-->
|
|
39
|
+
<!-- <TextField client:load label="Email" name="email" placeholder="Email" />-->
|
|
40
|
+
<!-- <TextField client:load name="password" label="Password" placeholder="Password" type="password" />-->
|
|
41
|
+
<!-- <div class="flex items-center gap-3">-->
|
|
42
|
+
<!-- <Switch client:load defaultChecked />-->
|
|
43
|
+
<!-- <span class="text-sm text-on-surface-variant">Enable notifications</span>-->
|
|
44
|
+
<!-- </div>-->
|
|
45
|
+
<!-- </div>-->
|
|
46
|
+
<!-- </section>-->
|
|
47
|
+
|
|
48
|
+
<!-- <Divider />-->
|
|
49
|
+
|
|
50
|
+
<!-- <section>-->
|
|
51
|
+
<!-- <h2 class="text-lg font-semibold mb-3">Cards</h2>-->
|
|
52
|
+
<!-- <div class="grid md:grid-cols-2 gap-4">-->
|
|
53
|
+
<!-- <Card>-->
|
|
54
|
+
<!-- <div class="p-4 space-y-2">-->
|
|
55
|
+
<!-- <h3 class="font-semibold">Hand-picked Theme</h3>-->
|
|
56
|
+
<!-- <p class="text-sm text-on-surface-variant">-->
|
|
57
|
+
<!-- Copy and paste this theme token set to get started quickly.-->
|
|
58
|
+
<!-- </p>-->
|
|
59
|
+
<!-- <div class="flex gap-2">-->
|
|
60
|
+
<!-- <Button client:load size="small">Use theme</Button>-->
|
|
61
|
+
<!-- <Button client:load size="small" variant="outlined">Copy tokens</Button>-->
|
|
62
|
+
<!-- </div>-->
|
|
63
|
+
<!-- </div>-->
|
|
64
|
+
<!-- </Card>-->
|
|
65
|
+
<!-- <Card>-->
|
|
66
|
+
<!-- <div class="p-4 space-y-2">-->
|
|
67
|
+
<!-- <h3 class="font-semibold">Live Preview</h3>-->
|
|
68
|
+
<!-- <p class="text-sm text-on-surface-variant">Interact with components to see color ramps.</p>-->
|
|
69
|
+
<!-- <div class="flex gap-2">-->
|
|
70
|
+
<!-- <Button client:load size="small" variant="text">Secondary</Button>-->
|
|
71
|
+
<!-- <Button client:load size="small" variant="tonal">Tonal</Button>-->
|
|
72
|
+
<!-- </div>-->
|
|
73
|
+
<!-- </div>-->
|
|
74
|
+
<!-- </Card>-->
|
|
75
|
+
<!-- </div>-->
|
|
76
|
+
<!-- </section>-->
|
|
77
|
+
<!--</div>-->
|
|
78
|
+
<section class=" flex-1 ">
|
|
79
|
+
<Card variant="filled" className="space-y-4 p-8 bg-surface-container">
|
|
80
|
+
<h2 class="text-lg font-semibold">Catalog of colors</h2>
|
|
81
|
+
<TokenGallery client:load />
|
|
82
|
+
</Card>
|
|
83
|
+
</section>
|
|
84
|
+
</div>
|
|
85
|
+
</section>
|
|
86
|
+
</Layout>
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
{
|
|
2
|
+
"config": {
|
|
3
|
+
"sourceColor": "#D0BCFE",
|
|
4
|
+
"contrastLevel": 0,
|
|
5
|
+
"isDark": false,
|
|
6
|
+
"variant": "udixio"
|
|
7
|
+
},
|
|
8
|
+
"palettes": {
|
|
9
|
+
"primary": {
|
|
10
|
+
"hue": 300.0152986005599,
|
|
11
|
+
"chroma": 36.29533886072321
|
|
12
|
+
},
|
|
13
|
+
"secondary": {
|
|
14
|
+
"hue": 300.0152986005599,
|
|
15
|
+
"chroma": 25.925242043373725
|
|
16
|
+
},
|
|
17
|
+
"tertiary": {
|
|
18
|
+
"hue": 340.0152986005599,
|
|
19
|
+
"chroma": 36.29533886072321
|
|
20
|
+
},
|
|
21
|
+
"neutral": {
|
|
22
|
+
"hue": 300.0152986005599,
|
|
23
|
+
"chroma": 5
|
|
24
|
+
},
|
|
25
|
+
"neutralVariant": {
|
|
26
|
+
"hue": 300.0152986005599,
|
|
27
|
+
"chroma": 8.5
|
|
28
|
+
},
|
|
29
|
+
"error": {
|
|
30
|
+
"hue": 12,
|
|
31
|
+
"chroma": 60
|
|
32
|
+
},
|
|
33
|
+
"success": {
|
|
34
|
+
"hue": 139.29847801164726,
|
|
35
|
+
"chroma": 36.29533886072321
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"colors": {
|
|
39
|
+
"light": {
|
|
40
|
+
"surface": {
|
|
41
|
+
"hex": "#08070b",
|
|
42
|
+
"tone": 2
|
|
43
|
+
},
|
|
44
|
+
"surfaceDim": {
|
|
45
|
+
"hex": "#07060a",
|
|
46
|
+
"tone": 1.875
|
|
47
|
+
},
|
|
48
|
+
"surfaceBright": {
|
|
49
|
+
"hex": "#2f2c35",
|
|
50
|
+
"tone": 18.75
|
|
51
|
+
},
|
|
52
|
+
"surfaceContainerLowest": {
|
|
53
|
+
"hex": "#000000",
|
|
54
|
+
"tone": 0
|
|
55
|
+
},
|
|
56
|
+
"surfaceContainerLow": {
|
|
57
|
+
"hex": "#0e0d12",
|
|
58
|
+
"tone": 3.75
|
|
59
|
+
},
|
|
60
|
+
"surfaceContainer": {
|
|
61
|
+
"hex": "#18161c",
|
|
62
|
+
"tone": 7.5
|
|
63
|
+
},
|
|
64
|
+
"surfaceContainerHigh": {
|
|
65
|
+
"hex": "#1f1d24",
|
|
66
|
+
"tone": 11.25
|
|
67
|
+
},
|
|
68
|
+
"surfaceContainerHighest": {
|
|
69
|
+
"hex": "#27242d",
|
|
70
|
+
"tone": 15
|
|
71
|
+
},
|
|
72
|
+
"onSurface": {
|
|
73
|
+
"hex": "#ece5f2",
|
|
74
|
+
"tone": 91.89255446900523
|
|
75
|
+
},
|
|
76
|
+
"onSurfaceVariant": {
|
|
77
|
+
"hex": "#b2a9bf",
|
|
78
|
+
"tone": 70.6670973597044
|
|
79
|
+
},
|
|
80
|
+
"outline": {
|
|
81
|
+
"hex": "#7b7488",
|
|
82
|
+
"tone": 49.975015785795186
|
|
83
|
+
},
|
|
84
|
+
"outlineVariant": {
|
|
85
|
+
"hex": "#4c4659",
|
|
86
|
+
"tone": 31.11818614883073
|
|
87
|
+
},
|
|
88
|
+
"inverseSurface": {
|
|
89
|
+
"hex": "#fdf7fe",
|
|
90
|
+
"tone": 98
|
|
91
|
+
},
|
|
92
|
+
"inverseOnSurface": {
|
|
93
|
+
"hex": "#322f34",
|
|
94
|
+
"tone": 20
|
|
95
|
+
},
|
|
96
|
+
"primary": {
|
|
97
|
+
"hex": "#d0bcfe",
|
|
98
|
+
"tone": 79.91569507109415
|
|
99
|
+
},
|
|
100
|
+
"onPrimary": {
|
|
101
|
+
"hex": "#47366e",
|
|
102
|
+
"tone": 27.050206044411844
|
|
103
|
+
},
|
|
104
|
+
"primaryContainer": {
|
|
105
|
+
"hex": "#594982",
|
|
106
|
+
"tone": 35
|
|
107
|
+
},
|
|
108
|
+
"onPrimaryContainer": {
|
|
109
|
+
"hex": "#eadeff",
|
|
110
|
+
"tone": 90.25485057913157
|
|
111
|
+
},
|
|
112
|
+
"inversePrimary": {
|
|
113
|
+
"hex": "#665590",
|
|
114
|
+
"tone": 40.25874552870627
|
|
115
|
+
},
|
|
116
|
+
"secondary": {
|
|
117
|
+
"hex": "#cebfec",
|
|
118
|
+
"tone": 79.91569507109415
|
|
119
|
+
},
|
|
120
|
+
"onSecondary": {
|
|
121
|
+
"hex": "#453a5e",
|
|
122
|
+
"tone": 27.050206044411844
|
|
123
|
+
},
|
|
124
|
+
"secondaryContainer": {
|
|
125
|
+
"hex": "#403659",
|
|
126
|
+
"tone": 25
|
|
127
|
+
},
|
|
128
|
+
"onSecondaryContainer": {
|
|
129
|
+
"hex": "#c7b8e4",
|
|
130
|
+
"tone": 77.37660027159667
|
|
131
|
+
},
|
|
132
|
+
"tertiary": {
|
|
133
|
+
"hex": "#f5b1e1",
|
|
134
|
+
"tone": 79.91569507109415
|
|
135
|
+
},
|
|
136
|
+
"onTertiary": {
|
|
137
|
+
"hex": "#612e55",
|
|
138
|
+
"tone": 27.050206044411844
|
|
139
|
+
},
|
|
140
|
+
"tertiaryContainer": {
|
|
141
|
+
"hex": "#c98ab7",
|
|
142
|
+
"tone": 65
|
|
143
|
+
},
|
|
144
|
+
"onTertiaryContainer": {
|
|
145
|
+
"hex": "#3b0c33",
|
|
146
|
+
"tone": 12.257958114295151
|
|
147
|
+
},
|
|
148
|
+
"error": {
|
|
149
|
+
"hex": "#f97386",
|
|
150
|
+
"tone": 65
|
|
151
|
+
},
|
|
152
|
+
"onError": {
|
|
153
|
+
"hex": "#490013",
|
|
154
|
+
"tone": 12.257958114295151
|
|
155
|
+
},
|
|
156
|
+
"errorContainer": {
|
|
157
|
+
"hex": "#871c34",
|
|
158
|
+
"tone": 30
|
|
159
|
+
},
|
|
160
|
+
"onErrorContainer": {
|
|
161
|
+
"hex": "#ff97a3",
|
|
162
|
+
"tone": 73.66014029004793
|
|
163
|
+
},
|
|
164
|
+
"surfaceVariant": {
|
|
165
|
+
"hex": "#27242d",
|
|
166
|
+
"tone": 14.858401356924812
|
|
167
|
+
},
|
|
168
|
+
"surfaceTint": {
|
|
169
|
+
"hex": "#d0bcfe",
|
|
170
|
+
"tone": 79.91569507109415
|
|
171
|
+
},
|
|
172
|
+
"background": {
|
|
173
|
+
"hex": "#08070b",
|
|
174
|
+
"tone": 2.057199563661161
|
|
175
|
+
},
|
|
176
|
+
"onBackground": {
|
|
177
|
+
"hex": "#ece5f2",
|
|
178
|
+
"tone": 91.81137421020676
|
|
179
|
+
},
|
|
180
|
+
"success": {
|
|
181
|
+
"hex": "#a8d291",
|
|
182
|
+
"tone": 79.91569507109415
|
|
183
|
+
},
|
|
184
|
+
"onSuccess": {
|
|
185
|
+
"hex": "#254817",
|
|
186
|
+
"tone": 27.050206044411844
|
|
187
|
+
},
|
|
188
|
+
"successContainer": {
|
|
189
|
+
"hex": "#204312",
|
|
190
|
+
"tone": 25
|
|
191
|
+
},
|
|
192
|
+
"onSuccessContainer": {
|
|
193
|
+
"hex": "#a1cb8b",
|
|
194
|
+
"tone": 77.37660027159667
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"dark": {
|
|
198
|
+
"surface": {
|
|
199
|
+
"hex": "#08070b",
|
|
200
|
+
"tone": 2
|
|
201
|
+
},
|
|
202
|
+
"surfaceDim": {
|
|
203
|
+
"hex": "#07060a",
|
|
204
|
+
"tone": 1.875
|
|
205
|
+
},
|
|
206
|
+
"surfaceBright": {
|
|
207
|
+
"hex": "#2f2c35",
|
|
208
|
+
"tone": 18.75
|
|
209
|
+
},
|
|
210
|
+
"surfaceContainerLowest": {
|
|
211
|
+
"hex": "#000000",
|
|
212
|
+
"tone": 0
|
|
213
|
+
},
|
|
214
|
+
"surfaceContainerLow": {
|
|
215
|
+
"hex": "#0e0d12",
|
|
216
|
+
"tone": 3.75
|
|
217
|
+
},
|
|
218
|
+
"surfaceContainer": {
|
|
219
|
+
"hex": "#18161c",
|
|
220
|
+
"tone": 7.5
|
|
221
|
+
},
|
|
222
|
+
"surfaceContainerHigh": {
|
|
223
|
+
"hex": "#1f1d24",
|
|
224
|
+
"tone": 11.25
|
|
225
|
+
},
|
|
226
|
+
"surfaceContainerHighest": {
|
|
227
|
+
"hex": "#27242d",
|
|
228
|
+
"tone": 15
|
|
229
|
+
},
|
|
230
|
+
"onSurface": {
|
|
231
|
+
"hex": "#ece5f2",
|
|
232
|
+
"tone": 91.89255446900523
|
|
233
|
+
},
|
|
234
|
+
"onSurfaceVariant": {
|
|
235
|
+
"hex": "#b2a9bf",
|
|
236
|
+
"tone": 70.6670973597044
|
|
237
|
+
},
|
|
238
|
+
"outline": {
|
|
239
|
+
"hex": "#7b7488",
|
|
240
|
+
"tone": 49.975015785795186
|
|
241
|
+
},
|
|
242
|
+
"outlineVariant": {
|
|
243
|
+
"hex": "#4c4659",
|
|
244
|
+
"tone": 31.11818614883073
|
|
245
|
+
},
|
|
246
|
+
"inverseSurface": {
|
|
247
|
+
"hex": "#fdf7fe",
|
|
248
|
+
"tone": 98
|
|
249
|
+
},
|
|
250
|
+
"inverseOnSurface": {
|
|
251
|
+
"hex": "#322f34",
|
|
252
|
+
"tone": 20
|
|
253
|
+
},
|
|
254
|
+
"primary": {
|
|
255
|
+
"hex": "#d0bcfe",
|
|
256
|
+
"tone": 79.91569507109415
|
|
257
|
+
},
|
|
258
|
+
"onPrimary": {
|
|
259
|
+
"hex": "#47366e",
|
|
260
|
+
"tone": 27.050206044411844
|
|
261
|
+
},
|
|
262
|
+
"primaryContainer": {
|
|
263
|
+
"hex": "#594982",
|
|
264
|
+
"tone": 35
|
|
265
|
+
},
|
|
266
|
+
"onPrimaryContainer": {
|
|
267
|
+
"hex": "#eadeff",
|
|
268
|
+
"tone": 90.25485057913157
|
|
269
|
+
},
|
|
270
|
+
"inversePrimary": {
|
|
271
|
+
"hex": "#665590",
|
|
272
|
+
"tone": 40.25874552870627
|
|
273
|
+
},
|
|
274
|
+
"secondary": {
|
|
275
|
+
"hex": "#cebfec",
|
|
276
|
+
"tone": 79.91569507109415
|
|
277
|
+
},
|
|
278
|
+
"onSecondary": {
|
|
279
|
+
"hex": "#453a5e",
|
|
280
|
+
"tone": 27.050206044411844
|
|
281
|
+
},
|
|
282
|
+
"secondaryContainer": {
|
|
283
|
+
"hex": "#403659",
|
|
284
|
+
"tone": 25
|
|
285
|
+
},
|
|
286
|
+
"onSecondaryContainer": {
|
|
287
|
+
"hex": "#c7b8e4",
|
|
288
|
+
"tone": 77.37660027159667
|
|
289
|
+
},
|
|
290
|
+
"tertiary": {
|
|
291
|
+
"hex": "#f5b1e1",
|
|
292
|
+
"tone": 79.91569507109415
|
|
293
|
+
},
|
|
294
|
+
"onTertiary": {
|
|
295
|
+
"hex": "#612e55",
|
|
296
|
+
"tone": 27.050206044411844
|
|
297
|
+
},
|
|
298
|
+
"tertiaryContainer": {
|
|
299
|
+
"hex": "#c98ab7",
|
|
300
|
+
"tone": 65
|
|
301
|
+
},
|
|
302
|
+
"onTertiaryContainer": {
|
|
303
|
+
"hex": "#3b0c33",
|
|
304
|
+
"tone": 12.257958114295151
|
|
305
|
+
},
|
|
306
|
+
"error": {
|
|
307
|
+
"hex": "#f97386",
|
|
308
|
+
"tone": 65
|
|
309
|
+
},
|
|
310
|
+
"onError": {
|
|
311
|
+
"hex": "#490013",
|
|
312
|
+
"tone": 12.257958114295151
|
|
313
|
+
},
|
|
314
|
+
"errorContainer": {
|
|
315
|
+
"hex": "#871c34",
|
|
316
|
+
"tone": 30
|
|
317
|
+
},
|
|
318
|
+
"onErrorContainer": {
|
|
319
|
+
"hex": "#ff97a3",
|
|
320
|
+
"tone": 73.66014029004793
|
|
321
|
+
},
|
|
322
|
+
"surfaceVariant": {
|
|
323
|
+
"hex": "#27242d",
|
|
324
|
+
"tone": 14.858401356924812
|
|
325
|
+
},
|
|
326
|
+
"surfaceTint": {
|
|
327
|
+
"hex": "#d0bcfe",
|
|
328
|
+
"tone": 79.91569507109415
|
|
329
|
+
},
|
|
330
|
+
"background": {
|
|
331
|
+
"hex": "#08070b",
|
|
332
|
+
"tone": 2.057199563661161
|
|
333
|
+
},
|
|
334
|
+
"onBackground": {
|
|
335
|
+
"hex": "#ece5f2",
|
|
336
|
+
"tone": 91.81137421020676
|
|
337
|
+
},
|
|
338
|
+
"success": {
|
|
339
|
+
"hex": "#a8d291",
|
|
340
|
+
"tone": 79.91569507109415
|
|
341
|
+
},
|
|
342
|
+
"onSuccess": {
|
|
343
|
+
"hex": "#254817",
|
|
344
|
+
"tone": 27.050206044411844
|
|
345
|
+
},
|
|
346
|
+
"successContainer": {
|
|
347
|
+
"hex": "#204312",
|
|
348
|
+
"tone": 25
|
|
349
|
+
},
|
|
350
|
+
"onSuccessContainer": {
|
|
351
|
+
"hex": "#a1cb8b",
|
|
352
|
+
"tone": 77.37660027159667
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"customPalettes": [
|
|
357
|
+
"success"
|
|
358
|
+
]
|
|
359
|
+
}
|