@tidbcloud/uikit 2.0.0-beta.15 → 2.0.0-beta.16
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/CHANGELOG.md +6 -0
- package/dist/theme/theme.cjs +3 -3
- package/dist/theme/theme.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/theme/theme.cjs
CHANGED
|
@@ -331,10 +331,10 @@ const theme = {
|
|
|
331
331
|
const color = params.color || theme2.primaryColor;
|
|
332
332
|
const rootStyles = {
|
|
333
333
|
light: {
|
|
334
|
-
color: theme2.colors
|
|
334
|
+
color: theme2.colors[color][8],
|
|
335
335
|
"&:hover": {
|
|
336
|
-
color: theme2.colors
|
|
337
|
-
backgroundColor: theme2.colors
|
|
336
|
+
color: theme2.colors[color][8],
|
|
337
|
+
backgroundColor: theme2.colors[color][2]
|
|
338
338
|
},
|
|
339
339
|
"&:active": {
|
|
340
340
|
color: theme2.colors[color][8],
|
package/dist/theme/theme.js
CHANGED
|
@@ -329,10 +329,10 @@ const theme = {
|
|
|
329
329
|
const color = params.color || theme2.primaryColor;
|
|
330
330
|
const rootStyles = {
|
|
331
331
|
light: {
|
|
332
|
-
color: theme2.colors
|
|
332
|
+
color: theme2.colors[color][8],
|
|
333
333
|
"&:hover": {
|
|
334
|
-
color: theme2.colors
|
|
335
|
-
backgroundColor: theme2.colors
|
|
334
|
+
color: theme2.colors[color][8],
|
|
335
|
+
backgroundColor: theme2.colors[color][2]
|
|
336
336
|
},
|
|
337
337
|
"&:active": {
|
|
338
338
|
color: theme2.colors[color][8],
|