50#ffffff
100#eeecf4
200#ddd9ea
300#ccc6df
400#bcb4d4
500#aba2ca
600#9b90bf
700#8a7eb5
800#7a6daa
900#6a5da0
950#594d95
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: '#eeecf4',
200: '#ddd9ea',
300: '#ccc6df',
400: '#bcb4d4',
500: '#aba2ca',
600: '#9b90bf',
700: '#8a7eb5',
800: '#7a6daa',
900: '#6a5da0',
950: '#594d95',
},
},
},
},
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: #eeecf4;
--color-custom-200: #ddd9ea;
--color-custom-300: #ccc6df;
--color-custom-400: #bcb4d4;
--color-custom-500: #aba2ca;
--color-custom-600: #9b90bf;
--color-custom-700: #8a7eb5;
--color-custom-800: #7a6daa;
--color-custom-900: #6a5da0;
--color-custom-950: #594d95;
}Individual Color Values
custom-50
#ffffff
custom-100
#eeecf4
custom-200
#ddd9ea
custom-300
#ccc6df
custom-400
#bcb4d4
custom-500
#aba2ca
custom-600
#9b90bf
custom-700
#8a7eb5
custom-800
#7a6daa
custom-900
#6a5da0
custom-950
#594d95
Learn more about customizing colors in Tailwind CSS