You can customize various theme features using parameters in your hugo.toml file. It is recommended to copy the hugo.toml from exampleSite/ as a starting point.
Logo
Use the logo parameter to use an image instead of the website name. This parameter is localizable.
Dark Mode
Enable the dark mode toggle in the header by setting [params.darkModeToggle]. User preferences are automatically saved for return visits.
Color Customization
Change the default accent color (default is pink) using [params.ascentColor]. Use any valid Tailwind CSS color class (e.g., bg-blue-200, bg-yellow-300).
Search
Enable the Fuse.js powered search by setting [params.enableSearch] = true. This adds a search icon to the header and enables searching via Ctrl/Cmd + /.
Requirement: You must enable JSON in your [outputs] array for search to work:
[outputs]
home = ["HTML", "RSS", "JSON"]
LaTeX
To enable mathematical rendering, add math: true to the frontmatter of your Markdown files.