50#ffffff
100#faf3e9
200#f5e8d4
300#f0ddbf
400#ead1aa
500#e4c696
600#debb81
700#d7b06d
800#d0a558
900#c89b43
950#c0902c
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: '#faf3e9',
200: '#f5e8d4',
300: '#f0ddbf',
400: '#ead1aa',
500: '#e4c696',
600: '#debb81',
700: '#d7b06d',
800: '#d0a558',
900: '#c89b43',
950: '#c0902c',
},
},
},
},
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: #faf3e9;
--color-custom-200: #f5e8d4;
--color-custom-300: #f0ddbf;
--color-custom-400: #ead1aa;
--color-custom-500: #e4c696;
--color-custom-600: #debb81;
--color-custom-700: #d7b06d;
--color-custom-800: #d0a558;
--color-custom-900: #c89b43;
--color-custom-950: #c0902c;
}Individual Color Values
custom-50
#ffffff
custom-100
#faf3e9
custom-200
#f5e8d4
custom-300
#f0ddbf
custom-400
#ead1aa
custom-500
#e4c696
custom-600
#debb81
custom-700
#d7b06d
custom-800
#d0a558
custom-900
#c89b43
custom-950
#c0902c
Learn more about customizing colors in Tailwind CSS