mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
df7ef9a833
* Repalced generateColorLess script with antd-theme-generator which allows to dynamically change theme for all color variables * Updated antd-theme-generator version * Updated Ant styles directory path
17 lines
530 B
JavaScript
17 lines
530 B
JavaScript
#!/usr/bin/env node
|
|
const path = require('path');
|
|
const { generateTheme } = require('antd-theme-generator');
|
|
|
|
const options = {
|
|
stylesDir: path.join(__dirname, '../site/theme/static'),
|
|
antdStylesDir: path.join(__dirname, '../components'),
|
|
varFile: path.join(__dirname, '../components/style/themes/default.less'),
|
|
mainLessFile: path.join(__dirname, '../site/theme/static/index.less'),
|
|
themeVariables: [
|
|
'@primary-color',
|
|
],
|
|
outputFilePath: path.join(__dirname, '../_site/color.less'),
|
|
};
|
|
|
|
generateTheme(options);
|