50#ffffff
100#fcffff
200#faffff
300#f7ffff
400#f4ffff
500#f1ffff
600#eeffff
700#ecffff
800#e9ffff
900#e6ffff
950#e3ffff
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: '#fcffff',
200: '#faffff',
300: '#f7ffff',
400: '#f4ffff',
500: '#f1ffff',
600: '#eeffff',
700: '#ecffff',
800: '#e9ffff',
900: '#e6ffff',
950: '#e3ffff',
},
},
},
},
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: #fcffff;
--color-custom-200: #faffff;
--color-custom-300: #f7ffff;
--color-custom-400: #f4ffff;
--color-custom-500: #f1ffff;
--color-custom-600: #eeffff;
--color-custom-700: #ecffff;
--color-custom-800: #e9ffff;
--color-custom-900: #e6ffff;
--color-custom-950: #e3ffff;
}Individual Color Values
custom-50
#ffffff
custom-100
#fcffff
custom-200
#faffff
custom-300
#f7ffff
custom-400
#f4ffff
custom-500
#f1ffff
custom-600
#eeffff
custom-700
#ecffff
custom-800
#e9ffff
custom-900
#e6ffff
custom-950
#e3ffff
Learn more about customizing colors in Tailwind CSS