50#ffffff
100#f2e9ff
200#e4d3ff
300#d6beff
400#c7a9ff
500#b794ff
600#a67fff
700#946aff
800#7f55ff
900#673fff
950#4826ff
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: '#f2e9ff',
200: '#e4d3ff',
300: '#d6beff',
400: '#c7a9ff',
500: '#b794ff',
600: '#a67fff',
700: '#946aff',
800: '#7f55ff',
900: '#673fff',
950: '#4826ff',
},
},
},
},
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: #f2e9ff;
--color-custom-200: #e4d3ff;
--color-custom-300: #d6beff;
--color-custom-400: #c7a9ff;
--color-custom-500: #b794ff;
--color-custom-600: #a67fff;
--color-custom-700: #946aff;
--color-custom-800: #7f55ff;
--color-custom-900: #673fff;
--color-custom-950: #4826ff;
}Individual Color Values
custom-50
#ffffff
custom-100
#f2e9ff
custom-200
#e4d3ff
custom-300
#d6beff
custom-400
#c7a9ff
custom-500
#b794ff
custom-600
#a67fff
custom-700
#946aff
custom-800
#7f55ff
custom-900
#673fff
custom-950
#4826ff
Learn more about customizing colors in Tailwind CSS