50#ffffff
100#f0f9ff
200#e1f3ff
300#d2edff
400#c2e8ff
500#b2e2ff
600#a1dcff
700#8ed6ff
800#7ad0ff
900#63cbff
950#45c5ff
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: '#f0f9ff',
200: '#e1f3ff',
300: '#d2edff',
400: '#c2e8ff',
500: '#b2e2ff',
600: '#a1dcff',
700: '#8ed6ff',
800: '#7ad0ff',
900: '#63cbff',
950: '#45c5ff',
},
},
},
},
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: #f0f9ff;
--color-custom-200: #e1f3ff;
--color-custom-300: #d2edff;
--color-custom-400: #c2e8ff;
--color-custom-500: #b2e2ff;
--color-custom-600: #a1dcff;
--color-custom-700: #8ed6ff;
--color-custom-800: #7ad0ff;
--color-custom-900: #63cbff;
--color-custom-950: #45c5ff;
}Individual Color Values
custom-50
#ffffff
custom-100
#f0f9ff
custom-200
#e1f3ff
custom-300
#d2edff
custom-400
#c2e8ff
custom-500
#b2e2ff
custom-600
#a1dcff
custom-700
#8ed6ff
custom-800
#7ad0ff
custom-900
#63cbff
custom-950
#45c5ff
Learn more about customizing colors in Tailwind CSS