50#ffffff
100#fefeff
200#fcfeff
300#fbfdff
400#fafcff
500#f8fcff
600#f7fbff
700#f5fbff
800#f4faff
900#f3f9ff
950#f1f9ff
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: '#fefeff',
200: '#fcfeff',
300: '#fbfdff',
400: '#fafcff',
500: '#f8fcff',
600: '#f7fbff',
700: '#f5fbff',
800: '#f4faff',
900: '#f3f9ff',
950: '#f1f9ff',
},
},
},
},
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: #fefeff;
--color-custom-200: #fcfeff;
--color-custom-300: #fbfdff;
--color-custom-400: #fafcff;
--color-custom-500: #f8fcff;
--color-custom-600: #f7fbff;
--color-custom-700: #f5fbff;
--color-custom-800: #f4faff;
--color-custom-900: #f3f9ff;
--color-custom-950: #f1f9ff;
}Individual Color Values
custom-50
#ffffff
custom-100
#fefeff
custom-200
#fcfeff
custom-300
#fbfdff
custom-400
#fafcff
custom-500
#f8fcff
custom-600
#f7fbff
custom-700
#f5fbff
custom-800
#f4faff
custom-900
#f3f9ff
custom-950
#f1f9ff
Learn more about customizing colors in Tailwind CSS