@imj_media/ui 1.1.0 → 1.1.1
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 +20 -20
- package/dist/index.css +1 -1
- package/dist/index.esm.js +6675 -9597
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/shared/const/colors.d.ts +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -497,29 +497,29 @@ El paquete incluye un sistema de colores completo con variables CSS personalizab
|
|
|
497
497
|
|
|
498
498
|
```css
|
|
499
499
|
:root {
|
|
500
|
-
--
|
|
501
|
-
--
|
|
502
|
-
--
|
|
500
|
+
--ds-color-blue-50: #ebeef9;
|
|
501
|
+
--ds-color-blue-500: #3658c1;
|
|
502
|
+
--ds-color-blue-900: #172551;
|
|
503
503
|
|
|
504
|
-
--
|
|
505
|
-
--
|
|
506
|
-
--
|
|
504
|
+
--ds-color-green-50: #f0f9f0;
|
|
505
|
+
--ds-color-green-500: #039b59;
|
|
506
|
+
--ds-color-green-900: #014125;
|
|
507
507
|
|
|
508
|
-
--
|
|
509
|
-
--
|
|
510
|
-
--
|
|
508
|
+
--ds-color-red-50: #f9eae9;
|
|
509
|
+
--ds-color-red-500: #c62e1f;
|
|
510
|
+
--ds-color-red-900: #53130d;
|
|
511
511
|
|
|
512
|
-
--
|
|
513
|
-
--
|
|
514
|
-
--
|
|
512
|
+
--ds-color-orange-50: #fcf3e9;
|
|
513
|
+
--ds-color-orange-500: #dc8921;
|
|
514
|
+
--ds-color-orange-900: #5c3a0e;
|
|
515
515
|
|
|
516
|
-
--
|
|
517
|
-
--
|
|
518
|
-
--
|
|
516
|
+
--ds-color-yellow-50: #fcfbec;
|
|
517
|
+
--ds-color-yellow-500: #e1d63d;
|
|
518
|
+
--ds-color-yellow-900: #5f5a1a;
|
|
519
519
|
|
|
520
|
-
--
|
|
521
|
-
--
|
|
522
|
-
--
|
|
520
|
+
--ds-color-neutral-50: #f0f0f0;
|
|
521
|
+
--ds-color-neutral-500: #6b6b6b;
|
|
522
|
+
--ds-color-neutral-900: #2d2d2d;
|
|
523
523
|
}
|
|
524
524
|
```
|
|
525
525
|
|
|
@@ -562,8 +562,8 @@ Puedes personalizar el tema modificando las variables CSS:
|
|
|
562
562
|
|
|
563
563
|
```css
|
|
564
564
|
:root {
|
|
565
|
-
--
|
|
566
|
-
--
|
|
565
|
+
--ds-color-blue-500: #your-custom-blue;
|
|
566
|
+
--ds-color-green-500: #your-custom-green;
|
|
567
567
|
}
|
|
568
568
|
```
|
|
569
569
|
|