Create custom colour palettes with flexibility & control.
Instead of providing a user a full color picker, Colour Swatches is a configurable a fieldtype that gives an admin the ability to provide a selection of colours for a user to choose from. This allows you to create branded colour palettes with a bank of classnames ready to use in your templates.
This plugin requires Craft CMS 4.0.0 or later.
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project -
Then tell Composer to load the plugin:
composer require craftpulse/craft-colour-swatches -
In the Control Panel, go to Settings → Plugins and click the "Install" button for Colour Swatches.
Create a Colour Swatches field and provide label and hex value options. Multiple colours are possible by seperating them with a comma.
You can access both the label and color in your template. By default, the label will display:
{{ fieldName }}
{{ fieldName.label }}
{{ fieldName.color }} {% for color in fieldName.color %}
{{ color.color }}
{% endfor %}If you want more granular control with your colour palettes, use the configuration file option below.
You can use a config/colour-swatches.php config file file to predefine the possible colours, define different palettes and add lables, classnames or other attributes to your colours.
Take a look at the config file in this repo for an example.
return [
// Custom palettes, fixed options [label, default (boolean), colour (array(colour, customOptions)) ]
'palettes' => [
'Tailwind' => [ // custom label (required)
[
'label' => 'Red', // custom label (required)
'default' => true, // default could be true/false (option is required)
'color' => [
[
'color' => '#ef4444', // the colour shown in the fieldtype (required)
'background' => 'bg-red-500', // optional / custom attribute
'backgroundHover' => 'hover:bg-red-700', // optional / custom attribute
'text' => 'text-white', // optional / custom attribute
'textHover' => 'hover:text-zinc-200' // optional / custom attribute
]
]
],
[
'label' => 'Amber',
'default' => false,
'color' => [
[
'color' => '#f59e0b',
'background' => 'bg-amber-500',
'backgroundHover' => 'hover:bg-amber-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
[
'label' => 'Green',
'default' => false,
'color' => [
[
'color' => '#22c55e',
'background' => 'bg-green-500',
'backgroundHover' => 'hover:bg-green-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
[
'label' => 'Blue',
'default' => false,
'color' => [
[
'color' => '#3b82f6',
'background' => 'bg-blue-500',
'backgroundHover' => 'hover:bg-blue-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
[
'label' => 'Purple',
'default' => false,
'color' => [
[
'color' => '#a855f7',
'background' => 'bg-purple-500',
'backgroundHover' => 'hover:bg-purple-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
[
'label' => 'Yellow/Emerald',
'default' => false,
'color' => [
[
'color' => '#eab308',
'background' => 'bg-yellow-500',
'backgroundHover' => 'hover:bg-yellow-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
],
[
'color' => '#059669',
'background' => 'bg-emerald-600',
'backgroundHover' => 'hover:bg-emerald-800',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
[
'label' => 'Red/Amber',
'default' => false,
'color' => [
[
'color' => '#a855f7',
'background' => 'bg-red-500',
'backgroundHover' => 'hover:bg-red-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
],
[
'color' => '#f59e0b',
'background' => 'bg-amber-500',
'backgroundHover' => 'hover:bg-amber-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
[
'label' => 'Sky/Rose',
'default' => false,
'color' => [
[
'color' => '#0ea5e9',
'background' => 'bg-sky-500',
'backgroundHover' => 'hover:bg-sky-700',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
],
[
'color' => '#e11d48',
'background' => 'bg-rose-600',
'backgroundHover' => 'hover:bg-rose-800',
'text' => 'text-white',
'textHover' => 'hover:text-zinc-200'
]
]
],
]
]
];In your field settings you can then have the possibility to have it use the predefined colours.
If have entries using Colour Swatches and you make changes to your config file, you will need to resave your entries for new information from your config file to be pulled into your entry data.
From the command line you can run Crafts ./craft resave/entries and your entries will be populated with any changes to from your colour-swatches.php config file.
Note: As of version 5.2.0, Colour Swatches uses a silent handle system for stability. When you first save entries, a handle is automatically generated from the label (e.g., "Red" becomes "red"). This handle is used to match colours even if you change the label later.
You can access both the label and color in your template. By default, the label will display:
{{ fieldName }}
{{ fieldName.label }}
{{ fieldName.color }}
{{ fieldName.customAttribute }}If you're using multiple colours you will need to loop through your color array
{% for field in fieldName.color %}
{{ field.color }}
{{ field.customAttribute }}
{% endfor %}The collection() method (added in v5.1.0) returns a recursive Laravel collection for easier manipulation:
{# Get all hex values as an array #}
{% set hexValues = fieldName.collection().pluck('color').all() %}
{# Filter colors by a custom attribute #}
{% set darkColors = fieldName.collection()
.filter(c => c.background is defined and 'dark' in c.background) %}
{# Map to custom format #}
{% set cssVars = fieldName.collection()
.map(c => '--color: ' ~ c.color ~ ';')
.implode(' ') %}
{# Chain multiple operations #}
{% set backgrounds = fieldName.collection()
.pluck('background')
.filter()
.unique()
.all()
%}
{# Get count of colors #}
{% set colorCount = fieldName.collection().count() %}
{# Create CSS gradient from colors #}
{% set gradient = 'linear-gradient(' ~ fieldName.collection().pluck('color').implode(', ') ~ ')' %}
<div style="background: {{ gradient }}">Gradient background</div>By default, colour options are identified by their labels. The plugin now uses a silent handle system to maintain stability.
When an entry is saved, a handle is automatically generated from the label and stored in the database:
- "Red" → handle: "red"
- "Primary Red" → handle: "primary-red"
- "Sky Blue" → handle: "sky-blue"
This handle is stored silently and never exposed in your templates.
Option 1: Add explicit handles (Recommended)
Add a handle field to your config before changing labels:
'palettes' => [
'Tailwind' => [
[
'handle' => 'red', // Add this once - keeps it stable
'label' => 'Red', // Can be changed freely after handle is set
'color' => [['color' => '#ef4444']]
]
]
]Workflow:
- Add
handleto your config entries - Run
./craft resave/entriesonce to store handles - Now you can change
labelvalues without breaking existing entries
Option 2: Without explicit handles
If you don't add explicit handles, the system auto-generates them from labels. To change a label:
- Change the label in your config
- Run
./craft resave/entriesto update all entries
The system uses this priority for handles:
- Explicit handle in config → Always used if present (allows intentional handle changes)
- Existing handle in database → Preserved for stability
- Auto-generated from label → Created on first save
This means you have full control: use auto-generation for simplicity, or add explicit handles when you need guaranteed stability.
Colour Swatches comes with GraphQL support you can build a query as follows:
fieldName {
label
class
color
}
which will give you the following result if you use the config file:
"fieldName": {
"label": "Black/White",
"class": "",
"color": [
"{\"color\":\"#000000\",\"background\":\"bg-black\"}",
"{\"color\":\"#ffffff\",\"text\":\"text-white\"}"
]
},
or in case of a single value added through the settings you will see:
"fieldName": {
"label": "Black",
"class": "",
"color": [
"#000000"
]
},
Brought to you by Craft Pulse



