Dark and Light EXtreme (DaLEX) is a minimalist theme designed for Hugo, emphasizing clear typography and an extremely simple style. It supports light/dark mode, KaTeX mathematical formulas, local search, table of contents navigation, and multilingual switching. Example website: demo.
Create a blog with the theme of DaLEX from scratch:
hugo new site mysite
cd mysite
rm -rf hugo.toml
git init
git submodule add https://github.com/Shawn-Summer/hugo-theme-DaLEX.git themes/DaLEX
cp -a themes/DaLEX/exampleSite/. content/
mv content/hugo.yaml .
hugo server
params:
mode: "auto" # theme mode: light, dark, or auto
When mode: "auto"
, the theme will automatically adjust according to the browser’s theme.
Enable KaTeX:
params:
enableKatex = true
params:
toc: true # whether to add table of contents
fastsearch: true # whether to enable search bar
Licensed under the MIT License, feel free to use and modify.