fueko home fueko home

Post card colors

Use Renge’s internal post-card tags to change the decorative color layer behind individual cards. You can choose one of the built-in colors, add a custom card color with Code Injection, or force all post cards to share one consistent color.

Step-by-Step
  1. Open the published post and add the appropriate internal tag in the 'Post settings' panel.
  2. For example, add the internal tag #post-card-purple to apply the Purple post-card color. Tags prefixed with # are internal tags in Ghost.
  3. Click 'Update' to activate.
The tag slug should be hash-post-card-colorname, for example hash-post-card-purple
Available colors

White

#post-card-white

Cream

#post-card-cream

Aqua

#post-card-aqua

Amber

#post-card-amber

Apricot

#post-card-apricot

Peach

#post-card-peach

Iris

#post-card-iris

Lavender

#post-card-lavender

Purple

#post-card-purple

Violet

#post-card-violet

Amethyst

#post-card-amethyst

Sky

#post-card-sky

Blue

#post-card-blue

Lapis

#post-card-lapis

Cobalt

#post-card-cobalt

Azure

#post-card-azure

Turquoise

#post-card-turquoise

Mint

#post-card-mint

Seafoam

#post-card-seafoam

Green

#post-card-green

Palegreen

#post-card-palegreen

Celadon

#post-card-celadon

Lime

#post-card-lime

Apple

#post-card-apple

Coral

#post-card-coral

Tomato

#post-card-tomato

Red

#post-card-red

Crimson

#post-card-crimson

Rosewood

#post-card-rosewood

Cerise

#post-card-cerise

Raspberry

#post-card-raspberry

Olive

#post-card-olive

Gold

#post-card-gold

Lemon

#post-card-lemon

Yellow

#post-card-yellow

Goldenrod

#post-card-goldenrod

Orange

#post-card-orange
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>
.tag-hash-post-card-custom-yourcolor .global-color::after {
   background-color: #fff
}
</style>
  1. Change -yourcolor to your custom color name.
  2. Change #fff to your custom color.
  3. Click 'Save'.
  4. Open the published post and add the internal tag #post-card-custom-yourcolor in the 'Post settings' panel.
  5. Click 'Update' to activate.
The tag slug should be hash-post-card-custom-yourcolor
Tip: How to use one color for all post cards
  1. Open any published post and add the internal tag #post-card-one-color in the 'Post settings' panel.
  2. Click 'Update' to activate.
The tag slug should be hash-post-card-one-color
After you add #post-card-one-color, all post cards use the default gray color. To use a custom color instead, add the code below.
Optional: How to set a custom color
  1. Go to the 'Code injection' settings in the Ghost Admin and paste this code into 'Site header':
<style>
:root body {
   --bg-color-all: #fff
}
</style>
  1. Change #fff to your custom color.
  2. Click 'Save' to activate.