50#ffffff
100#f1fbfa
200#e3f7f6
300#d5f3f1
400#c6efec
500#b7ebe7
600#a8e7e3
700#98e2de
800#87deda
900#75dad5
950#60d5d1
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: '#f1fbfa',
200: '#e3f7f6',
300: '#d5f3f1',
400: '#c6efec',
500: '#b7ebe7',
600: '#a8e7e3',
700: '#98e2de',
800: '#87deda',
900: '#75dad5',
950: '#60d5d1',
},
},
},
},
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: #f1fbfa;
--color-custom-200: #e3f7f6;
--color-custom-300: #d5f3f1;
--color-custom-400: #c6efec;
--color-custom-500: #b7ebe7;
--color-custom-600: #a8e7e3;
--color-custom-700: #98e2de;
--color-custom-800: #87deda;
--color-custom-900: #75dad5;
--color-custom-950: #60d5d1;
}Individual Color Values
custom-50
#ffffff
custom-100
#f1fbfa
custom-200
#e3f7f6
custom-300
#d5f3f1
custom-400
#c6efec
custom-500
#b7ebe7
custom-600
#a8e7e3
custom-700
#98e2de
custom-800
#87deda
custom-900
#75dad5
custom-950
#60d5d1
Learn more about customizing colors in Tailwind CSS