50#ffffff
100#f0fbfb
200#e0f7f6
300#d0f2f2
400#c0eeee
500#afeaea
600#9de5e6
700#8be1e1
800#76dcdd
900#5fd7d9
950#42d3d5
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: '#f0fbfb',
200: '#e0f7f6',
300: '#d0f2f2',
400: '#c0eeee',
500: '#afeaea',
600: '#9de5e6',
700: '#8be1e1',
800: '#76dcdd',
900: '#5fd7d9',
950: '#42d3d5',
},
},
},
},
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: #f0fbfb;
--color-custom-200: #e0f7f6;
--color-custom-300: #d0f2f2;
--color-custom-400: #c0eeee;
--color-custom-500: #afeaea;
--color-custom-600: #9de5e6;
--color-custom-700: #8be1e1;
--color-custom-800: #76dcdd;
--color-custom-900: #5fd7d9;
--color-custom-950: #42d3d5;
}Individual Color Values
custom-50
#ffffff
custom-100
#f0fbfb
custom-200
#e0f7f6
custom-300
#d0f2f2
custom-400
#c0eeee
custom-500
#afeaea
custom-600
#9de5e6
custom-700
#8be1e1
custom-800
#76dcdd
custom-900
#5fd7d9
custom-950
#42d3d5
Learn more about customizing colors in Tailwind CSS