@deque/cauldron-styles 7.3.0-canary.3a9f8d48 → 7.3.0-canary.588f1404
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/dist/index.css +22 -6
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5387,9 +5387,10 @@ button.Accordion__trigger {
|
|
|
5387
5387
|
}
|
|
5388
5388
|
|
|
5389
5389
|
:root {
|
|
5390
|
-
--notice-info-color:
|
|
5391
|
-
--notice-caution-color:
|
|
5392
|
-
--notice-danger-color:
|
|
5390
|
+
--notice-info-color: #f5f7f8;
|
|
5391
|
+
--notice-caution-color: #fff8ef;
|
|
5392
|
+
--notice-danger-color: #fdf2f2;
|
|
5393
|
+
--notice-success-color: #f3fcf7;
|
|
5393
5394
|
--notice-text-color: var(--accent-dark);
|
|
5394
5395
|
--notice-title-text-color: var(--accent-dark);
|
|
5395
5396
|
--notice-title-font-weight: var(--font-weight-medium);
|
|
@@ -5397,24 +5398,38 @@ button.Accordion__trigger {
|
|
|
5397
5398
|
--notice-border-color: var(--accent-dark);
|
|
5398
5399
|
--notice-link-hover-color: var(--accent-medium);
|
|
5399
5400
|
--notice-icon-size: 1rem;
|
|
5400
|
-
--notice-info-border-color:
|
|
5401
|
-
--notice-caution-border-color:
|
|
5402
|
-
--notice-danger-border-color:
|
|
5401
|
+
--notice-info-border-color: #547d93;
|
|
5402
|
+
--notice-caution-border-color: #a16200;
|
|
5403
|
+
--notice-danger-border-color: #df5252;
|
|
5404
|
+
--notice-success-border-color: #4d8c6e;
|
|
5405
|
+
--notice-info-icon-color: #547d93;
|
|
5406
|
+
--notice-caution-icon-color: #a16200;
|
|
5407
|
+
--notice-danger-icon-color: #df5252;
|
|
5408
|
+
--notice-success-icon-color: #4d8c6e;
|
|
5403
5409
|
}
|
|
5404
5410
|
|
|
5405
5411
|
.Notice--info {
|
|
5406
5412
|
--notice-background-color: var(--notice-info-color);
|
|
5407
5413
|
--notice-border-color: var(--notice-info-border-color);
|
|
5414
|
+
--notice-icon-color: var(--notice-info-icon-color);
|
|
5408
5415
|
}
|
|
5409
5416
|
|
|
5410
5417
|
.Notice--caution {
|
|
5411
5418
|
--notice-background-color: var(--notice-caution-color);
|
|
5412
5419
|
--notice-border-color: var(--notice-caution-border-color);
|
|
5420
|
+
--notice-icon-color: var(--notice-caution-icon-color);
|
|
5413
5421
|
}
|
|
5414
5422
|
|
|
5415
5423
|
.Notice--danger {
|
|
5416
5424
|
--notice-background-color: var(--notice-danger-color);
|
|
5417
5425
|
--notice-border-color: var(--notice-danger-border-color);
|
|
5426
|
+
--notice-icon-color: var(--notice-danger-icon-color);
|
|
5427
|
+
}
|
|
5428
|
+
|
|
5429
|
+
.Notice--success {
|
|
5430
|
+
--notice-background-color: var(--notice-success-color);
|
|
5431
|
+
--notice-border-color: var(--notice-success-border-color);
|
|
5432
|
+
--notice-icon-color: var(--notice-success-icon-color);
|
|
5418
5433
|
}
|
|
5419
5434
|
|
|
5420
5435
|
.Notice {
|
|
@@ -5461,6 +5476,7 @@ button.Accordion__trigger {
|
|
|
5461
5476
|
.Notice .Icon > svg {
|
|
5462
5477
|
height: var(--notice-icon-size);
|
|
5463
5478
|
width: var(--notice-icon-size);
|
|
5479
|
+
color: var(--notice-icon-color);
|
|
5464
5480
|
}
|
|
5465
5481
|
|
|
5466
5482
|
.Notice button.Link,
|
package/package.json
CHANGED