50#ffffff
100#e9f0e7
200#d4e2cf
300#bfd3b8
400#aac5a1
500#95b78b
600#81a975
700#6c9b5f
800#578d4a
900#417f35
950#28721e
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: '#e9f0e7',
200: '#d4e2cf',
300: '#bfd3b8',
400: '#aac5a1',
500: '#95b78b',
600: '#81a975',
700: '#6c9b5f',
800: '#578d4a',
900: '#417f35',
950: '#28721e',
},
},
},
},
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: #e9f0e7;
--color-custom-200: #d4e2cf;
--color-custom-300: #bfd3b8;
--color-custom-400: #aac5a1;
--color-custom-500: #95b78b;
--color-custom-600: #81a975;
--color-custom-700: #6c9b5f;
--color-custom-800: #578d4a;
--color-custom-900: #417f35;
--color-custom-950: #28721e;
}Individual Color Values
custom-50
#ffffff
custom-100
#e9f0e7
custom-200
#d4e2cf
custom-300
#bfd3b8
custom-400
#aac5a1
custom-500
#95b78b
custom-600
#81a975
custom-700
#6c9b5f
custom-800
#578d4a
custom-900
#417f35
custom-950
#28721e
Learn more about customizing colors in Tailwind CSS