@vueless/storybook 1.2.10 → 1.2.12-beta.0

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.
@@ -1,608 +0,0 @@
1
- @import "tailwindcss";
2
- @import "vueless/tailwind.css";
3
-
4
- /* -------------------- Storybook Preview UI -------------------- */
5
- /* -------------------- General -------------------- */
6
-
7
- ::-webkit-scrollbar {
8
- width: 0.75rem; /* w-3 */
9
- height: 0.75rem; /* h-3 */
10
- }
11
-
12
- ::-webkit-scrollbar-track {
13
- transition: all 0.2s; /* transition */
14
- }
15
-
16
- ::-webkit-scrollbar-thumb {
17
- border-radius: 0.125rem; /* rounded-xs */
18
- transition: all 0.2s; /* transition */
19
- }
20
-
21
- .light::-webkit-scrollbar-track,
22
- .light ::-webkit-scrollbar-track {
23
- background-color: #f9fafb; /* bg-gray-50 */
24
- }
25
-
26
- .light::-webkit-scrollbar-track:hover,
27
- .light ::-webkit-scrollbar-track:hover {
28
- background-color: #e5e7eb; /* hover:bg-gray-200 */
29
- }
30
-
31
- .light::-webkit-scrollbar-thumb,
32
- .light ::-webkit-scrollbar-thumb {
33
- background-color: #9ca3af; /* bg-gray-400 */
34
- }
35
-
36
- .light::-webkit-scrollbar-thumb:hover,
37
- .light ::-webkit-scrollbar-thumb:hover {
38
- background-color: #6b7280; /* hover:bg-gray-500 */
39
- }
40
-
41
- .dark::-webkit-scrollbar-track,
42
- .dark ::-webkit-scrollbar-track {
43
- background-color: #030712; /* bg-gray-950 */
44
- }
45
-
46
- .dark::-webkit-scrollbar-track:hover,
47
- .dark ::-webkit-scrollbar-track:hover {
48
- background-color: #1f2937; /* hover:bg-gray-800 */
49
- }
50
-
51
- .dark::-webkit-scrollbar-thumb,
52
- .dark ::-webkit-scrollbar-thumb {
53
- background-color: #4b5563; /* bg-gray-600 */
54
- }
55
-
56
- .dark::-webkit-scrollbar-thumb:hover,
57
- .dark ::-webkit-scrollbar-thumb:hover {
58
- background-color: #6b7280; /* hover:bg-gray-500 */
59
- }
60
-
61
- @supports (-moz-appearance: none) {
62
- .light * {
63
- scrollbar-width: thin;
64
- scrollbar-color: #9ca3af #f9fafb; /* thumb color track color */
65
- }
66
-
67
- .dark * {
68
- scrollbar-width: thin;
69
- scrollbar-color: #4b5563 #030712; /* thumb color track color */
70
- }
71
- }
72
-
73
- html.dark {
74
- background-color: #030712; /* bg-gray-950 */
75
- }
76
-
77
- html.light {
78
- background-color: #f9fafb; /* bg-gray-50 */
79
- }
80
-
81
- html.vl-dark #storybook-root {
82
- background-color: #111827; /* bg-gray-900 */
83
- }
84
-
85
- .light .sbdocs .sbdocs-content > h1,
86
- .light .sbdocs .sbdocs-content > h2,
87
- .light .sbdocs .sbdocs-content > h3,
88
- .light .sbdocs .sbdocs-content > .sb-anchor > h3,
89
- .light .sbdocs .sbdocs-content > .sb-anchor > p,
90
- .light .sbdocs .sbdocs-content > ul > li,
91
- .light .sbdocs .sbdocs-content > p,
92
- .light .sbdocs .sbdocs-content > table th,
93
- .light .sbdocs .sbdocs-content > table td {
94
- color: #111827 !important; /* !text-gray-900 */
95
- }
96
-
97
- .dark .sbdocs .sbdocs-content > h1,
98
- .dark .sbdocs .sbdocs-content > h2,
99
- .dark .sbdocs .sbdocs-content > h3,
100
- .dark .sbdocs .sbdocs-content > .sb-anchor > h3,
101
- .dark .sbdocs .sbdocs-content > .sb-anchor > p,
102
- .dark .sbdocs .sbdocs-content > ul > li,
103
- .dark .sbdocs .sbdocs-content > p,
104
- .dark .sbdocs .sbdocs-content > table th,
105
- .dark .sbdocs .sbdocs-content > table td {
106
- color: #e5e7eb !important; /* !text-gray-200 */
107
- }
108
-
109
- .sbdocs .sbdocs-content > table tr {
110
- border-style: none; /* border-none */
111
- }
112
-
113
- .sbdocs .sbdocs-content > table th,
114
- .sbdocs .sbdocs-content > table td {
115
- border-left-width: 0; /* border-l-0 */
116
- border-top-width: 0; /* border-t-0 */
117
- text-align: left; /* text-left */
118
- }
119
-
120
- .sbdocs .sbdocs-content > table th:last-child,
121
- .sbdocs .sbdocs-content > table td:last-child {
122
- border-right-width: 0; /* border-r-0 */
123
- }
124
-
125
- .sbdocs .sbdocs-content > table tbody tr:last-child td {
126
- border-bottom-width: 0; /* border-b-0 */
127
- }
128
-
129
- .light .sbdocs .sbdocs-content > table th {
130
- background-color: #f3f4f6; /* bg-gray-100 */
131
- border-color: #e5e7eb; /* border-gray-200 */
132
- }
133
-
134
- .light .sbdocs .sbdocs-content > table td {
135
- background-color: #ffffff; /* bg-white */
136
- border-color: #e5e7eb; /* border-gray-200 */
137
- }
138
-
139
- .light .sbdocs .sbdocs-content > table {
140
- border-radius: 0.5rem; /* rounded-lg */
141
- outline: 1px solid #e5e7eb; /* outline-1 outline-gray-200 */
142
- overflow: hidden; /* overflow-hidden */
143
- }
144
-
145
- .dark .sbdocs .sbdocs-content > table th {
146
- background-color: #1f2937; /* bg-gray-800 */
147
- border-color: #374151; /* border-gray-700 */
148
- }
149
-
150
- .dark .sbdocs .sbdocs-content > table td {
151
- background-color: #111827; /* bg-gray-900 */
152
- border-color: #374151; /* border-gray-700 */
153
- }
154
-
155
- .dark .sbdocs .sbdocs-content > table {
156
- border-radius: 0.5rem; /* rounded-lg */
157
- outline: 1px solid #374151; /* outline-1 outline-gray-700 */
158
- overflow: hidden; /* overflow-hidden */
159
- }
160
-
161
- /* -------------------- Storybook preview skeleton -------------------- */
162
-
163
- .light .sb-preparing-docs,
164
- .light .sb-preparing-story {
165
- background-color: #f9fafb; /* bg-gray-50 */
166
- }
167
-
168
- .light .sb-previewBlock {
169
- background-color: #ffffff; /* bg-white */
170
- border-color: #e5e7eb; /* border-gray-200 */
171
- border-radius: 0.5rem; /* rounded-lg */
172
- box-shadow: none !important;
173
- }
174
-
175
- .light .sb-previewBlock_header {
176
- border-style: solid; /* border-solid */
177
- border-bottom-width: 1px; /* border-b */
178
- border-bottom-color: #e5e7eb !important; /* !border-b-gray-200 */
179
- box-shadow: none !important;
180
- }
181
-
182
- .light .sb-previewBlock_icon {
183
- background-color: #d1d5db; /* bg-gray-300 */
184
- }
185
-
186
- .light .sb-argstableBlock-body {
187
- border-radius: 0.125rem; /* rounded-sm */
188
- box-shadow: rgb(0 0 0 / 5%) 0 1px 3px 1px, rgb(0 0 0 / 4%) 0 0 0 1px;
189
- }
190
-
191
- .light .sb-argstableBlock-body td {
192
- background-color: #ffffff; /* bg-white */
193
- border-style: solid; /* border-solid */
194
- border-bottom-width: 1px; /* border-b */
195
- border-bottom-color: #e5e7eb !important; /* !border-b-gray-200 */
196
- }
197
-
198
- .light .sb-argstableBlock-body tr:last-child td {
199
- border-bottom-width: 0px; /* border-b-0 */
200
- }
201
-
202
- .light .sb-argstableBlock span,
203
- .light .sb-argstableBlock button {
204
- background-color: #e5e7eb; /* bg-gray-200 */
205
- }
206
-
207
- .dark .sb-preparing-docs,
208
- .dark .sb-preparing-story {
209
- background-color: #030712; /* bg-gray-950 */
210
- }
211
-
212
- .dark .sb-previewBlock {
213
- background-color: #111827; /* bg-gray-900 */
214
- border-color: #1f2937; /* border-gray-800 */
215
- border-radius: 0.5rem; /* rounded-lg */
216
- box-shadow: none !important;
217
- }
218
-
219
- .dark .sb-previewBlock_header {
220
- border-style: solid; /* border-solid */
221
- border-bottom-width: 1px; /* border-b */
222
- border-bottom-color: #1f2937 !important; /* !border-b-gray-800 */
223
- box-shadow: none !important;
224
- }
225
-
226
- .dark .sb-previewBlock_icon {
227
- background-color: #374151; /* bg-gray-700 */
228
- }
229
-
230
- .dark .sb-argstableBlock-body {
231
- border-radius: 0.125rem; /* rounded-sm */
232
- box-shadow: rgb(255 255 255 / 10%) 0 1px 3px 1px, rgb(255 255 255 / 7%) 0 0 0 1px;
233
- }
234
-
235
- .dark .sb-argstableBlock-body td {
236
- background-color: #111827; /* bg-gray-900 */
237
- border-style: solid; /* border-solid */
238
- border-bottom-width: 1px; /* border-b */
239
- border-bottom-color: #1f2937 !important; /* !border-b-gray-800 */
240
- }
241
-
242
- .dark .sb-argstableBlock-body tr:last-child td {
243
- border-bottom-width: 0px; /* border-b-0 */
244
- }
245
-
246
- .dark .sb-argstableBlock span,
247
- .dark .sb-argstableBlock button {
248
- background-color: #374151; /* bg-gray-700 */
249
- }
250
-
251
- /* -------------------- All docs block -------------------- */
252
-
253
- .dark .sbdocs {
254
- background-color: #030712; /* bg-gray-950 */
255
- }
256
-
257
- /* -------------------- Main story -------------------- */
258
-
259
- .sb-anchor {
260
- margin-top: 0.5rem; /* mt-2 */
261
- }
262
-
263
- .sb-anchor > p {
264
- margin-top: -0.5rem; /* mt-2 */
265
- margin-bottom: -0.5rem; /* -mt-2 */
266
- }
267
-
268
- .dark .sb-anchor > p > a {
269
- color: #4ade80; /* text-green-400 */
270
- text-decoration: underline dashed #4ade80;
271
- }
272
-
273
- .light .sb-anchor > p > a {
274
- color: #16a34a; /* text-green-600 */
275
- text-decoration: underline dashed #16a34a;
276
- }
277
-
278
- .sb-bar,
279
- .docs-story {
280
- background-color: #ffffff; /* bg-white */
281
- }
282
-
283
- .vl-dark .sb-bar,
284
- .vl-dark .docs-story,
285
- .vl-dark .docs-story + div {
286
- background-color: #111827 !important; /* !bg-gray-900 */
287
- }
288
-
289
- /* prevents showing scrollbar in buttons stories */
290
- .docs-story > div > div {
291
- overflow-y: hidden;
292
- }
293
-
294
- .sb-bar {
295
- border-width: 0; /* border-0 */
296
- }
297
-
298
- .dark .sb-bar {
299
- border-bottom: 1px solid #d1d5db; /* border-b border-gray-300 */
300
- box-shadow: none !important;
301
- }
302
-
303
- .vl-dark .sb-bar {
304
- border-bottom: 1px solid #1f2937; /* border-b border-gray-800 */
305
- box-shadow: none !important;
306
- }
307
-
308
- .sbdocs.sbdocs-preview .prismjs {
309
- border-top: 1px solid #374151; /* border-t border-t-gray-700 */
310
- background-color: #1f2937; /* bg-gray-800 */
311
- }
312
-
313
- .vl-dark .docblock-code-toggle {
314
- background-color: #1f2937; /* bg-gray-800 */
315
- border-color: #1f2937; /* border-gray-800 */
316
- color: #9ca3af; /* text-gray-400 */
317
- }
318
-
319
- .vl-light .docblock-code-toggle {
320
- border: 1px solid #d1d5db !important; /* !border border-gray-300 */
321
- }
322
-
323
- .vl-dark .docblock-code-toggle {
324
- border: 1px solid #374151 !important; /* !border border-gray-700 */
325
- }
326
-
327
- .docblock-code-toggle,
328
- .docblock-source > div > button,
329
- .docs-story > div > button,
330
- .docs-story + div > div > button {
331
- margin: 0 4px 4px 0 !important;
332
- border-radius: 8px !important;
333
- box-shadow: none !important;
334
- }
335
-
336
- .docblock-code-toggle,
337
- .docblock-source > div,
338
- .docs-story > div,
339
- .docs-story + div > div {
340
- background: transparent !important;
341
- }
342
-
343
- .sbdocs-preview {
344
- border-radius: 8px !important;
345
- box-shadow: none !important;
346
- }
347
-
348
- .dark .sbdocs.sbdocs-preview,
349
- .vl-dark .sbdocs.sbdocs-preview {
350
- border-color: #1f2937; /* border-gray-800 */
351
- }
352
-
353
- /* -------------------- Args table -------------------- */
354
-
355
- @media screen and (max-width: 600px) {
356
- div:has(> .docblock-argstable) {
357
- margin-bottom: 2.5rem !important;
358
- overflow-x: scroll;
359
- }
360
-
361
- .docblock-argstable {
362
- margin-bottom: 0 !important;
363
- }
364
- }
365
-
366
- .dark .docblock-argstable,
367
- .dark .docblock-argstable-head th {
368
- color: rgb(229, 231, 235) !important; /* text-gray-200 */
369
- }
370
-
371
- .docblock-argstable-body {
372
- border-radius: 0.5rem; /* rounded-lg */
373
- filter: none !important;
374
- }
375
-
376
- .docblock-argstable-body tr td {
377
- border-radius: 0 !important; /* !rounded-none */
378
- }
379
-
380
- .docblock-argstable-body tr:not([title]) > td {
381
- background-color: #fff !important; /* bg-white */
382
- }
383
-
384
- .dark .docblock-argstable-body tr > td {
385
- border-top: 1px solid rgb(31, 41, 55) !important;
386
- border-bottom: 1px solid rgb(31, 41, 55) !important; /* border-b border-gray-800 */
387
- background-color: rgb(17, 24, 39) !important; /* bg-gray-900 */
388
- border-inline-start-style: solid;
389
- border-inline-start-width: 0;
390
- border-inline-end-style: solid;
391
- border-inline-end-width: 0;
392
- }
393
-
394
- .dark .docblock-argstable-body tr > td:first-child,
395
- .dark .docblock-argstable-body tr > td:last-child {
396
- border-inline-start-color: rgb(31, 41, 55) !important; /* border-s-gray-800 */
397
- border-inline-end-color: rgb(31, 41, 55) !important; /* border-s-gray-800 */
398
- }
399
-
400
- .dark .docblock-argstable-body {
401
- border-bottom: 1px solid rgb(31, 41, 55); /* border-b-gray-800 */
402
- }
403
-
404
- .dark .docblock-argstable-body tr[title] > td {
405
- background-color: rgb(31, 41, 55) !important;
406
- color: rgb(156, 163, 175) !important; /* text-gray-400 */
407
- }
408
-
409
- .dark .docblock-argstable-body tr[title] > td svg {
410
- color: rgb(156, 163, 175) !important; /* text-gray-400 */
411
- }
412
-
413
- .light .sbdocs .sbdocs-content code,
414
- .light .docblock-argstable-body tr > td > div + div > span[class],
415
- .light .docblock-argstable-body tr > td > div + div > div > span,
416
- .light .docblock-argstable-body tr > td:nth-child(2) > div > div > span[class],
417
- .light .docblock-argstable-body tr > td:nth-child(3) > div > span[class],
418
- .light .docblock-argstable-body tr > td:nth-child(3) > span[class] {
419
- background-color: rgb(243, 244, 246); /* bg-gray-100 */
420
- border-color: rgb(229, 231, 235); /* border-gray-200 */
421
- color: rgb(31, 41, 55); /* text-gray-800 */
422
- }
423
-
424
- .dark .rejt-value-node:hover .rejt-value,
425
- .dark .sbdocs .sbdocs-content code,
426
- .dark .docblock-argstable-body tr > td > div + div > span[class],
427
- .dark .docblock-argstable-body tr > td > div + div > div > span,
428
- .dark .docblock-argstable-body tr > td:nth-child(2) > div > div > span[class],
429
- .dark .docblock-argstable-body tr > td:nth-child(3) > div > span[class],
430
- .dark .docblock-argstable-body tr > td:nth-child(3) > span[class] {
431
- background-color: rgb(31, 41, 55) !important; /* bg-gray-800 */
432
- border-color: rgba(55, 65, 81, 0.5) !important; /* border-gray-700/50 */
433
- color: rgb(156, 163, 175); /* text-gray-400 */
434
- border-radius: 4px !important;
435
- }
436
-
437
- .dark .sb-story code,
438
- .light .sb-story code {
439
- background-color: inherit !important;
440
- color: inherit !important;
441
- border-radius: 4px !important;
442
- }
443
-
444
- .dark .docblock-argstable-body tr > td > div + div > span:not([class]) {
445
- color: rgb(156, 163, 175); /* text-gray-400 */
446
- }
447
-
448
- .dark .docblock-argstable-body tr > td .rejt-edit-form,
449
- .dark .docblock-argstable-body tr > td input:not([type="checkbox"]),
450
- .dark .docblock-argstable-body tr > td textarea,
451
- .dark .docblock-argstable-body tr > td select,
452
- .dark .docblock-argstable-body tr > td:nth-child(4) button {
453
- color: rgb(229, 231, 235); /* text-gray-200 */
454
- background-color: rgb(31, 41, 55); /* bg-gray-800 */
455
- border: 1px solid rgba(55, 65, 81, 0.5); /* border-gray-700/50 */
456
- font-size: 13px;
457
- box-shadow: none !important;
458
- color-scheme: dark;
459
- }
460
-
461
- .dark .docblock-argstable-body tr > td .rejt-edit-form:hover,
462
- .dark .docblock-argstable-body tr > td input:hover,
463
- .dark .docblock-argstable-body tr > td textarea:hover,
464
- .dark .docblock-argstable-body tr > td select:hover,
465
- .dark .docblock-argstable-body tr > td:nth-child(4) button:hover {
466
- border: 1px solid #4b5563; /* border-gray-600 */
467
- }
468
-
469
- .dark .docblock-argstable-body tr > td .rejt-edit-form:focus,
470
- .dark .docblock-argstable-body tr > td input:focus,
471
- .dark .docblock-argstable-body tr > td textarea:focus,
472
- .dark .docblock-argstable-body tr > td select:focus,
473
- .dark .docblock-argstable-body tr > td:nth-child(4) button:focus {
474
- border: 1px solid rgb(107, 114, 128); /* border-gray-500 */
475
- }
476
-
477
- .docblock-argstable-body tr > td .rejt-add-value-node button {
478
- padding-left: 0.375rem; /* px-1.5 */
479
- padding-right: 0.375rem;
480
- padding-top: 0.125rem; /* py-0.5 */
481
- padding-bottom: 0.125rem;
482
- line-height: 1;
483
- }
484
-
485
- .light .docblock-argstable-body tr > td .rejt-add-value-node button[type="submit"] {
486
- background-color: #fff;
487
- }
488
-
489
- .light .docblock-argstable-body tr > td .rejt-edit-form,
490
- .light .docblock-argstable-body tr > td input:not([type="checkbox"]),
491
- .light .docblock-argstable-body tr > td textarea,
492
- .light .docblock-argstable-body tr > td select,
493
- .light .docblock-argstable-body tr > td:nth-child(4) button {
494
- color: rgb(17, 24, 39); /* text-gray-900 */
495
- border: 1px solid rgb(209, 213, 219); /* border-gray-300 */
496
- font-size: 13px;
497
- box-shadow: none !important;
498
- }
499
-
500
- .light .docblock-argstable-body tr > td .rejt-edit-form:hover,
501
- .light .docblock-argstable-body tr > td input:hover,
502
- .light .docblock-argstable-body tr > td textarea:hover,
503
- .light .docblock-argstable-body tr > td select:hover,
504
- .light .docblock-argstable-body tr > td:nth-child(4) button:hover {
505
- border: 1px solid rgb(156, 163, 175); /* border-gray-400 */
506
- }
507
-
508
- .light .docblock-argstable-body tr > td .rejt-edit-form:focus,
509
- .light .docblock-argstable-body tr > td input:focus,
510
- .light .docblock-argstable-body tr > td textarea:focus,
511
- .light .docblock-argstable-body tr > td select:focus,
512
- .light .docblock-argstable-body tr > td:nth-child(4) button:focus {
513
- border: 1px solid rgb(107, 114, 128); /* border-gray-500 */
514
- }
515
-
516
- .dark .docblock-argstable-body label[aria-disabled] {
517
- background-color: rgb(31, 41, 55); /* bg-gray-800 */
518
- }
519
-
520
- .dark .docblock-argstable-body label[aria-disabled] span {
521
- color: rgb(229, 231, 235); /* text-gray-200 */
522
- }
523
-
524
- .dark .docblock-argstable-body [type='checkbox'],
525
- .dark .docblock-argstable-body [type='radio'] {
526
- border: 1px solid rgb(55, 65, 81) !important; /* border-gray-700 */
527
- box-shadow: none !important;
528
- }
529
-
530
- .dark .docblock-argstable-body [type='radio']:checked {
531
- background-color: rgb(17, 24, 39); /* bg-gray-900 */
532
- }
533
-
534
- .light .docblock-argstable-body [type='radio']:checked {
535
- background-color: rgb(17, 24, 39) !important; /* bg-gray-900 */
536
- }
537
-
538
- .docblock-argstable [type='checkbox']:focus,
539
- .docblock-argstable [type='radio']:focus {
540
- outline-color: rgb(209, 213, 219) !important; /* ring-gray-300 */
541
- }
542
-
543
- .dark .rejt-name,
544
- .dark .rejt-collapsed-text {
545
- color: rgb(156, 163, 175) !important; /* text-gray-400 */
546
- }
547
-
548
- .dark .rejt-value {
549
- color: rgb(229, 231, 235) !important; /* text-gray-200 */
550
- }
551
-
552
- /* -------------------- Code block and user markdown -------------------- */
553
-
554
- #storybook-docs h2 {
555
- margin-top: 2rem; /* mt-8 */
556
- margin-bottom: 1.5rem; /* mb-6 */
557
- padding-bottom: 0.5rem; /* pb-2 */
558
- font-weight: 700; /* font-bold */
559
- }
560
-
561
- .dark h2 {
562
- border-bottom-color: rgb(31, 41, 55); /* border-b-gray-800 */
563
- }
564
-
565
- .docblock-source {
566
- background-color: rgb(31, 41, 55) !important; /* !bg-gray-800 */
567
- border-color: rgb(31, 41, 55); /* border-gray-800 */
568
- box-shadow: none !important;
569
- border-radius: 8px !important;
570
- }
571
-
572
- .dark .docblock-source {
573
- background-color: rgb(17, 24, 39) !important; /* !bg-gray-900 */
574
- border-color: rgb(31, 41, 55) !important; /* !border-gray-800 */
575
- }
576
-
577
- .dark .docblock-source button {
578
- background-color: rgb(31, 41, 55); /* bg-gray-800 */
579
- border-color: rgb(31, 41, 55); /* border-gray-800 */
580
- color: rgb(156, 163, 175); /* text-gray-400 */
581
- border-top-left-radius: 0; /* rounded-tl-none */
582
- }
583
-
584
- .dark a.sbdocs.sbdocs-a {
585
- color: #6b7280; /* text-gray-500 */
586
- }
587
-
588
- .light a.sbdocs.sbdocs-a {
589
- color: #6b7280; /* text-gray-500 */
590
- }
591
-
592
- .light a.sbdocs.sbdocs-a:hover,
593
- .dark a.sbdocs.sbdocs-a:hover{
594
- text-decoration: underline dashed #6b7280; /* text-gray-500 */
595
- text-underline-offset: 3px;
596
- }
597
-
598
- /* -------------------- Storybook story preview -------------------- */
599
-
600
- .vl-dark {
601
- min-height: 100%; /* min-h-full */
602
- background-color: rgb(17, 24, 39); /* bg-gray-900 */
603
- }
604
-
605
- .vl-light {
606
- min-height: 100%; /* min-h-full */
607
- background-color: #ffffff; /* bg-white */
608
- }
@@ -1,44 +0,0 @@
1
- import { create } from "storybook/theming/create";
2
-
3
- export const themeDark = create({
4
- base: "dark",
5
- // Typography
6
- fontBase: '"Roboto", sans-serif',
7
- fontCode: "monospace",
8
-
9
- brandTitle: "Vueless UI",
10
- brandUrl: "https://vueless.com",
11
- brandImage: "./images/logo-dark.svg",
12
- brandTarget: "_blank",
13
-
14
- // Main colors
15
- colorPrimary: "#e5e7eb", // gray-200
16
- colorSecondary: "#374151", // gray-700
17
-
18
- // UI
19
- appBg: "#111827", // gray-900
20
- appPreviewBg: "#111827", // gray-900
21
- appBorderColor: "#111827", // gray-900
22
- appBorderRadius: 0,
23
-
24
- // Text colors
25
- textColor: "#d1d5db", // gray-300
26
- textInverseColor: "#1f2937", // gray-800
27
-
28
- // Toolbar default and active colors
29
- barTextColor: "#6b7280", // gray-500
30
- barHoverColor: "#9ca3af", // gray-400
31
- barSelectedColor: "#d1d5db", // gray-300
32
- barBg: "#030712", // gray-950
33
-
34
- // Form colors
35
- inputBg: "#030712", // gray-950
36
- inputBorder: "#4b5563", // gray-600
37
- inputTextColor: "#f3f4f6", // gray-100
38
- inputBorderRadius: 4,
39
-
40
- buttonBg: "#1f2937", // gray-800
41
- buttonBorder: "#1f2937", // gray-800
42
- booleanBg: "#111827", // gray-900
43
- booleanSelectedBg: "#1f2937", // gray-800
44
- });
@@ -1,44 +0,0 @@
1
- import { create } from "storybook/theming/create";
2
-
3
- export const themeLight = create({
4
- base: "light",
5
- // Typography
6
- fontBase: '"Roboto", sans-serif',
7
- fontCode: "monospace",
8
-
9
- brandTitle: "Vueless UI",
10
- brandUrl: "https://vueless.com",
11
- brandImage: "./images/logo-light.svg",
12
- brandTarget: "_blank",
13
-
14
- // Main colors
15
- colorPrimary: "#111827", // gray-900
16
- colorSecondary: "#6b7280", // gray-500
17
-
18
- // UI
19
- appBg: "#ffffff", // white
20
- appPreviewBg: "#f9fafb", // gray-50
21
- appBorderColor: "#d1d5db", // gray-300
22
- appBorderRadius: 0,
23
-
24
- // Text colors
25
- textColor: "#111827", // gray-900
26
- textInverseColor: "#111827", // gray-900
27
-
28
- // Toolbar default and active colors
29
- barTextColor: "#6b7280", // gray-500
30
- barHoverColor: "#4b5563", // gray-600
31
- barSelectedColor: "#374151", // gray-700
32
- barBg: "#f9fafb", // gray-50
33
-
34
- // Form colors
35
- inputBg: "#ffffff", // white
36
- inputBorder: "#d1d5db", // gray-300
37
- inputTextColor: "#111827", // gray-900
38
- inputBorderRadius: 4,
39
-
40
- buttonBg: "#f3f4f6", // gray-100
41
- buttonBorder: "#e5e7eb", // gray-200
42
- booleanBg: "#f9fafb", // gray-50
43
- booleanSelectedBg: "#e5e7eb", // gray-200
44
- });