50#ffffff
100#f8e9e5
200#f0d4cc
300#e8beb3
400#dfa99b
500#d59483
600#ca806c
700#bf6b56
800#b35640
900#a6402b
950#992817
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: '#f8e9e5',
200: '#f0d4cc',
300: '#e8beb3',
400: '#dfa99b',
500: '#d59483',
600: '#ca806c',
700: '#bf6b56',
800: '#b35640',
900: '#a6402b',
950: '#992817',
},
},
},
},
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: #f8e9e5;
--color-custom-200: #f0d4cc;
--color-custom-300: #e8beb3;
--color-custom-400: #dfa99b;
--color-custom-500: #d59483;
--color-custom-600: #ca806c;
--color-custom-700: #bf6b56;
--color-custom-800: #b35640;
--color-custom-900: #a6402b;
--color-custom-950: #992817;
}Individual Color Values
custom-50
#ffffff
custom-100
#f8e9e5
custom-200
#f0d4cc
custom-300
#e8beb3
custom-400
#dfa99b
custom-500
#d59483
custom-600
#ca806c
custom-700
#bf6b56
custom-800
#b35640
custom-900
#a6402b
custom-950
#992817
Learn more about customizing colors in Tailwind CSS