50#ffffff
100#f0f6f6
200#e2eded
300#d3e4e4
400#c5dbdc
500#b7d2d3
600#a8c9ca
700#9ac1c2
800#8cb8b9
900#7dafb1
950#6ea7a8
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: '#f0f6f6',
200: '#e2eded',
300: '#d3e4e4',
400: '#c5dbdc',
500: '#b7d2d3',
600: '#a8c9ca',
700: '#9ac1c2',
800: '#8cb8b9',
900: '#7dafb1',
950: '#6ea7a8',
},
},
},
},
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: #f0f6f6;
--color-custom-200: #e2eded;
--color-custom-300: #d3e4e4;
--color-custom-400: #c5dbdc;
--color-custom-500: #b7d2d3;
--color-custom-600: #a8c9ca;
--color-custom-700: #9ac1c2;
--color-custom-800: #8cb8b9;
--color-custom-900: #7dafb1;
--color-custom-950: #6ea7a8;
}Individual Color Values
custom-50
#ffffff
custom-100
#f0f6f6
custom-200
#e2eded
custom-300
#d3e4e4
custom-400
#c5dbdc
custom-500
#b7d2d3
custom-600
#a8c9ca
custom-700
#9ac1c2
custom-800
#8cb8b9
custom-900
#7dafb1
custom-950
#6ea7a8
Learn more about customizing colors in Tailwind CSS