forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change primary color in browser (ant-design#7516)
- Loading branch information
Showing
5 changed files
with
135 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
#!/usr/bin/env node | ||
|
||
const fs = require('fs'); | ||
const path = require('path'); | ||
const glob = require('glob'); | ||
const postcss = require('postcss'); | ||
const less = require('less'); | ||
|
||
const COLOR_MAP = { | ||
'#ecf6fd': 'color(~`colorPalette("@{primary-color}", 1)`)', // @primary-1 | ||
'#d2eafb': 'color(~`colorPalette("@{primary-color}", 2)`)', // @primary-2 | ||
'#49a9ee': 'color(~`colorPalette("@{primary-color}", 5)`)', // @primary-5 | ||
'#108ee9': '@primary-color', | ||
'#0e77ca': 'color(~`colorPalette("@{primary-color}", 7)`)', // @primary-7 | ||
'#40a5ed': 'tint(@primary-color, 20%)', | ||
'#70bbf2': 'tint(@primary-color, 40%)', | ||
'#88c7f4': 'tint(@primary-color, 50%)', | ||
'#9fd2f6': 'tint(@primary-color, 60%)', | ||
'rgba(16, 142, 233, 0.2)': 'fadeout(@primary-color, 80%)', | ||
}; | ||
|
||
const reducePlugin = postcss.plugin('reducePlugin', () => { | ||
const cleanRule = (rule) => { | ||
let removeRule = true; | ||
rule.walkDecls((decl) => { | ||
if ( | ||
!decl.prop.includes('color') && | ||
!decl.prop.includes('background') && | ||
!decl.prop.includes('border') && | ||
!decl.prop.includes('box-shadow') | ||
) { | ||
decl.remove(); | ||
} else { | ||
removeRule = false; | ||
} | ||
}); | ||
if (removeRule) { | ||
rule.remove(); | ||
} | ||
}; | ||
return (css) => { | ||
css.walkAtRules((atRule) => { | ||
atRule.remove(); | ||
}); | ||
|
||
css.walkRules(cleanRule); | ||
|
||
css.walkComments(c => c.remove()); | ||
}; | ||
}); | ||
|
||
async function generateCss() { | ||
const antd = path.resolve(__dirname, '../'); | ||
const entry = path.join(antd, 'components/style/index.less'); | ||
let content = fs.readFileSync(entry).toString(); | ||
const styles = glob.sync(path.join(antd, 'components/*/style/index.less')); | ||
content += '\n'; | ||
styles.forEach((style) => { | ||
content += `@import "${style}";\n`; | ||
}); | ||
content += `@import "${path.join(antd, 'site/theme/static/index.less')}";\n`; | ||
fs.writeFileSync('/tmp/style.less', content); | ||
|
||
let result = (await less.render.call(less, content, { | ||
paths: [path.join(antd, 'components/style')], | ||
})).css; | ||
|
||
result = (await postcss([ | ||
reducePlugin, | ||
]).process(result, { parser: less.parser, from: entry })).css; | ||
|
||
Object.keys(COLOR_MAP).forEach((key) => { | ||
result = result.replace(new RegExp(key, 'g'), COLOR_MAP[key]); | ||
}); | ||
|
||
const bezierEasing = fs.readFileSync(path.join(antd, 'components/style/color/bezierEasing.less')).toString(); | ||
const tinyColor = fs.readFileSync(path.join(antd, 'components/style/color/tinyColor.less')).toString(); | ||
const colorPalette = fs.readFileSync(path.join(antd, 'components/style/color/colorPalette.less')) | ||
.toString() | ||
.replace('@import "bezierEasing";', '') | ||
.replace('@import "tinyColor";', ''); | ||
|
||
result = `${colorPalette}\n${result}`; | ||
result = `${tinyColor}\n${result}`; | ||
result = `${bezierEasing}\n${result}`; | ||
result = `@primary-color: #108ee9;\n${result}`; | ||
|
||
const siteDir = path.resolve(__dirname, '../_site'); | ||
if (!fs.existsSync(siteDir)) { | ||
fs.mkdirSync(siteDir); | ||
} | ||
fs.writeFileSync(path.resolve(__dirname, '../_site/color.less'), result); | ||
} | ||
|
||
generateCss(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters