Note: The photos in this repo are not for reuse. They are used for demo purposes only.
See the demo at galleriesdeluxe.netlify.app.
This is built on top of and the plural version of gallerydeluxe.
I will create a starter template for this theme later, but for now see the exampleSite folder.
See vars.css for a list of CSS custom properties.
These can be overridden either via Hugo config or by adding a CSS file to your project:
- In your Hugo config via
params.galleriesdeluxe.cssvars(highest priority):
[params.galleriesdeluxe]
[params.galleriesdeluxe.cssvars]
color-background = "#1d1e2c"- By adding a assets/css/galleriesdeluxe/vars-custom.css file to your project.
Add this to your hugo.toml:
disableKinds = ["taxonomy", "term"]Starting with v0.6.0, this theme uses plain CSS with css.Build instead of Sass. Dart Sass is no longer required.
If you have customized the theme, you need to migrate:
- Rename your
assets/scss/galleriesdeluxe/vars-custom.scsstoassets/css/galleriesdeluxe/vars-custom.css. - Convert Sass variables to CSS custom properties, e.g.
$color-primary: #3a98b9 !default;becomes--color-primary: #3a98b9;inside a:root {}block. - Rename
params.galleriesdeluxe.sassvarstoparams.galleriesdeluxe.cssvarsand removeparams.galleriesdeluxe.sass_transpilerfrom your Hugo config. Note that the variable names are now CSS custom property names (e.g.color-backgroundinstead ofcolor_background). - If you relied on the automatic light/dark text color (the old
dcmixin), set--color-textand--color-text-footerexplicitly in yourvars-custom.css.