50#ffffff
100#fbfbfb
200#f7f7f7
300#f3f3f3
400#efefef
500#ebebeb
600#e7e7e7
700#e3e3e3
800#dfdfdf
900#dbdbdb
950#d7d7d7
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: '#fbfbfb',
200: '#f7f7f7',
300: '#f3f3f3',
400: '#efefef',
500: '#ebebeb',
600: '#e7e7e7',
700: '#e3e3e3',
800: '#dfdfdf',
900: '#dbdbdb',
950: '#d7d7d7',
},
},
},
},
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: #fbfbfb;
--color-custom-200: #f7f7f7;
--color-custom-300: #f3f3f3;
--color-custom-400: #efefef;
--color-custom-500: #ebebeb;
--color-custom-600: #e7e7e7;
--color-custom-700: #e3e3e3;
--color-custom-800: #dfdfdf;
--color-custom-900: #dbdbdb;
--color-custom-950: #d7d7d7;
}Individual Color Values
custom-50
#ffffff
custom-100
#fbfbfb
custom-200
#f7f7f7
custom-300
#f3f3f3
custom-400
#efefef
custom-500
#ebebeb
custom-600
#e7e7e7
custom-700
#e3e3e3
custom-800
#dfdfdf
custom-900
#dbdbdb
custom-950
#d7d7d7
Learn more about customizing colors in Tailwind CSS