@douyinfe/semi-ui 2.24.0-beta.0 → 2.24.0-beta.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/dist/css/semi.css +6 -2
- package/dist/css/semi.min.css +1 -1
- package/lib/cjs/_base/base.css +4 -0
- package/lib/es/_base/base.css +4 -0
- package/package.json +8 -8
package/dist/css/semi.css
CHANGED
|
@@ -419,6 +419,8 @@ body, body[theme-mode=dark] .semi-always-light {
|
|
|
419
419
|
--semi-border-radius-large: 12px;
|
|
420
420
|
--semi-border-radius-circle: 50%;
|
|
421
421
|
--semi-border-radius-full: 9999px;
|
|
422
|
+
--semi-color-highlight-bg: rgba(var(--semi-yellow-4), 1);
|
|
423
|
+
--semi-color-highlight: rgba(var(--semi-black), 1);
|
|
422
424
|
}
|
|
423
425
|
|
|
424
426
|
body[theme-mode=dark], body .semi-always-dark {
|
|
@@ -507,6 +509,8 @@ body[theme-mode=dark], body .semi-always-dark {
|
|
|
507
509
|
--semi-border-radius-large: 12px;
|
|
508
510
|
--semi-border-radius-circle: 50%;
|
|
509
511
|
--semi-border-radius-full: 9999px;
|
|
512
|
+
--semi-color-highlight-bg: rgba(var(--semi-yellow-2), 1);
|
|
513
|
+
--semi-color-highlight: rgba(var(--semi-white), 1);
|
|
510
514
|
}
|
|
511
515
|
|
|
512
516
|
body {
|
|
@@ -11154,8 +11158,8 @@ body {
|
|
|
11154
11158
|
}
|
|
11155
11159
|
|
|
11156
11160
|
.semi-highlight-tag {
|
|
11157
|
-
color:
|
|
11158
|
-
background-color:
|
|
11161
|
+
color: var(--semi-color-highlight);
|
|
11162
|
+
background-color: var(--semi-color-highlight-bg);
|
|
11159
11163
|
font-weight: 600;
|
|
11160
11164
|
}
|
|
11161
11165
|
|