50#ffffff
100#f3f3f3
200#e7e7e7
300#dbdbdb
400#cfcfcf
500#c3c3c3
600#b8b8b8
700#acacac
800#a1a1a1
900#969696
950#8b8b8b
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: '#f3f3f3',
200: '#e7e7e7',
300: '#dbdbdb',
400: '#cfcfcf',
500: '#c3c3c3',
600: '#b8b8b8',
700: '#acacac',
800: '#a1a1a1',
900: '#969696',
950: '#8b8b8b',
},
},
},
},
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: #f3f3f3;
--color-custom-200: #e7e7e7;
--color-custom-300: #dbdbdb;
--color-custom-400: #cfcfcf;
--color-custom-500: #c3c3c3;
--color-custom-600: #b8b8b8;
--color-custom-700: #acacac;
--color-custom-800: #a1a1a1;
--color-custom-900: #969696;
--color-custom-950: #8b8b8b;
}Individual Color Values
custom-50
#ffffff
custom-100
#f3f3f3
custom-200
#e7e7e7
custom-300
#dbdbdb
custom-400
#cfcfcf
custom-500
#c3c3c3
custom-600
#b8b8b8
custom-700
#acacac
custom-800
#a1a1a1
custom-900
#969696
custom-950
#8b8b8b
Learn more about customizing colors in Tailwind CSS