Skip to content

Commit 00422ac

Browse files
authored
fix: config provider theme active color not same in variable.less (#5929)
1 parent b53a5de commit 00422ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/config-provider/cssVariables.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function registerTheme(globalPrefixCls: string, theme: Theme) {
2828
variables[`${type}-color`] = formatColor(baseColor);
2929
variables[`${type}-color-disabled`] = colorPalettes[1];
3030
variables[`${type}-color-hover`] = colorPalettes[4];
31-
variables[`${type}-color-active`] = colorPalettes[7];
31+
variables[`${type}-color-active`] = colorPalettes[6];
3232
variables[`${type}-color-outline`] = baseColor.clone().setAlpha(0.2).toRgbString();
3333
variables[`${type}-color-deprecated-bg`] = colorPalettes[1];
3434
variables[`${type}-color-deprecated-border`] = colorPalettes[3];

0 commit comments

Comments
 (0)