50#ffffff
100#f6fef5
200#ecfceb
300#e3fbe1
400#d9fad7
500#d0f8cc
600#c6f7c2
700#bcf5b8
800#b1f3ae
900#a7f2a4
950#9bf09a
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: '#f6fef5',
200: '#ecfceb',
300: '#e3fbe1',
400: '#d9fad7',
500: '#d0f8cc',
600: '#c6f7c2',
700: '#bcf5b8',
800: '#b1f3ae',
900: '#a7f2a4',
950: '#9bf09a',
},
},
},
},
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: #f6fef5;
--color-custom-200: #ecfceb;
--color-custom-300: #e3fbe1;
--color-custom-400: #d9fad7;
--color-custom-500: #d0f8cc;
--color-custom-600: #c6f7c2;
--color-custom-700: #bcf5b8;
--color-custom-800: #b1f3ae;
--color-custom-900: #a7f2a4;
--color-custom-950: #9bf09a;
}Individual Color Values
custom-50
#ffffff
custom-100
#f6fef5
custom-200
#ecfceb
custom-300
#e3fbe1
custom-400
#d9fad7
custom-500
#d0f8cc
custom-600
#c6f7c2
custom-700
#bcf5b8
custom-800
#b1f3ae
custom-900
#a7f2a4
custom-950
#9bf09a
Learn more about customizing colors in Tailwind CSS