主题色
支持 HEX
& HSL
表示颜色
blog/_config.stellar.ymlstyle: ... color: background: 'hsl(212 16% 98%)' block: 'hsl(212 8% 95%)' code: 'hsl(14 100% 48%)' text: 'hsl(0 0% 20%)' theme: 'hsl(192 98% 55%)' accent: 'hsl(14 100% 57%)' link: 'hsl(207 90% 54%)' button: 'hsl(192 98% 55%)' hover: 'hsl(14 100% 57%)'
|
字体
请注意使用字体的版权问题!
系统字体
blog/_config.stellar.ymlstyle: font-size: root: 16px body: .9375rem code: 85% codeblock: 0.8125rem font-family: logo: 'system-ui, "Microsoft Yahei", "Segoe UI", -apple-system, Roboto, Ubuntu, "Helvetica Neue", Arial, "WenQuanYi Micro Hei", sans-serif' body: 'system-ui, "Microsoft Yahei", "Segoe UI", -apple-system, Roboto, Ubuntu, "Helvetica Neue", Arial, "WenQuanYi Micro Hei", sans-serif' code: 'Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif' codeblock: 'Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif'
|
外部字体
要想引用外部字体,你需要先在 _config.yml
中 inject
引入
举例,引用 Noto Serif SC 在 _config.stellar.yml
中写入
blog/_config.stellar.ymlinject: head: - <link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC&display=swap" rel="stylesheet"> script:
|
并在 _config.stellar.yml
中填写你引入的字体名称
blog/_config.stellar.ymlstyle: font-family: body: '"Noto Serif SC", "Microsoft Yahei",..., sans-serif'
|
选择在线字体:
本地字体
若您想引用本地字体,举例,引用得意黑(SmileySans-Oblique.ttf
)这个字体,先将字体放置于 blog/source/font/
目录下,然后改动一下主题文件
Blog/themes/stellar/source/css/_custom.styl@font-face font-family: 'Smiley Sans' src: url('/font/SmileySans-Oblique.ttf') font-weight: normal font-style: normal
|
font-family
是你引入的字体家族名,src
中填写字体文件相对于 source
文件夹的路径
同样,你需要在 _config.stellar.yml
中填写你引入的字体名称(font-family
)
blog/_config.stellar.ymlstyle: font-family: body: '"Smiley Sans", "Microsoft Yahei",..., sans-serif'
|
但是我个人并不推荐引用本地字体,相比于英文字体,中文字体囊括了众多的字符,这也无法避免地导致字体文件体积的增加,如果你想使用自己的字体而找不到在线的字体引入链接,可以自行制作字体的 woff2
切片来减少对网页加载速度的影响。
背景图片
此功能在 1.26.4 中支持,可以设置:纯色/渐变色/图片作为背景。未完全适配,慎用!
blog/_config.stellar.ymlstyle: ... site: background-image: blur-px: 100px blur-bg: var(--alpha75)
|
文本对齐方向
blog/_config.stellar.ymlstyle: ... text-align: left
|
代码块复制
blog/_config.stellar.ymlcopycode: enable: true js: /js/plugins/copycode.js default_text: 'Copy' success_text: 'Copied'
|
圆角大小
这个功能在 1.18.1 版本后开始支持。
blog/_config.stellar.ymlstyle: ... border-radius: card: 12px block: 12px bar: 6px image: 6px
|
页面缓入效果
blog/_config.stellar.yml scrollreveal: enable: false js: https://gcore.jsdelivr.net/npm/scrollreveal@4.0.9/dist/scrollreveal.min.js distance: 4px duration: 400 interval: 100 scale: 0.1
|
此效果会和图片懒加载插件冲突,导致部分卡片和footer可能加载不出来
图片懒加载
blog/_config.stellar.yml lazyload: enable: true js: https://gcore.jsdelivr.net/npm/vanilla-lazyload@17.3.1/dist/lazyload.min.js transition: blur
|
加载提示
加载动态时间线、动态友链等显示提示
blog/_config.stellar.yml loading: loading: 正在加载 error: 加载失败,请稍后重试。
|
渐变色
这个功能在 1.18.2 版本后开始支持。
您可以在 wiki
项目的封面开始按钮处设置渐变色 CSS 代码
blog/_config.stellar.ymlstyle: ... gradient: start: 'linear-gradient(to right, #92fe9d 0%, #00c9ff 50%, #92fe9d 100%)' search: 'linear-gradient(to right, #04F3FF, #08FFC6, #DDF730, #FFBD19, #FF1FE0, #C418FF, #04F3FF)'
|
当然,如果只想设置纯色的话可以直接设置单色,支持 HEX 和 HSL,例如 search: 'hsl(212 16% 98%)'
顶部 tab 栏
这个功能在 1.25.0 版本重构。
blog/_config.stellar.ymlsite_tree: blog: nav_tabs: '朋友文章': /friends/rss/
|
站点地图
页面底部的站点导航,你也可以在 content
中自定义一些文字信息,支持 Markdown 格式。
footer: social: sitemap: content: | 本站由 [{author.name}](/) 使用 [{theme.name} {theme.version}]({theme.tree}) 主题创建。 本博客所有文章除特别声明外,均采用 [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) 许可协议,转载请注明出处。 <span class="jinrishici-sentence"></span> <script src="https://sdk.jinrishici.com/v2/browser/jinrishici.js" charset="utf-8"></script>
|
自定义样式
如果要修改样式,您需要删掉主题的样式文件的 CDN 链接,使用本地文件,然后在 themes/stellar/source/css/_custom.styl
中进行修改。
使用其它 highlight.js 代码高亮主题
Hexo 官方有文档:https://hexo.io/docs/syntax-highlight.html#hljs
Tip: When line_number is set to false, wrap is set to false and hljs is set to true, you can then use highlight.js theme directly in your site.
以 atom-one-dark
主题为例,翻译过来就是 _config.yml
找到 highlight
并修改为:
highlight: enable: true line_number: false auto_detect: false tab_replace: ' ' wrap: false hljs: true
|
然后再找到 highlightjs_theme
修改 css 链接:
blog/_config.stellar.ymlstyle: codeblock: highlightjs_theme: https://gcore.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/atom-one-dark.min.css
|
外部文件注入
在主题配置文件中进行修改 inject.head
以在 <head>
标签末尾处注入代码,修改 inject.script
以在 <body>
标签末尾处注入代码。
blog/_config.stellar.ymlinject: head: - <meta name="msapplication-TileColor" content="#2d89ef"> - <meta name="msapplication-config" content="/assets/favicon/browserconfig.xml"> - <meta name="theme-color" content="#ffffff"> script: - <script async src="https://gcore.jsdelivr.net/npm/jquery@3.5/dist/jquery.min.js"></script>
|
不蒜子统计插件
直接贴到要显示的地方(支持 markdown
的组件)就行:
blog/_config.stellar.ymlfooter: content: | <span id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span>次</span> <script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
|