50#ffffff
100#fff4ee
200#ffe8de
300#ffddcd
400#ffd1bd
500#ffc6ad
600#ffbb9d
700#ffaf8d
800#ffa37e
900#ff976f
950#ff8b5f
How to Install
1
Open your tailwind.config.js file
Locate the configuration file in your project's root directory.
2
Add the color palette to your theme
Copy the following configuration into your theme's colors section:
module.exports = {
theme: {
extend: {
colors: {
custom: {
50: '#ffffff',
100: '#fff4ee',
200: '#ffe8de',
300: '#ffddcd',
400: '#ffd1bd',
500: '#ffc6ad',
600: '#ffbb9d',
700: '#ffaf8d',
800: '#ffa37e',
900: '#ff976f',
950: '#ff8b5f',
},
},
},
},
plugins: [],
}3
Use the colors in your HTML/JSX
You can now use your custom colors with Tailwind utility classes:
<!-- Background color -->
<div class="bg-custom-500">...</div>
<!-- Text color -->
<p class="text-custom-700">...</p>
<!-- Border color -->
<div class="border-custom-300">...</div>
<!-- Hover states -->
<button class="bg-custom-500 hover:bg-custom-600">...</button>Alternative: CSS Variables
If you prefer using CSS custom properties, here are the variables:
:root {
--color-custom-50: #ffffff;
--color-custom-100: #fff4ee;
--color-custom-200: #ffe8de;
--color-custom-300: #ffddcd;
--color-custom-400: #ffd1bd;
--color-custom-500: #ffc6ad;
--color-custom-600: #ffbb9d;
--color-custom-700: #ffaf8d;
--color-custom-800: #ffa37e;
--color-custom-900: #ff976f;
--color-custom-950: #ff8b5f;
}Individual Color Values
custom-50
#ffffff
custom-100
#fff4ee
custom-200
#ffe8de
custom-300
#ffddcd
custom-400
#ffd1bd
custom-500
#ffc6ad
custom-600
#ffbb9d
custom-700
#ffaf8d
custom-800
#ffa37e
custom-900
#ff976f
custom-950
#ff8b5f
Learn more about customizing colors in Tailwind CSS