50#ffffff
100#f1f3ff
200#e2e7fe
300#d3dbfe
400#c4cffd
500#b4c4fc
600#a4b8fb
700#94adfb
800#82a2fa
900#6e97f8
950#588cf7
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: '#f1f3ff',
200: '#e2e7fe',
300: '#d3dbfe',
400: '#c4cffd',
500: '#b4c4fc',
600: '#a4b8fb',
700: '#94adfb',
800: '#82a2fa',
900: '#6e97f8',
950: '#588cf7',
},
},
},
},
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: #f1f3ff;
--color-custom-200: #e2e7fe;
--color-custom-300: #d3dbfe;
--color-custom-400: #c4cffd;
--color-custom-500: #b4c4fc;
--color-custom-600: #a4b8fb;
--color-custom-700: #94adfb;
--color-custom-800: #82a2fa;
--color-custom-900: #6e97f8;
--color-custom-950: #588cf7;
}Individual Color Values
custom-50
#ffffff
custom-100
#f1f3ff
custom-200
#e2e7fe
custom-300
#d3dbfe
custom-400
#c4cffd
custom-500
#b4c4fc
custom-600
#a4b8fb
custom-700
#94adfb
custom-800
#82a2fa
custom-900
#6e97f8
custom-950
#588cf7
Learn more about customizing colors in Tailwind CSS