50#ffffff
100#eaeeee
200#d6dddc
300#c2cccc
400#afbbbb
500#9cabab
600#899b9a
700#768b8b
800#647b7b
900#526c6c
950#405d5d
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: '#eaeeee',
200: '#d6dddc',
300: '#c2cccc',
400: '#afbbbb',
500: '#9cabab',
600: '#899b9a',
700: '#768b8b',
800: '#647b7b',
900: '#526c6c',
950: '#405d5d',
},
},
},
},
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: #eaeeee;
--color-custom-200: #d6dddc;
--color-custom-300: #c2cccc;
--color-custom-400: #afbbbb;
--color-custom-500: #9cabab;
--color-custom-600: #899b9a;
--color-custom-700: #768b8b;
--color-custom-800: #647b7b;
--color-custom-900: #526c6c;
--color-custom-950: #405d5d;
}Individual Color Values
custom-50
#ffffff
custom-100
#eaeeee
custom-200
#d6dddc
custom-300
#c2cccc
custom-400
#afbbbb
custom-500
#9cabab
custom-600
#899b9a
custom-700
#768b8b
custom-800
#647b7b
custom-900
#526c6c
custom-950
#405d5d
Learn more about customizing colors in Tailwind CSS