This commit is contained in:
ray_wuhao 2023-04-17 13:02:47 +08:00
parent c179929e16
commit 6e91374040
9 changed files with 33 additions and 14 deletions

2
cfg.ts
View File

@ -60,7 +60,7 @@ const config: AppConfigExport = {
/** 主题色 */
primaryColor: '#2d8cf0',
/** 主题辅助色(用于整体 hover、active 等之类颜色) */
primaryFadeColor: 'rgba(45, 140, 240, 0.25)',
primaryFadeColor: 'rgba(45, 140, 240, 0.3)',
},
/**
*

View File

@ -5,7 +5,7 @@ import GlobalSpin from '@/spin/index'
import { getCache } from '@/utils/cache'
import { get } from 'lodash-es'
import { useSetting } from '@/store'
import { addClass, removeClass, addStyle } from '@/utils/element'
import { addClass, removeClass, addStyle, colorToRgba } from '@/utils/element'
const App = defineComponent({
name: 'App',
@ -14,6 +14,28 @@ const App = defineComponent({
const { themeValue } = storeToRefs(settingStore)
/** 同步主题色变量至 body, 如果未获取到缓存值则已默认值填充 */
const syncPrimaryColorToBody = () => {
const {
appPrimaryColor: { primaryColor, primaryFadeColor },
} = __APP_CFG__ // 默认主题色
const body = document.body
const primaryColorOverride = getCache('piniaSettingStore', 'localStorage')
const _p = get(
primaryColorOverride,
'primaryColorOverride.common.primaryColor',
)
const _fp = colorToRgba(_p, 0.3)
/** 设置全局主题色 css 变量 */
body.style.setProperty('--ray-theme-primary-color', _p || primaryColor)
body.style.setProperty(
'--ray-theme-primary-fade-color',
_fp || primaryFadeColor,
)
}
/** 隐藏加载动画 */
const hiddenLoadingAnimation = () => {
/** pre-loading-animation 是默认 id */
@ -26,6 +48,7 @@ const App = defineComponent({
}
}
syncPrimaryColorToBody()
hiddenLoadingAnimation()
/** 切换主题时, 同步更新 body class 以便于进行自定义 css 配置 */

View File

@ -28,12 +28,12 @@
&.draggable-item--dark {
&:hover {
background-color: $hoverDarkBackgroundColor;
background-color: var(--ray-theme-primary-fade-color);
}
}
&:hover {
background-color: $hoverLightBackgroundColor;
background-color: var(--ray-theme-primary-fade-color);
& .draggable-item__d--icon {
opacity: 1;

View File

@ -26,7 +26,7 @@
&.dropdown-item--active,
&:hover {
background-color: $hoverLightBackgroundColor;
background-color: var(--ray-theme-primary-fade-color);
color: var(--ray-theme-primary-color);
}
}
@ -38,7 +38,7 @@
.ray-template--dark {
& .table-size__dropdown-wrapper {
& .dropdown-item:hover {
background-color: $hoverDarkBackgroundColor;
background-color: var(--ray-theme-primary-fade-color);
color: var(--ray-theme-primary-color);
}
}

View File

@ -67,7 +67,6 @@
background-color: #2f2f2f;
&:hover {
// background-color: $hoverDarkBackgroundColor;
background-color: var(--ray-theme-primary-fade-color);
}
}
@ -82,7 +81,7 @@
background-color: #ffffff;
&:hover {
background-color: $hoverLightBackgroundColor;
background-color: var(--ray-theme-primary-fade-color);
}
}
}

View File

@ -65,7 +65,7 @@ export const useSetting = defineStore(
body.style.setProperty('--ray-theme-primary-color', value)
body.style.setProperty(
'--ray-theme-primary-fade-color',
colorToRgba(value, 0.25),
colorToRgba(value, 0.3),
)
}

View File

@ -6,5 +6,3 @@
$iconSpace: 5px;
$width: 140px;
$hoverLightBackgroundColor: rgba(45, 140, 240, 0.1);
$hoverDarkBackgroundColor: rgba(45, 140, 240, 0.15);

View File

@ -71,7 +71,6 @@ export interface AppConfig {
sideBarLogo?: LayoutSideBarLogo
}
rootRoute: RootRoute
primaryColor: string
base?: string
appPrimaryColor: AppPrimaryColor
}

View File

@ -184,7 +184,7 @@ export const removeStyle = (el: HTMLElement, styles: string[]) => {
* @remark rgba
*/
export const colorToRgba = (color: string, alpha = 1) => {
const hexPattern = /^#([0-9a-f]{3}|[0-9a-f]{6})$/i
const hexPattern = /^#([0-9a-f]{3}|[0-9a-f]{6}|[0-9a-f]{8})$/i
const rgbPattern = /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/i
const rgbaPattern =
/^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d*(?:\.\d+)?)\)$/i
@ -205,7 +205,7 @@ export const colorToRgba = (color: string, alpha = 1) => {
} else if (rgbaPattern.test(color)) {
result = color
} else {
result = ''
result = color
}
if (result && !result.startsWith('rgba')) {