fueko home fueko home

Site background colors

Use Renge’s site background tags to change the color palette of the whole publication. The theme reads internal tags from published posts, adds matching global classes, and applies either a light or dark site color set.

Step-by-Step
  1. Open any published post and add a site color internal tag in the 'Post settings' panel. This global setting applies to the whole site.
  2. For example, add the internal tag #site-ruby to apply the Ruby site background. Tags prefixed with # are internal tags in Ghost.
  3. Click 'Update' to activate.
The tag slug should be hash-site-colorname, for example hash-site-ruby
Available light colors
Light colors use black text across the site.

Pearl

#site-pearl

Parchment

#site-parchment

Celeste

#site-celeste

Arctic

#site-arctic

Lilac

#site-lilac

Pink

#site-pink

Sand

#site-sand

Canary

#site-canary

Avocado

#site-avocado

Jade

#site-jade
Available dark colors
Dark colors use white text across the site.

Rose

#site-rose

Ruby

#site-ruby

Burgundy

#site-burgundy

Magenta

#site-magenta

Eggplant

#site-eggplant

Neon

#site-neon

Ultramarine

#site-ultramarine

Sapphire

#site-sapphire

Grass

#site-grass

Emerald

#site-emerald
Tip: How to add a custom color
  1. Go to the 'Code injection' settings in the Ghost Admin and paste this code into 'Site header':
<style>
.global-hash-site-custom-light-color {
   --color-site-light: #333
}
</style>
The code for a light color with black text on the site.
<style>
.global-hash-site-custom-dark-color {
   --color-site-dark: #333
}
</style>
The code for a dark color with white text on the site.
  1. Change #333 to your custom color.
  2. Click 'Save'.
  3. Open any published post and add the internal tag #site-custom-light-color or #site-custom-dark-color in the 'Post settings' panel.
  4. Click 'Update' to activate.
The tag slug should be hash-site-custom-light-color or hash-site-custom-dark-color