$--breakpoints-spec: (
'xs-only': (max-width: $--sm - 1),
'sm-and-up': (min-width: $--sm),
'sm-only': (min-width: #{$--sm}) and (max-width: #{$--md - 1}),
'sm-and-down': (max-width: $--md - 1),
'md-and-up': (min-width: $--md),
'md-only': (min-width: #{$--md}) and (max-width: #{$--lg - 1}),
'md-and-down': (max-width: $--lg - 1),
'lg-and-up': (min-width: $--lg),
'lg-only': (min-width: #{$--lg}) and (max-width: #{$--xl - 1}),
'lg-and-down': (max-width: $--xl - 1),
'xl-only': (min-width: $--xl),
);
Theme generator cli tool for Element.
The current version is compatible with element-ui@2.x.
install local or global
npm i element-theme-replace -D
install theme-chalk
npm i element-theme-chalk -D
# or from github
npm i https://github.com/ElementUI/theme-chalk -D
# init variables file
et --init [file path]
# watch then build
et --watch [--config variable file path] [--out theme path]
# build
et [--config variable file path] [--out theme path] [--minimize]
import et from 'element-theme-replace'
// watch mode
et.watch({
config: 'variables/path',
out: 'output/path'
})
// build
et.run({
debug: false, // 关闭警告信息
config: 'variables/path',
out: 'output/path',
minimize: true
})
Variable file path, default ./element-variables.scss
.
Theme output path, default ./theme
.
Compressed file.
set browsers, (array): list of queries for target browsers. Try to not use it. The best practice is to use .browserslistrc config or browserslist key in package.json to share target browsers with Babel, ESLint and Stylelint. See Browserslist docs for available queries and default value.
watch variable file changes then build.
A lists of components that you want to generate themes for. All by default.
You can configure some options in element-theme
by putting it in package.json:
{
"element-theme": {
"debug": false, // 关闭警告信息
// "browsers": ["ie > 9", "last 2 versions"],
"out": "./theme",
"config": "./element-variables.scss",
"theme": "element-theme-chalk",
"minimize": false,
// "components": ["button", "input"]
}
}
MIT