50#ffffff
100#ffeee7
200#ffddd0
300#ffccb8
400#ffbaa2
500#ffa88b
600#ff9675
700#ff8360
800#ff6e4a
900#ff5835
950#ff3b1e
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: '#ffeee7',
200: '#ffddd0',
300: '#ffccb8',
400: '#ffbaa2',
500: '#ffa88b',
600: '#ff9675',
700: '#ff8360',
800: '#ff6e4a',
900: '#ff5835',
950: '#ff3b1e',
},
},
},
},
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: #ffeee7;
--color-custom-200: #ffddd0;
--color-custom-300: #ffccb8;
--color-custom-400: #ffbaa2;
--color-custom-500: #ffa88b;
--color-custom-600: #ff9675;
--color-custom-700: #ff8360;
--color-custom-800: #ff6e4a;
--color-custom-900: #ff5835;
--color-custom-950: #ff3b1e;
}Individual Color Values
custom-50
#ffffff
custom-100
#ffeee7
custom-200
#ffddd0
custom-300
#ffccb8
custom-400
#ffbaa2
custom-500
#ffa88b
custom-600
#ff9675
custom-700
#ff8360
custom-800
#ff6e4a
custom-900
#ff5835
custom-950
#ff3b1e
Learn more about customizing colors in Tailwind CSS