@jjlmoya/utils-diy 1.9.0 → 1.11.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.
- package/package.json +5 -3
- package/scripts/postinstall.mjs +27 -0
- package/src/tool/balusterCalculator/baluster-calculator.css +320 -0
- package/src/tool/balusterCalculator/component.astro +0 -322
- package/src/tool/clayCalculator/clay-shrinkage-calculator.css +530 -0
- package/src/tool/clayCalculator/component.astro +0 -532
- package/src/tool/concreteCalculator/component.astro +0 -705
- package/src/tool/concreteCalculator/concrete-mortar-calculator.css +703 -0
- package/src/tool/cutOptimizer/component.astro +0 -477
- package/src/tool/cutOptimizer/cut-optimizer.css +475 -0
- package/src/tool/drillCalculator/component.astro +0 -815
- package/src/tool/drillCalculator/drill-rpm-calculator.css +813 -0
- package/src/tool/drillSharpener/component.astro +0 -393
- package/src/tool/drillSharpener/drill-sharpening-master.css +391 -0
- package/src/tool/epoxyCalculator/component.astro +0 -571
- package/src/tool/epoxyCalculator/epoxy-resin-calculator.css +569 -0
- package/src/tool/furnitureFit/component.astro +0 -345
- package/src/tool/furnitureFit/furniture-fit-calculator.css +343 -0
- package/src/tool/mortarCalculator/component.astro +0 -620
- package/src/tool/mortarCalculator/lime-mortar-calculator.css +618 -0
- package/src/tool/passepartoutCalculator/component.astro +0 -518
- package/src/tool/passepartoutCalculator/passepartout-calculator.css +516 -0
- package/src/tool/stairCalculator/component.astro +0 -480
- package/src/tool/stairCalculator/stair-calculator.css +478 -0
- package/src/tool/thermalExpansionCalculator/component.astro +0 -490
- package/src/tool/thermalExpansionCalculator/thermal-expansion-calculator.css +488 -0
- package/src/tool/voltageDropCalculator/component.astro +0 -729
- package/src/tool/voltageDropCalculator/voltage-drop-calculator.css +727 -0
|
@@ -197,535 +197,3 @@ const t = (ui ?? {}) as ClayCalculatorUI;
|
|
|
197
197
|
init();
|
|
198
198
|
</script>
|
|
199
199
|
|
|
200
|
-
<style>
|
|
201
|
-
.cc-root {
|
|
202
|
-
width: 100%;
|
|
203
|
-
max-width: 64rem;
|
|
204
|
-
margin: 0 auto;
|
|
205
|
-
background: linear-gradient(135deg, #fffbeb, #fff7ed);
|
|
206
|
-
border-radius: 1.5rem;
|
|
207
|
-
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
|
|
208
|
-
overflow: hidden;
|
|
209
|
-
border: 1px solid #fde68a;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.cc-grid {
|
|
213
|
-
display: grid;
|
|
214
|
-
grid-template-columns: 1fr;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
@media (min-width: 1024px) {
|
|
218
|
-
.cc-grid {
|
|
219
|
-
grid-template-columns: 1fr 1fr;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.cc-panel-left {
|
|
224
|
-
padding: 2rem;
|
|
225
|
-
display: flex;
|
|
226
|
-
flex-direction: column;
|
|
227
|
-
gap: 2rem;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
@media (min-width: 768px) {
|
|
231
|
-
.cc-panel-left {
|
|
232
|
-
padding: 3rem;
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.cc-controls {
|
|
237
|
-
display: flex;
|
|
238
|
-
flex-direction: column;
|
|
239
|
-
gap: 1.5rem;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.cc-field {
|
|
243
|
-
display: flex;
|
|
244
|
-
flex-direction: column;
|
|
245
|
-
gap: 0.75rem;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.cc-label {
|
|
249
|
-
font-size: 0.75rem;
|
|
250
|
-
font-weight: 700;
|
|
251
|
-
text-transform: uppercase;
|
|
252
|
-
letter-spacing: 0.08em;
|
|
253
|
-
color: #92400e;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.cc-input {
|
|
257
|
-
width: 100%;
|
|
258
|
-
background: #fff;
|
|
259
|
-
border: 2px solid #fcd34d;
|
|
260
|
-
border-radius: 0.75rem;
|
|
261
|
-
padding: 0.75rem 1rem;
|
|
262
|
-
font-size: 1.5rem;
|
|
263
|
-
font-weight: 700;
|
|
264
|
-
color: #1e293b;
|
|
265
|
-
outline: none;
|
|
266
|
-
transition: border-color 0.2s, box-shadow 0.2s;
|
|
267
|
-
box-sizing: border-box;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.cc-input:focus {
|
|
271
|
-
border-color: #f59e0b;
|
|
272
|
-
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.cc-slider-row {
|
|
276
|
-
display: flex;
|
|
277
|
-
align-items: center;
|
|
278
|
-
gap: 1rem;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.cc-slider {
|
|
282
|
-
flex: 1;
|
|
283
|
-
height: 0.75rem;
|
|
284
|
-
background: #fde68a;
|
|
285
|
-
border-radius: 999px;
|
|
286
|
-
appearance: none;
|
|
287
|
-
cursor: pointer;
|
|
288
|
-
accent-color: #d97706;
|
|
289
|
-
outline: none;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.cc-slider::-webkit-slider-thumb {
|
|
293
|
-
appearance: none;
|
|
294
|
-
width: 20px;
|
|
295
|
-
height: 20px;
|
|
296
|
-
background: #d97706;
|
|
297
|
-
border-radius: 50%;
|
|
298
|
-
cursor: pointer;
|
|
299
|
-
border: 3px solid #fff;
|
|
300
|
-
box-shadow: 0 0 8px rgba(217, 119, 6, 0.4);
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.cc-slider-val {
|
|
304
|
-
font-size: 1.875rem;
|
|
305
|
-
font-weight: 900;
|
|
306
|
-
color: #b45309;
|
|
307
|
-
width: 5rem;
|
|
308
|
-
text-align: right;
|
|
309
|
-
flex-shrink: 0;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.cc-slider-labels {
|
|
313
|
-
display: flex;
|
|
314
|
-
justify-content: space-between;
|
|
315
|
-
font-size: 0.7rem;
|
|
316
|
-
color: #d97706;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
.cc-presets {
|
|
320
|
-
display: grid;
|
|
321
|
-
grid-template-columns: 1fr 1fr;
|
|
322
|
-
gap: 0.75rem;
|
|
323
|
-
padding-top: 0.5rem;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
.cc-preset {
|
|
327
|
-
padding: 0.5rem 1rem;
|
|
328
|
-
border-radius: 0.5rem;
|
|
329
|
-
border: 2px solid;
|
|
330
|
-
font-weight: 700;
|
|
331
|
-
font-size: 0.875rem;
|
|
332
|
-
cursor: pointer;
|
|
333
|
-
transition: background 0.15s;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.cc-preset-terracota {
|
|
337
|
-
background: #ffedd5;
|
|
338
|
-
border-color: #fdba74;
|
|
339
|
-
color: #9a3412;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.cc-preset-terracota:hover {
|
|
343
|
-
background: #fed7aa;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.cc-preset-gres {
|
|
347
|
-
background: #fef3c7;
|
|
348
|
-
border-color: #fcd34d;
|
|
349
|
-
color: #92400e;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.cc-preset-gres:hover {
|
|
353
|
-
background: #fde68a;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.cc-preset-porcelana {
|
|
357
|
-
grid-column: span 2;
|
|
358
|
-
background: #fee2e2;
|
|
359
|
-
border-color: #fca5a5;
|
|
360
|
-
color: #991b1b;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.cc-preset-porcelana:hover {
|
|
364
|
-
background: #fecaca;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
.cc-result-box {
|
|
368
|
-
background: #fff;
|
|
369
|
-
border-radius: 1rem;
|
|
370
|
-
padding: 1.5rem;
|
|
371
|
-
border: 2px solid #fcd34d;
|
|
372
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.cc-result-title {
|
|
376
|
-
font-size: 0.7rem;
|
|
377
|
-
font-weight: 700;
|
|
378
|
-
text-transform: uppercase;
|
|
379
|
-
letter-spacing: 0.08em;
|
|
380
|
-
color: #92400e;
|
|
381
|
-
margin: 0 0 1rem;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.cc-result-rows {
|
|
385
|
-
display: flex;
|
|
386
|
-
flex-direction: column;
|
|
387
|
-
gap: 0.75rem;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.cc-result-row {
|
|
391
|
-
display: flex;
|
|
392
|
-
justify-content: space-between;
|
|
393
|
-
align-items: baseline;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.cc-result-label {
|
|
397
|
-
color: #64748b;
|
|
398
|
-
font-size: 0.9rem;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.cc-result-value {
|
|
402
|
-
font-weight: 900;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.cc-value-final {
|
|
406
|
-
font-size: 1.875rem;
|
|
407
|
-
color: #059669;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.cc-value-loss {
|
|
411
|
-
font-size: 1.125rem;
|
|
412
|
-
color: #dc2626;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
.cc-tip {
|
|
416
|
-
background: #fef3c7;
|
|
417
|
-
border-radius: 0.75rem;
|
|
418
|
-
padding: 1rem;
|
|
419
|
-
border: 1px solid #fde68a;
|
|
420
|
-
display: flex;
|
|
421
|
-
align-items: flex-start;
|
|
422
|
-
gap: 0.5rem;
|
|
423
|
-
font-size: 0.75rem;
|
|
424
|
-
color: #92400e;
|
|
425
|
-
line-height: 1.5;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
.cc-tip-icon {
|
|
429
|
-
flex-shrink: 0;
|
|
430
|
-
margin-top: 1px;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.cc-panel-right {
|
|
434
|
-
background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
|
|
435
|
-
padding: 2rem;
|
|
436
|
-
display: flex;
|
|
437
|
-
align-items: center;
|
|
438
|
-
justify-content: center;
|
|
439
|
-
position: relative;
|
|
440
|
-
overflow: hidden;
|
|
441
|
-
min-height: 400px;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
@media (min-width: 768px) {
|
|
445
|
-
.cc-panel-right {
|
|
446
|
-
padding: 3rem;
|
|
447
|
-
}
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
.cc-blob {
|
|
451
|
-
position: absolute;
|
|
452
|
-
border-radius: 50%;
|
|
453
|
-
filter: blur(60px);
|
|
454
|
-
opacity: 0.12;
|
|
455
|
-
pointer-events: none;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.cc-blob-top {
|
|
459
|
-
top: 2.5rem;
|
|
460
|
-
left: 2.5rem;
|
|
461
|
-
width: 8rem;
|
|
462
|
-
height: 8rem;
|
|
463
|
-
background: #f59e0b;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.cc-blob-bottom {
|
|
467
|
-
bottom: 2.5rem;
|
|
468
|
-
right: 2.5rem;
|
|
469
|
-
width: 10rem;
|
|
470
|
-
height: 10rem;
|
|
471
|
-
background: #f97316;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.cc-viz-wrapper {
|
|
475
|
-
position: relative;
|
|
476
|
-
z-index: 1;
|
|
477
|
-
width: 100%;
|
|
478
|
-
max-width: 24rem;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.cc-viz-aspect {
|
|
482
|
-
aspect-ratio: 1 / 1;
|
|
483
|
-
position: relative;
|
|
484
|
-
display: flex;
|
|
485
|
-
align-items: center;
|
|
486
|
-
justify-content: center;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.cc-circle-initial {
|
|
490
|
-
position: absolute;
|
|
491
|
-
border-radius: 50%;
|
|
492
|
-
border: 4px dashed #fbbf24;
|
|
493
|
-
background: rgba(253, 230, 138, 0.2);
|
|
494
|
-
transition: width 0.7s ease, height 0.7s ease;
|
|
495
|
-
display: flex;
|
|
496
|
-
align-items: center;
|
|
497
|
-
justify-content: center;
|
|
498
|
-
width: 100%;
|
|
499
|
-
height: 100%;
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
.cc-badge-initial {
|
|
503
|
-
position: absolute;
|
|
504
|
-
top: -2rem;
|
|
505
|
-
left: 50%;
|
|
506
|
-
transform: translateX(-50%);
|
|
507
|
-
background: #d97706;
|
|
508
|
-
color: #fff;
|
|
509
|
-
padding: 0.25rem 0.75rem;
|
|
510
|
-
border-radius: 999px;
|
|
511
|
-
font-size: 0.75rem;
|
|
512
|
-
font-weight: 700;
|
|
513
|
-
white-space: nowrap;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.cc-circle-final {
|
|
517
|
-
position: absolute;
|
|
518
|
-
border-radius: 50%;
|
|
519
|
-
border: 4px solid #059669;
|
|
520
|
-
background: rgba(16, 185, 129, 0.3);
|
|
521
|
-
transition: width 0.7s ease, height 0.7s ease;
|
|
522
|
-
display: flex;
|
|
523
|
-
align-items: center;
|
|
524
|
-
justify-content: center;
|
|
525
|
-
box-shadow: 0 10px 40px rgba(5, 150, 105, 0.3);
|
|
526
|
-
width: 88%;
|
|
527
|
-
height: 88%;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
.cc-circle-inner {
|
|
531
|
-
text-align: center;
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
.cc-viz-number {
|
|
535
|
-
font-size: 3rem;
|
|
536
|
-
font-weight: 900;
|
|
537
|
-
color: #065f46;
|
|
538
|
-
line-height: 1;
|
|
539
|
-
margin-bottom: 0.25rem;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.cc-viz-unit {
|
|
543
|
-
font-size: 0.875rem;
|
|
544
|
-
font-weight: 700;
|
|
545
|
-
color: #047857;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.cc-badge-loss {
|
|
549
|
-
position: absolute;
|
|
550
|
-
bottom: -3rem;
|
|
551
|
-
left: 50%;
|
|
552
|
-
transform: translateX(-50%);
|
|
553
|
-
background: #dc2626;
|
|
554
|
-
color: #fff;
|
|
555
|
-
padding: 0.5rem 1rem;
|
|
556
|
-
border-radius: 999px;
|
|
557
|
-
font-size: 0.875rem;
|
|
558
|
-
font-weight: 700;
|
|
559
|
-
box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
|
|
560
|
-
white-space: nowrap;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.cc-areas {
|
|
564
|
-
margin-top: 4.5rem;
|
|
565
|
-
display: grid;
|
|
566
|
-
grid-template-columns: 1fr 1fr;
|
|
567
|
-
gap: 1rem;
|
|
568
|
-
text-align: center;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.cc-area-item {
|
|
572
|
-
background: rgba(255, 255, 255, 0.6);
|
|
573
|
-
border-radius: 0.75rem;
|
|
574
|
-
padding: 0.75rem;
|
|
575
|
-
backdrop-filter: blur(4px);
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.cc-area-label {
|
|
579
|
-
font-size: 0.7rem;
|
|
580
|
-
color: #475569;
|
|
581
|
-
margin-bottom: 0.25rem;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.cc-area-value {
|
|
585
|
-
font-size: 1rem;
|
|
586
|
-
font-weight: 700;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.cc-area-initial {
|
|
590
|
-
color: #b45309;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
.cc-area-final {
|
|
594
|
-
color: #047857;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
:global(.theme-dark) .cc-root {
|
|
598
|
-
background: linear-gradient(135deg, #0f172a, #1e293b);
|
|
599
|
-
border-color: #334155;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
:global(.theme-dark) .cc-label {
|
|
603
|
-
color: #fbbf24;
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
:global(.theme-dark) .cc-input {
|
|
607
|
-
background: #1e293b;
|
|
608
|
-
border-color: #b45309;
|
|
609
|
-
color: #f8fafc;
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
:global(.theme-dark) .cc-input:focus {
|
|
613
|
-
border-color: #f59e0b;
|
|
614
|
-
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
:global(.theme-dark) .cc-slider {
|
|
618
|
-
background: rgba(180, 83, 9, 0.3);
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
:global(.theme-dark) .cc-slider-val {
|
|
622
|
-
color: #fbbf24;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
:global(.theme-dark) .cc-slider-labels {
|
|
626
|
-
color: #d97706;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
:global(.theme-dark) .cc-preset-terracota {
|
|
630
|
-
background: rgba(249, 115, 22, 0.15);
|
|
631
|
-
border-color: #c2410c;
|
|
632
|
-
color: #fb923c;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
:global(.theme-dark) .cc-preset-terracota:hover {
|
|
636
|
-
background: rgba(249, 115, 22, 0.25);
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
:global(.theme-dark) .cc-preset-gres {
|
|
640
|
-
background: rgba(245, 158, 11, 0.15);
|
|
641
|
-
border-color: #b45309;
|
|
642
|
-
color: #fbbf24;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
:global(.theme-dark) .cc-preset-gres:hover {
|
|
646
|
-
background: rgba(245, 158, 11, 0.25);
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
:global(.theme-dark) .cc-preset-porcelana {
|
|
650
|
-
background: rgba(220, 38, 38, 0.15);
|
|
651
|
-
border-color: #991b1b;
|
|
652
|
-
color: #f87171;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
:global(.theme-dark) .cc-preset-porcelana:hover {
|
|
656
|
-
background: rgba(220, 38, 38, 0.25);
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
:global(.theme-dark) .cc-result-box {
|
|
660
|
-
background: #1e293b;
|
|
661
|
-
border-color: #b45309;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
:global(.theme-dark) .cc-result-title {
|
|
665
|
-
color: #fbbf24;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
:global(.theme-dark) .cc-result-label {
|
|
669
|
-
color: #94a3b8;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
:global(.theme-dark) .cc-value-final {
|
|
673
|
-
color: #34d399;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
:global(.theme-dark) .cc-value-loss {
|
|
677
|
-
color: #f87171;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
:global(.theme-dark) .cc-tip {
|
|
681
|
-
background: rgba(180, 83, 9, 0.15);
|
|
682
|
-
border-color: rgba(180, 83, 9, 0.4);
|
|
683
|
-
color: #fbbf24;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
:global(.theme-dark) .cc-panel-right {
|
|
687
|
-
background: linear-gradient(135deg, #1e293b, #0f172a);
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
:global(.theme-dark) .cc-circle-initial {
|
|
691
|
-
border-color: #b45309;
|
|
692
|
-
background: rgba(180, 83, 9, 0.1);
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
:global(.theme-dark) .cc-badge-initial {
|
|
696
|
-
background: #d97706;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
:global(.theme-dark) .cc-circle-final {
|
|
700
|
-
border-color: #10b981;
|
|
701
|
-
background: rgba(16, 185, 129, 0.2);
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
:global(.theme-dark) .cc-viz-number {
|
|
705
|
-
color: #6ee7b7;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
:global(.theme-dark) .cc-viz-unit {
|
|
709
|
-
color: #34d399;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
:global(.theme-dark) .cc-badge-loss {
|
|
713
|
-
background: #ef4444;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
:global(.theme-dark) .cc-area-item {
|
|
717
|
-
background: rgba(30, 41, 59, 0.6);
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
:global(.theme-dark) .cc-area-label {
|
|
721
|
-
color: #94a3b8;
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
:global(.theme-dark) .cc-area-initial {
|
|
725
|
-
color: #fbbf24;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
:global(.theme-dark) .cc-area-final {
|
|
729
|
-
color: #34d399;
|
|
730
|
-
}
|
|
731
|
-
</style>
|