/* eslint-disable react/no-unknown-property */ import { siteConfig } from '@/lib/config' import CONFIG from './config' /** * 这里的css样式只对当前主题生效 * 主题客制化css * @returns */ const Style = () => { // 从配置中获取主题色,如果没有配置则使用默认值 #928CEE const themeColor = siteConfig('HEXO_THEME_COLOR', '#928CEE', CONFIG) return ( ) } export { Style }