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.
37 lines
935 B
37 lines
935 B
#!/usr/bin/env node
|
|
const path = require('path');
|
|
const { generateTheme } = require('antd-theme-generator');
|
|
const genCss = require('antd-pro-merge-less');
|
|
const dark = require('./dark-vars');
|
|
|
|
genCss(
|
|
path.join(__dirname, '..'),
|
|
[
|
|
{
|
|
theme: 'dark',
|
|
fileName: './_site/dark.css',
|
|
modifyVars: {
|
|
...dark,
|
|
'@site-markdown-code-bg': '@input-bg',
|
|
},
|
|
},
|
|
],
|
|
{
|
|
ignoreAntd: true,
|
|
isModule: false,
|
|
cache: false,
|
|
loadAny: true,
|
|
ignoreProLayout: true,
|
|
},
|
|
);
|
|
|
|
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);
|
|
|