mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
chore: optimize the realization of theme color 🌟
This commit is contained in:
parent
42a34f7a16
commit
5f68e2d231
@ -138,7 +138,7 @@ export default {
|
|||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-left: 24px;
|
padding-left: 24px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-layout-sider :class="[theme, 'side', isMobile ? null : 'shadow']" width="256px" :collapsible="collapsible" v-model="collapsed" :trigger="null">
|
<a-layout-sider :theme="theme" :class="['side', isMobile ? null : 'shadow']" width="256px" :collapsible="collapsible" v-model="collapsed" :trigger="null">
|
||||||
<div :class="['logo', theme]">
|
<div :class="['logo', theme]">
|
||||||
<router-link to="/dashboard/workplace">
|
<router-link to="/dashboard/workplace">
|
||||||
<img src="@/assets/img/logo.png">
|
<img src="@/assets/img/logo.png">
|
||||||
@ -56,12 +56,6 @@ export default {
|
|||||||
}
|
}
|
||||||
.side{
|
.side{
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
&.light{
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
&.dark{
|
|
||||||
background-color: #001529;
|
|
||||||
}
|
|
||||||
.logo{
|
.logo{
|
||||||
height: 64px;
|
height: 64px;
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -70,32 +64,22 @@ export default {
|
|||||||
-webkit-transition: all .3s;
|
-webkit-transition: all .3s;
|
||||||
transition: all .3s;
|
transition: all .3s;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
background-color: @layout-trigger-background;
|
||||||
&.light{
|
&.light{
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
h1{
|
h1{
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
}
|
|
||||||
}
|
|
||||||
&.dark{
|
|
||||||
background-color: #002140;
|
|
||||||
h1{
|
|
||||||
color: #fff;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h1{
|
h1{
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
margin: 0 0 0 12px;
|
margin: 0 0 0 12px;
|
||||||
font-family: "Myriad Pro","Helvetica Neue",Arial,Helvetica,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 32px;
|
|
||||||
line-height: 32px;
|
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
img{
|
img{
|
||||||
width: 32px;
|
width: 32px;
|
||||||
display: inline-block;
|
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ export default {
|
|||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
}
|
}
|
||||||
.success {
|
.success {
|
||||||
color: green;
|
color: @success-color;
|
||||||
}
|
}
|
||||||
.error {
|
.error {
|
||||||
color: red;
|
color: red;
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="style">
|
|
||||||
<img :src="img" />
|
|
||||||
<div v-if="selected" class="select-item">
|
|
||||||
<a-icon type="check" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'StyleItem',
|
|
||||||
props: ['selected', 'img']
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.style{
|
|
||||||
margin-right: 16px;
|
|
||||||
position: relative;
|
|
||||||
border-radius: 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
.select-item{
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
width: 100%;
|
|
||||||
padding-top: 15px;
|
|
||||||
padding-left: 24px;
|
|
||||||
height: 100%;
|
|
||||||
color: #1890ff;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -8,7 +8,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import animates from '@/config/animates'
|
import {animates} from '@/config/default'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PageToggleTransition',
|
name: 'PageToggleTransition',
|
||||||
|
4
src/config/config.js
Normal file
4
src/config/config.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// 自定义配置,参考 ./default/setting.js,需要自定义的属性在这里配置即可
|
||||||
|
module.exports = {
|
||||||
|
themeColor: '#13c2c2',
|
||||||
|
}
|
@ -1,22 +1,6 @@
|
|||||||
// 系统配置
|
const deepmerge = require('deepmerge')
|
||||||
module.exports = {
|
const _config = require('./config')
|
||||||
lang: 'CN',
|
const setting = require('./default').setting
|
||||||
themeColor: '#1890ff',
|
const config = deepmerge(setting, _config)
|
||||||
theme: 'dark',
|
|
||||||
layout: 'side',
|
module.exports = config
|
||||||
fixedHeader: false,
|
|
||||||
fixedSideBar: true,
|
|
||||||
weekMode: false,
|
|
||||||
multiPage: false,
|
|
||||||
systemName: 'Vue Antd Admin',
|
|
||||||
copyright: '2018 ICZER 工作室出品',
|
|
||||||
animate: {
|
|
||||||
name: 'bounce',
|
|
||||||
direction: 'left'
|
|
||||||
},
|
|
||||||
footerLinks: [
|
|
||||||
{link: 'https://pro.ant.design', name: 'Pro首页'},
|
|
||||||
{link: 'https://github.com/iczer/vue-antd-admin', icon: 'github'},
|
|
||||||
{link: 'https://ant.design', name: 'Ant Design'}
|
|
||||||
],
|
|
||||||
}
|
|
||||||
|
@ -105,7 +105,7 @@ export default {
|
|||||||
min-height: auto;
|
min-height: auto;
|
||||||
}
|
}
|
||||||
.setting{
|
.setting{
|
||||||
background-color: #1890ff;
|
background-color: @primary-color;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-radius: 5px 0 0 5px;
|
border-radius: 5px 0 0 5px;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
|
@ -83,7 +83,7 @@ export default {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: color .3s;
|
transition: color .3s;
|
||||||
&:hover{
|
&:hover{
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.admin-header{
|
.admin-header{
|
||||||
|
@ -158,7 +158,7 @@ export default {
|
|||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -174,7 +174,7 @@ export default {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
flex: 1 1 0;
|
flex: 1 1 0;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.datetime {
|
.datetime {
|
||||||
@ -219,7 +219,7 @@ export default {
|
|||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
span {
|
span {
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -164,7 +164,7 @@ export default {
|
|||||||
transition: color 0.3s;
|
transition: color 0.3s;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: #1890ff;
|
color: @primary-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ export default {
|
|||||||
namespaced: true,
|
namespaced: true,
|
||||||
state: {
|
state: {
|
||||||
isMobile: false,
|
isMobile: false,
|
||||||
animates: require('@/config/animates'),
|
animates: require('@/config/default/animates'),
|
||||||
...config,
|
...config,
|
||||||
routesI18n: {}
|
routesI18n: {}
|
||||||
},
|
},
|
||||||
|
@ -1,20 +1,6 @@
|
|||||||
@import '~ant-design-vue/lib/style/color/colors.less';
|
@import '~ant-design-vue/lib/style/themes/default';
|
||||||
@primary: #1890ff;
|
|
||||||
@primary-color: @primary;
|
|
||||||
@processing-color: @primary;
|
|
||||||
@link-color: @primary;
|
|
||||||
|
|
||||||
@primary-1: color(~`colorPalette('@{primary}', 1) `);
|
|
||||||
@primary-2: color(~`colorPalette('@{primary}', 2) `);
|
|
||||||
@primary-3: color(~`colorPalette('@{primary}', 3) `);
|
|
||||||
@primary-4: color(~`colorPalette('@{primary}', 4) `);
|
|
||||||
@primary-5: color(~`colorPalette('@{primary}', 5) `);
|
|
||||||
@primary-6: color(~`colorPalette('@{primary}', 6) `);
|
|
||||||
@primary-7: color(~`colorPalette('@{primary}', 7) `);
|
|
||||||
@primary-8: color(~`colorPalette('@{primary}', 8) `);
|
|
||||||
@primary-9: color(~`colorPalette('@{primary}', 9) `);
|
|
||||||
@primary-10: color(~`colorPalette('@{primary}', 10) `);
|
|
||||||
|
|
||||||
|
@primary: @primary-color;
|
||||||
@gray-1: #ffffff;
|
@gray-1: #ffffff;
|
||||||
@gray-2: #fafafa;
|
@gray-2: #fafafa;
|
||||||
@gray-3: #f5f5f5;
|
@gray-3: #f5f5f5;
|
||||||
|
@ -1,17 +1,16 @@
|
|||||||
const {generate} = require('@ant-design/colors')
|
const varyColor = require('webpack-theme-color-replacer/client/varyColor')
|
||||||
// ant design vue 默认主题色
|
// ant design vue 默认主题色
|
||||||
const antPrimaryColor = '#1890ff'
|
const antPrimaryColor = '#1890ff'
|
||||||
// ant design vue 默认dark主题色,若主题色为默认主题色则返回此 dark 主题色系
|
// ant design vue 默认dark主题色,若主题色为默认主题色则返回此 dark 主题色系
|
||||||
const antDarkColors = ['#000c17', '#001529', '#002140']
|
const antDarkColors = ['#000c17', '#001529', '#002140']
|
||||||
|
|
||||||
function getDarkColors(color, theme) {
|
function getDarkColors(color) {
|
||||||
if (color == antPrimaryColor) {
|
if (color == antPrimaryColor) {
|
||||||
return antDarkColors
|
return antDarkColors
|
||||||
}
|
}
|
||||||
const lightColors = generate(color, {theme: theme, backgroundColor: '#000000'})
|
const darkColors = []
|
||||||
const darkColors = generate(lightColors[5], {theme: theme, backgroundColor: '#000000'})
|
darkColors.push(varyColor.darken(color, 0.93), varyColor.darken(color, 0.83), varyColor.darken(color, 0.73))
|
||||||
let deepDark = darkColors.slice(0, 3)
|
return darkColors
|
||||||
return deepDark
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {getDarkColors}
|
module.exports = {getDarkColors}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
const varyColor = require('webpack-theme-color-replacer/client/varyColor')
|
// const varyColor = require('webpack-theme-color-replacer/client/varyColor')
|
||||||
const client = require('webpack-theme-color-replacer/client')
|
const client = require('webpack-theme-color-replacer/client')
|
||||||
const generate = require('@ant-design/colors/lib/generate').default
|
const generate = require('@ant-design/colors/lib/generate').default
|
||||||
const themeColor = require('../config').themeColor
|
const themeColor = require('../config').themeColor
|
||||||
@ -7,13 +7,9 @@ const getDarkColors = require('../utils/colors').getDarkColors
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
primaryColor: themeColor,
|
primaryColor: themeColor,
|
||||||
getThemeColors(color) {
|
getThemeColors(color) {
|
||||||
const lightens = new Array(9).fill().map((t, i) => {
|
|
||||||
return varyColor.lighten(color, i / 10)
|
|
||||||
})
|
|
||||||
const palettes = generate(color)
|
const palettes = generate(color)
|
||||||
const rgb = varyColor.toNum3(color.replace('#', '')).join(',')
|
const darkBgColors = getDarkColors(color)
|
||||||
let darkBgColors = getDarkColors(color, 'dark')
|
return palettes.concat(darkBgColors)
|
||||||
return palettes.concat(lightens).concat(rgb).concat(darkBgColors)
|
|
||||||
},
|
},
|
||||||
changeThemeColor (newColor) {
|
changeThemeColor (newColor) {
|
||||||
let lastColor = this.lastColor || this.primaryColor
|
let lastColor = this.lastColor || this.primaryColor
|
||||||
@ -48,5 +44,16 @@ module.exports = {
|
|||||||
default :
|
default :
|
||||||
return selector
|
return selector
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
modifyVars(color) {
|
||||||
|
let darkColors = getDarkColors(color)
|
||||||
|
return {
|
||||||
|
'primary-color': color,
|
||||||
|
'info-color': color,
|
||||||
|
'processing-color': color,
|
||||||
|
'menu-dark-submenu-bg': darkColors[0],
|
||||||
|
'layout-header-background': darkColors[1],
|
||||||
|
'layout-trigger-background': darkColors[2]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
let path = require('path')
|
let path = require('path')
|
||||||
const ThemeColorReplacer = require('webpack-theme-color-replacer')
|
const ThemeColorReplacer = require('webpack-theme-color-replacer')
|
||||||
const {getThemeColors, changeSelector} = require('./src/utils/themeUtil')
|
const {getThemeColors, changeSelector, modifyVars} = require('./src/utils/themeUtil')
|
||||||
const themeColor = require('./src/config').themeColor
|
const themeColor = require('./src/config').themeColor
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
@ -24,12 +24,7 @@ module.exports = {
|
|||||||
loaderOptions: {
|
loaderOptions: {
|
||||||
less: {
|
less: {
|
||||||
lessOptions: {
|
lessOptions: {
|
||||||
modifyVars: {
|
modifyVars: modifyVars(themeColor),
|
||||||
// 'link-color': '#ff4d85',
|
|
||||||
// 'processing-color': '#ff4d85',
|
|
||||||
// 'primary-color': '#ff4d85',
|
|
||||||
// 'primary': '#1890ff',
|
|
||||||
},
|
|
||||||
javascriptEnabled: true
|
javascriptEnabled: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user