50#ffffff
100#fdf0ef
200#fae1df
300#f6d3d0
400#f2c4c0
500#eeb5b1
600#eaa7a2
700#e59894
800#df8985
900#da7b77
950#d36c69
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: '#fdf0ef',
200: '#fae1df',
300: '#f6d3d0',
400: '#f2c4c0',
500: '#eeb5b1',
600: '#eaa7a2',
700: '#e59894',
800: '#df8985',
900: '#da7b77',
950: '#d36c69',
},
},
},
},
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: #fdf0ef;
--color-custom-200: #fae1df;
--color-custom-300: #f6d3d0;
--color-custom-400: #f2c4c0;
--color-custom-500: #eeb5b1;
--color-custom-600: #eaa7a2;
--color-custom-700: #e59894;
--color-custom-800: #df8985;
--color-custom-900: #da7b77;
--color-custom-950: #d36c69;
}Individual Color Values
custom-50
#ffffff
custom-100
#fdf0ef
custom-200
#fae1df
custom-300
#f6d3d0
custom-400
#f2c4c0
custom-500
#eeb5b1
custom-600
#eaa7a2
custom-700
#e59894
custom-800
#df8985
custom-900
#da7b77
custom-950
#d36c69
Learn more about customizing colors in Tailwind CSS