50#ffffff
100#ebf3f3
200#d7e7e7
300#c4dcdb
400#b0d0cf
500#9dc4c3
600#89b9b8
700#75adac
800#60a2a1
900#4a9696
950#308b8b
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: '#ebf3f3',
200: '#d7e7e7',
300: '#c4dcdb',
400: '#b0d0cf',
500: '#9dc4c3',
600: '#89b9b8',
700: '#75adac',
800: '#60a2a1',
900: '#4a9696',
950: '#308b8b',
},
},
},
},
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: #ebf3f3;
--color-custom-200: #d7e7e7;
--color-custom-300: #c4dcdb;
--color-custom-400: #b0d0cf;
--color-custom-500: #9dc4c3;
--color-custom-600: #89b9b8;
--color-custom-700: #75adac;
--color-custom-800: #60a2a1;
--color-custom-900: #4a9696;
--color-custom-950: #308b8b;
}Individual Color Values
custom-50
#ffffff
custom-100
#ebf3f3
custom-200
#d7e7e7
custom-300
#c4dcdb
custom-400
#b0d0cf
custom-500
#9dc4c3
custom-600
#89b9b8
custom-700
#75adac
custom-800
#60a2a1
custom-900
#4a9696
custom-950
#308b8b
Learn more about customizing colors in Tailwind CSS