Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 自定义配色
# custom theme color
# 注意:颜色值必须使用引号,如“#000”,否则可能会导致错误!
# Note: The color value must be enclosed in quotation marks, such as "#000", otherwise it may cause an error!
# --------------------------------------
theme_color:
dark: "#ffc848" # 暗色模式 / Dark mode
dark_op: "#f2b94b23" # 暗色模式透明 / Dark mode transparent
dark_op_deep: "#f2b94bdd" # 暗色模式透明深色 / Dark mode transparent dark
dark_none: "#f2b94b00" # 暗色模式透明无色 / Dark mode transparent colorless
light: "#425AEF" # 亮色模式 / Light mode
light_op: "#4259ef23" # 亮色模式透明 / Light mode transparent
light_op_deep: "#4259efdd" # 亮色模式透明深色 / Light mode transparent dark
light_none: "#4259ef01" # 亮色模式透明无色 / Light mode transparent colorless