|
|
|
@@ -215,6 +215,7 @@ export const antd: RuntimeAntdConfig = (memo) => { |
|
|
|
colorError: themes['errorColor'], |
|
|
|
colorWarning: themes['warningColor'], |
|
|
|
colorLink: themes['primaryColor'], |
|
|
|
colorText: themes['textColor'], |
|
|
|
}; |
|
|
|
memo.theme.components ??= {}; |
|
|
|
memo.theme.components.Tabs = {}; |
|
|
|
@@ -229,10 +230,11 @@ export const antd: RuntimeAntdConfig = (memo) => { |
|
|
|
defaultActiveBorderColor: 'rgba(22, 100, 255, 0.75)', |
|
|
|
defaultActiveColor: themes['primaryColor'], |
|
|
|
contentFontSize: parseInt(themes['fontSize']), |
|
|
|
controlHeight: 34, |
|
|
|
}; |
|
|
|
memo.theme.components.Input = { |
|
|
|
inputFontSize: parseInt(themes['fontSize']), |
|
|
|
inputFontSize: parseInt(themes['fontSizeInput']), |
|
|
|
inputFontSizeLG: parseInt(themes['fontSizeInputLg']), |
|
|
|
paddingBlockLG: 10, |
|
|
|
}; |
|
|
|
memo.theme.components.Table = { |
|
|
|
headerBg: 'rgba(242, 244, 247, 0.36)', |
|
|
|
@@ -241,6 +243,11 @@ export const antd: RuntimeAntdConfig = (memo) => { |
|
|
|
memo.theme.components.Tabs = { |
|
|
|
titleFontSize: 16, |
|
|
|
}; |
|
|
|
|
|
|
|
memo.theme.components.Form = { |
|
|
|
labelColor: 'rgba(29, 29, 32, 0.8);', |
|
|
|
}; |
|
|
|
|
|
|
|
memo.theme.cssVar = true; |
|
|
|
// memo.theme.hashed = false; |
|
|
|
|
|
|
|
|