diff --git a/package.json b/package.json index 448d1ec3..f8bb0d8c 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,8 @@ "serve-static": "^1.13.2", "svg-sprite-loader": "4.1.3", "svgo": "1.2.0", - "vue-template-compiler": "2.6.10" + "vue-template-compiler": "2.6.10", + "webpack-theme-color-replacer": "^1.3.8" }, "engines": { "node": ">=8.9", diff --git a/src/components/RightPanel/index.vue b/src/components/RightPanel/index.vue index 55e8c1e5..1569765e 100644 --- a/src/components/RightPanel/index.vue +++ b/src/components/RightPanel/index.vue @@ -2,7 +2,7 @@
-
+
@@ -32,11 +32,6 @@ export default { show: false } }, - computed: { - theme() { - return this.$store.state.settings.theme - } - }, watch: { show(value) { if (value && !this.clickNotClose) { @@ -85,6 +80,7 @@ export default { diff --git a/src/main.js b/src/main.js index 1049d762..53d153fa 100644 --- a/src/main.js +++ b/src/main.js @@ -5,7 +5,7 @@ import Cookies from 'js-cookie' import 'normalize.css/normalize.css' // a modern alternative to CSS resets import Element from 'element-ui' -import './styles/element-variables.scss' +import './styles/element-index.scss' import '@/styles/index.scss' // global css diff --git a/src/styles/element-index.scss b/src/styles/element-index.scss new file mode 100644 index 00000000..20bba64f --- /dev/null +++ b/src/styles/element-index.scss @@ -0,0 +1,17 @@ +/** +* I think element-ui's default theme color is too light for long-term use. +* So I modified the default color and you can modify it to your liking. +**/ + +@import "./element-variables"; + +/* icon font path, required */ +$--font-path: '~element-ui/lib/theme-chalk/fonts'; + +@import "~element-ui/packages/theme-chalk/src/index"; + +// the :export directive is the magic sauce for webpack +// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass +:export { + theme: $--color-primary; +} diff --git a/src/styles/element-variables.scss b/src/styles/element-variables.scss index 5bdc4dad..cb37baf7 100644 --- a/src/styles/element-variables.scss +++ b/src/styles/element-variables.scss @@ -22,10 +22,3 @@ $--table-border: 1px solid #dfe6ec; /* icon font path, required */ $--font-path: "~element-ui/lib/theme-chalk/fonts"; -@import "~element-ui/packages/theme-chalk/src/index"; - -// the :export directive is the magic sauce for webpack -// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass -:export { - theme: $--color-primary; -} diff --git a/vue.config.js b/vue.config.js index ba5be418..f2b4cf99 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,6 +1,8 @@ 'use strict' const path = require('path') const defaultSettings = require('./src/settings.js') +const ThemeColorReplacer = require('webpack-theme-color-replacer') +const forElementUI = require('webpack-theme-color-replacer/forElementUI') function resolve(dir) { return path.join(__dirname, dir) @@ -46,7 +48,16 @@ module.exports = { alias: { '@': resolve('src') } - } + }, + plugins: [ + // build css which contains theme colors + new ThemeColorReplacer({ + fileName: 'css/theme-colors.[contenthash:8].css', + matchColors: forElementUI.getElementUISeries('#1890ff'), + changeSelector: forElementUI.changeSelector + // isJsUgly: config.isBuild, + }) + ] }, chainWebpack(config) { config.plugins.delete('preload') // TODO: need test