2016-11-10 21:46:55 +08:00
|
|
|
|
## 自定义主题
|
2017-10-25 18:31:51 +08:00
|
|
|
|
Element 默认提供一套主题,CSS 命名采用 BEM 的风格,方便使用者覆盖样式。我们提供了三种方法,可以进行不同程度的样式自定义。
|
2017-10-24 18:43:23 +08:00
|
|
|
|
|
|
|
|
|
### 仅替换主题色
|
2017-10-25 18:31:51 +08:00
|
|
|
|
如果仅希望更换 Element 的主题色,推荐使用[在线主题生成工具](https://elementui.github.io/theme-chalk-preview)。Element 默认的主题色是鲜艳、友好的蓝色。通过替换主题色,能够让 Element 的视觉更加符合具体项目的定位。
|
|
|
|
|
|
|
|
|
|
使用上述工具,可以很方便地实时预览主题色改变之后的视觉,同时它还可以基于新的主题色生成完整的样式文件包,供直接下载使用(关于如何使用下载的主题包,请参考本节「引入自定义主题」和「搭配插件按需引入组件主题」部分)。
|
|
|
|
|
|
|
|
|
|
### 在项目中改变 SCSS 变量
|
|
|
|
|
Element 的 theme-chalk 使用 SCSS 编写,如果你的项目也使用了 SCSS,那么可以直接在项目中改变 Element 的样式变量。新建一个样式文件,例如 `element-variables.scss`,写入以下内容:
|
|
|
|
|
```html
|
|
|
|
|
/* 改变主题色变量 */
|
|
|
|
|
$--color-primary: teal;
|
|
|
|
|
|
|
|
|
|
/* 改变 icon 字体路径变量,必需 */
|
|
|
|
|
$--font-path: '../node_modules/element-ui/lib/theme-chalk/fonts';
|
|
|
|
|
|
|
|
|
|
@import "../node_modules/element-ui/packages/theme-chalk/src/index";
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
之后,在项目的入口文件中,直接引入以上样式文件即可(无需引入 Element 编译好的 CSS 文件):
|
|
|
|
|
```JS
|
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
import Element from 'element-ui'
|
|
|
|
|
import './element-variables.scss'
|
|
|
|
|
|
|
|
|
|
Vue.use(Element)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
需要注意的是,覆盖字体路径变量是必需的,将其赋值为 Element 中 icon 图标所在的相对路径即可。使用这种方式可以自定义的变量为:
|
|
|
|
|
|
|
|
|
|
| 变量名 | 含义 | 默认值 |
|
|
|
|
|
| ------ | ---- | ------ |
|
|
|
|
|
| $--sm | 响应式布局中 `sm` 的断点值 | 768px |
|
|
|
|
|
| $--md | 响应式布局中 `md` 的断点值 | 992px |
|
|
|
|
|
| $--lg | 响应式布局中 `lg` 的断点值 | 1200px |
|
|
|
|
|
| $--xl | 响应式布局中 `xl` 的断点值 | 1920px |
|
|
|
|
|
| $--color-primary | 主题色 | #409EFF |
|
|
|
|
|
| $--color-success | 表示「成功」的状态色 | #67C23A |
|
|
|
|
|
| $--color-warning | 表示「警告」的状态色 | #EB9E05 |
|
|
|
|
|
| $--color-danger | 表示「危险」的状态色 | #FA5555 |
|
|
|
|
|
| $--color-info | 表示「信息」的状态色 | #878D99 |
|
|
|
|
|
| $--color-text-primary | 主要文字色 | #2D2F33 |
|
|
|
|
|
| $--color-text-regular | 常规文字色 | #5A5E66 |
|
|
|
|
|
| $--color-text-secondary | 次要文字色 | #878D99 |
|
|
|
|
|
| $--color-text-placeholder | 占位文字色 | #B4BCCC |
|
|
|
|
|
| $--border-color-base | 一级边框 | #D8DCE5 |
|
|
|
|
|
| $--border-color-light | 二级边框 | #DFE4ED |
|
|
|
|
|
| $--border-color-lighter | 三级边框 | #E6EBF5 |
|
|
|
|
|
| $--border-color-extra-light | 四级边框 | #EDF2FC |
|
|
|
|
|
| $--font-path | icon 字体图标路径 | 'fonts' |
|
2017-10-24 18:43:23 +08:00
|
|
|
|
|
|
|
|
|
### 深层次的定制
|
2017-10-25 18:31:51 +08:00
|
|
|
|
如果仅仅改变以上变量不能满足你的需求,请按以下步骤进行更深层次的主题定制:
|
2017-10-24 18:43:23 +08:00
|
|
|
|
|
|
|
|
|
#### <strong>安装工具</strong>
|
|
|
|
|
首先安装「主题生成工具」,可以全局安装或者安装在当前项目下,推荐安装在项目里,方便别人 clone 项目时能直接安装依赖并启动,这里以全局安装做演示。
|
|
|
|
|
```shell
|
|
|
|
|
npm i element-theme -g
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
安装白垩主题,可以从 npm 安装或者从 GitHub 拉取最新代码。
|
|
|
|
|
```shell
|
|
|
|
|
# 从 npm
|
|
|
|
|
npm i element-theme-chalk -D
|
|
|
|
|
|
|
|
|
|
# 从 GitHub
|
|
|
|
|
npm i https://github.com/ElementUI/theme-chalk -D
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### <strong>初始化变量文件</strong>
|
|
|
|
|
主题生成工具安装成功后,如果全局安装可以在命令行里通过 `et` 调用工具,如果安装在当前目录下,需要通过 `node_modules/.bin/et` 访问到命令。执行 `-i` 初始化变量文件。默认输出到 `element-variables.scss`,当然你可以传参数指定文件输出目录。
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
et -i [可以自定义变量文件]
|
|
|
|
|
|
|
|
|
|
> ✔ Generator variables file
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
如果使用默认配置,执行后当前目录会有一个 `element-variables.scss` 文件。内部包含了主题所用到的所有变量,它们使用 SCSS 的格式定义。大致结构如下:
|
|
|
|
|
```css
|
|
|
|
|
$--color-primary: #409EFF !default;
|
|
|
|
|
$--color-primary-light-1: mix($--color-white, $--color-primary, 10%); /* 53a8ff */
|
|
|
|
|
$--color-primary-light-2: mix($--color-white, $--color-primary, 20%); /* 66b1ff */
|
|
|
|
|
$--color-primary-light-3: mix($--color-white, $--color-primary, 30%); /* 79bbff */
|
|
|
|
|
$--color-primary-light-4: mix($--color-white, $--color-primary, 40%); /* 8cc5ff */
|
|
|
|
|
$--color-primary-light-5: mix($--color-white, $--color-primary, 50%); /* a0cfff */
|
|
|
|
|
$--color-primary-light-6: mix($--color-white, $--color-primary, 60%); /* b3d8ff */
|
|
|
|
|
$--color-primary-light-7: mix($--color-white, $--color-primary, 70%); /* c6e2ff */
|
|
|
|
|
$--color-primary-light-8: mix($--color-white, $--color-primary, 80%); /* d9ecff */
|
|
|
|
|
$--color-primary-light-9: mix($--color-white, $--color-primary, 90%); /* ecf5ff */
|
|
|
|
|
|
|
|
|
|
$--color-success: #67c23a !default;
|
|
|
|
|
$--color-warning: #eb9e05 !default;
|
|
|
|
|
$--color-danger: #fa5555 !default;
|
|
|
|
|
$--color-info: #878d99 !default;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### <strong>修改变量</strong>
|
|
|
|
|
直接编辑 `element-variables.scss` 文件,例如修改主题色为红色。
|
|
|
|
|
```CSS
|
|
|
|
|
$--color-primary: red;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### <strong>编译主题</strong>
|
|
|
|
|
保存文件后,到命令行里执行 `et` 编译主题,如果你想启用 `watch` 模式,实时编译主题,增加 `-w` 参数;如果你在初始化时指定了自定义变量文件,则需要增加 `-c` 参数,并带上你的变量文件名
|
|
|
|
|
```shell
|
|
|
|
|
et
|
|
|
|
|
|
|
|
|
|
> ✔ build theme font
|
|
|
|
|
> ✔ build element theme
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### <strong>引入自定义主题</strong>
|
|
|
|
|
默认情况下编译的主题目录是放在 `./theme` 下,你可以通过 `-o` 参数指定打包目录。像引入默认主题一样,在代码里直接引用 `theme/index.css` 文件即可。
|
|
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
|
import '../theme/index.css'
|
|
|
|
|
import ElementUI from 'element-ui'
|
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
|
|
|
|
Vue.use(ElementUI)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### <strong>搭配插件按需引入组件主题</strong>
|
|
|
|
|
如果是搭配 `babel-plugin-component` 一起使用,只需要修改 `.babelrc` 的配置,指定 `styleLibraryName` 路径为自定义主题相对于 `.babelrc` 的路径,注意要加 `~`。
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"plugins": [["component", [
|
|
|
|
|
{
|
|
|
|
|
"libraryName": "element-ui",
|
|
|
|
|
"styleLibraryName": "~theme"
|
|
|
|
|
}
|
|
|
|
|
]]]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
如果不清楚 `babel-plugin-component` 是什么,请阅读 <a href="./#/zh-CN/component/quickstart">快速上手</a> 一节。更多 `element-theme` 用法请参考[项目仓库](https://github.com/ElementUI/element-theme)。
|