代码拉取完成,页面将自动刷新
同步操作将从 BidingCC/码多多 全能知识库(Python 版) 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import colors from 'css-color-function'
const lightConfig: any = {
'dark-2': 'shade(20%)',
'light-3': 'tint(30%)',
'light-5': 'tint(50%)',
'light-7': 'tint(70%)',
'light-8': 'tint(80%)',
'light-9': 'tint(90%)'
}
const darkConfig: any = {
'light-3': 'shade(20%)',
'light-5': 'shade(30%)',
'light-7': 'shade(50%)',
'light-8': 'shade(60%)',
'light-9': 'shade(70%)',
'dark-2': 'tint(20%)'
}
const themeId: string = 'theme-vars'
const themeUtil: any = {
/**
* 生成变量
* 可选值: [primary, success, warning, danger, error, info]
*
* @param {string} color 十六进制颜色
* @param {string} type 颜色类型
* @param {boolean} isDark 暗黑模式
* @returns objects
*/
generateVars(color: string, type: string = 'primary', isDark: boolean = false) {
const colors: any = {
[`--el-color-${type}`]: color
}
const config: Record<string, string> = isDark ? darkConfig : lightConfig
for (const key in config) {
colors[`--el-color-${type}-${key}`] = `color(${color} ${config[key]})`
}
return colors
},
/**
* 生成主题
*
* @param {Record<string, string>} options
* @param {boolean} isDark
* @returns {string}
*/
generateTheme(options: Record<string, string>, isDark: boolean = false): string {
const varsMap: Record<string, string> = Object.keys(options).reduce((prev: any, key: string) => {
return Object.assign(prev, this.generateVars(options[key], key, isDark))
}, {})
return Object.keys(varsMap).reduce((prev: string, key: string): string => {
const color = colors.convert(varsMap[key])
return `${prev}${key}:${color};`
}, '')
},
/**
* 设置主题
*
* @param {Record<string, string>} options
* @param {isDark} isDark
* @returns {void}
*/
setTheme(options: Record<string, string>, isDark: boolean = false): void {
const theme: string = this.generateTheme(options, isDark)
const themeElem: string = `:root{${theme}}`
let style: HTMLElement | null = document.getElementById(themeId)
if (style) {
style.innerHTML = themeElem
return
}
style = document.createElement('style')
style.setAttribute('type', 'text/css')
style.setAttribute('id', themeId)
style.innerHTML = themeElem
document.head.append(style)
}
}
export default themeUtil
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。