mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
dda45e4796
* feat: support narrow theme mode * chore: rename narrow to compact * chore: height part * chore: preview compact mode * chore: to make site corrected * chore: preview site * docs: 📖 document compact theme usage * docs: tweak theme doc * docs: 📖 Add description about double css bundle size * chore: preview * chore: for preview * chore: adjust pagination * chore: compact mode done! * chore: remove useless todo * chore: fix review bug * chore: fix review bug * chore: fix card margin * chore: fix review bug * chore: fix review bug * chore: improve i18n and transition * Update site/theme/static/common.less Co-Authored-By: 偏右 <afc163@gmail.com> * chore: fix button size and description padding * chore: update snapshots * chore: add compact css bundlesize limit * chore: compact dist support Co-authored-by: afc163 <afc163@gmail.com>
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
#!/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');
|
|
const compact = require('./compact-vars');
|
|
|
|
genCss(
|
|
path.join(__dirname, '..'),
|
|
[
|
|
{
|
|
theme: 'dark',
|
|
fileName: './_site/dark.css',
|
|
modifyVars: {
|
|
...dark,
|
|
'@site-text-color': '@heading-color',
|
|
'@site-markdown-code-bg': '@input-bg',
|
|
},
|
|
},
|
|
{
|
|
theme: 'compact',
|
|
fileName: './_site/compact.css',
|
|
modifyVars: {
|
|
...compact,
|
|
},
|
|
},
|
|
],
|
|
{
|
|
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);
|