50#ffffff
100#ecf4ef
200#daeadf
300#c8dfcf
400#b6d5bf
500#a3caaf
600#91bfa0
700#7fb591
800#6daa82
900#59a074
950#459565
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: '#ecf4ef',
200: '#daeadf',
300: '#c8dfcf',
400: '#b6d5bf',
500: '#a3caaf',
600: '#91bfa0',
700: '#7fb591',
800: '#6daa82',
900: '#59a074',
950: '#459565',
},
},
},
},
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: #ecf4ef;
--color-custom-200: #daeadf;
--color-custom-300: #c8dfcf;
--color-custom-400: #b6d5bf;
--color-custom-500: #a3caaf;
--color-custom-600: #91bfa0;
--color-custom-700: #7fb591;
--color-custom-800: #6daa82;
--color-custom-900: #59a074;
--color-custom-950: #459565;
}Individual Color Values
custom-50
#ffffff
custom-100
#ecf4ef
custom-200
#daeadf
custom-300
#c8dfcf
custom-400
#b6d5bf
custom-500
#a3caaf
custom-600
#91bfa0
custom-700
#7fb591
custom-800
#6daa82
custom-900
#59a074
custom-950
#459565
Learn more about customizing colors in Tailwind CSS