How to apply a new theme to Hexo

2023-08-08
Hexo

Download the theme

1
2
cd themes
git clone https://github.com/klugjo/hexo-theme-clean-blog.git clean-blog

Modify the _config.yml under root directory and enable your new theme

1
2
3
4
5
# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
#theme: landscape
theme: clean-blog

Deploy your blog

1
hexo clean && hexo deploy