mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-23 15:09:46 +00:00
152 lines
3.8 KiB
JavaScript
152 lines
3.8 KiB
JavaScript
/* 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 (
|
|
<style jsx global>{`
|
|
:root {
|
|
--theme-color: ${themeColor};
|
|
}
|
|
// 底色
|
|
body {
|
|
background-color: #f5f5f5;
|
|
}
|
|
.dark body {
|
|
background-color: black;
|
|
}
|
|
|
|
/* 菜单下划线动画 */
|
|
#theme-hexo .menu-link {
|
|
text-decoration: none;
|
|
background-image: linear-gradient(
|
|
var(--theme-color),
|
|
var(--theme-color)
|
|
);
|
|
background-repeat: no-repeat;
|
|
background-position: bottom center;
|
|
background-size: 0 2px;
|
|
transition: background-size 100ms ease-in-out;
|
|
}
|
|
|
|
#theme-hexo .menu-link:hover {
|
|
background-size: 100% 2px;
|
|
color: var(--theme-color);
|
|
}
|
|
|
|
/* 下拉菜单悬浮背景色 */
|
|
li[class*='hover:bg-indigo-500']:hover {
|
|
background-color: var(--theme-color) !important;
|
|
}
|
|
|
|
/* tag标签悬浮背景色 */
|
|
a[class*='hover:bg-indigo-400']:hover {
|
|
background-color: var(--theme-color) !important;
|
|
}
|
|
|
|
/* 社交按钮悬浮颜色 */
|
|
i[class*='hover:text-indigo-600']:hover {
|
|
color: var(--theme-color) !important;
|
|
}
|
|
.dark i[class*='dark:hover:text-indigo-400']:hover {
|
|
color: var(--theme-color) !important;
|
|
}
|
|
|
|
/* MenuGroup 悬浮颜色 */
|
|
#theme-hexo #nav div[class*='hover:text-indigo-600']:hover {
|
|
color: var(--theme-color) !important;
|
|
}
|
|
.dark #theme-hexo #nav div[class*='dark:hover:text-indigo-400']:hover {
|
|
color: var(--theme-color) !important;
|
|
}
|
|
|
|
/* 最新发布文章悬浮颜色 */
|
|
div[class*='hover:text-indigo-600']:hover,
|
|
div[class*='hover:text-indigo-400']:hover {
|
|
color: var(--theme-color) !important;
|
|
}
|
|
|
|
/* 分页组件颜色 */
|
|
.text-indigo-400 {
|
|
color: var(--theme-color) !important;
|
|
}
|
|
.border-indigo-400 {
|
|
border-color: var(--theme-color) !important;
|
|
}
|
|
a[class*='hover:bg-indigo-400']:hover {
|
|
background-color: var(--theme-color) !important;
|
|
color: white !important;
|
|
}
|
|
.bg-indigo-400 {
|
|
background-color: var(--theme-color) !important;
|
|
}
|
|
a[class*='hover:bg-indigo-600']:hover {
|
|
background-color: var(--theme-color) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
/* 右下角悬浮按钮背景色 */
|
|
.bg-indigo-500 {
|
|
background-color: var(--theme-color) !important;
|
|
}
|
|
|
|
/* 设置了从上到下的渐变黑色 */
|
|
#theme-hexo .header-cover::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(
|
|
to bottom,
|
|
rgba(0, 0, 0, 0.5) 0%,
|
|
rgba(0, 0, 0, 0.2) 10%,
|
|
rgba(0, 0, 0, 0) 25%,
|
|
rgba(0, 0, 0, 0.2) 75%,
|
|
rgba(0, 0, 0, 0.5) 100%
|
|
);
|
|
}
|
|
|
|
/* Custem */
|
|
.tk-footer {
|
|
opacity: 0;
|
|
}
|
|
|
|
// 选中字体颜色
|
|
::selection {
|
|
background: color-mix(in srgb, var(--theme-color) 30%, transparent);
|
|
}
|
|
|
|
// 自定义滚动条
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: var(--theme-color);
|
|
}
|
|
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--theme-color) transparent;
|
|
}
|
|
`}</style>
|
|
)
|
|
}
|
|
|
|
export { Style }
|