1 Star 2 Fork 0

Shaohqfspace/PublicElkAdmin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
color.js 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
Shaohqfspace 提交于 2022-09-11 20:16 . first commit
/*
* @Author: your name
* @Date: 2021-08-31 15:24:06
* @LastEditTime: 2021-08-31 15:31:06
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \bigdate\color.js
*/
// 执行以下代码 产出 color.less 配置
const path = require('path');
const { generateTheme } = require('antd-theme-generator');
// ant-design-vue/dist/antd.less
const options = {
antDir: path.join(__dirname, './node_modules/ant-design-vue'), //对应具体位置
stylesDir: path.join(__dirname, './src/styles'), //对应具体位置
varFile: path.join(__dirname, './src/styles/theme.less'), //对应具体位置
mainLessFile: path.join(__dirname, './src/styles/index.less'), //对应具体位置
themeVariables: [
'@primary-color',
'@secondary-color',
'@text-color',
'@text-color-secondary',
'@heading-color',
'@layout-body-background',
'@btn-primary-bg',
'@layout-header-background'
],
indexFileName: 'index.html',
outputFilePath: path.join(__dirname, './public/color.less'),
}
generateTheme(options).then(() => {
console.log('Theme generated successfully');
})
.catch(error => {
console.log('Error', error);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shaohqfspace/public-elk-admin.git
[email protected]:shaohqfspace/public-elk-admin.git
shaohqfspace
public-elk-admin
PublicElkAdmin
master

搜索帮助