You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/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);
|