50#ffffff
100#fefeff
200#fefeff
300#fdfdff
400#fcfcff
500#fcfcff
600#fbfbff
700#fbfbff
800#fafaff
900#f9f9ff
950#f9f9ff
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: '#fefeff',
300: '#fdfdff',
400: '#fcfcff',
500: '#fcfcff',
600: '#fbfbff',
700: '#fbfbff',
800: '#fafaff',
900: '#f9f9ff',
950: '#f9f9ff',
},
},
},
},
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: #fefeff;
--color-custom-300: #fdfdff;
--color-custom-400: #fcfcff;
--color-custom-500: #fcfcff;
--color-custom-600: #fbfbff;
--color-custom-700: #fbfbff;
--color-custom-800: #fafaff;
--color-custom-900: #f9f9ff;
--color-custom-950: #f9f9ff;
}Individual Color Values
custom-50
#ffffff
custom-100
#fefeff
custom-200
#fefeff
custom-300
#fdfdff
custom-400
#fcfcff
custom-500
#fcfcff
custom-600
#fbfbff
custom-700
#fbfbff
custom-800
#fafaff
custom-900
#f9f9ff
custom-950
#f9f9ff
Learn more about customizing colors in Tailwind CSS