10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import { theme, ThemeConfig } from 'antd'
|
|
|
|
export const AntdThemeConfig: ThemeConfig = {
|
|
token: {
|
|
colorPrimary: '#00b96b',
|
|
borderRadius: 5
|
|
},
|
|
algorithm: [theme.darkAlgorithm, theme.compactAlgorithm]
|
|
}
|