Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.36 KB

README.md

File metadata and controls

48 lines (29 loc) · 1.36 KB

Featured Image

Minimal Hugo

A minimal Hugo theme used in Higama-ya's websites.

Features

  • Static page only (No blog posts)
  • Dark mode support (switching automatically according to user settings)
  • Customizable colors (by overriding CSS variables)

Examples

Minimal Hugo is used in the following Higama-ya's websites.

The source code is published under the MIT license, so you can use it as a template.

Customize colors

Colors used in Minimal Hugo theme are defined in assets/scss/sakura.scss using CSS variables. You can override these CSS variables in your website's style sheet to customize the colors.

Your website's style sheet must be specified in the Hugo's config file as follows.

  • When using CSS:

    [params.theme.style]
    css = "css/style.css"
    

    css/style.css file should be placed in the static directory.

  • When using Sass(SCSS):

    [params.theme.style.sass]
    source = "scss/style.scss"
    target = "css/style.css"
    

    scss/style.scss file should be placed in the assets directory. css/style.css will be generated by Hugo.