定制主题
定制标题为渐变
在.vitepress文件夹新建theme文件夹 创建theme.css 覆盖原本的主题变量
css
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);
}获取渐变色 https://webkul.github.io/coolhue/
如何设置logo
首页index.md 的hero下增加image属性,然后根目录,增加一个public文件夹,将logo放到public
yaml
hero:
name: "我的博客"
text: "记录日常所看所思所想"
image:
src: /logo.png