Back to #9acd32

Tailwind CSS Palette

Custom color palette generated from #9acd32

50#ffffff
100#f7fbed
200#eef6db
300#e6f1ca
400#ddedb8
500#d4e8a6
600#cbe495
700#c2df83
800#b8db71
900#aed65e
950#a4d24a

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: '#f7fbed',
  200: '#eef6db',
  300: '#e6f1ca',
  400: '#ddedb8',
  500: '#d4e8a6',
  600: '#cbe495',
  700: '#c2df83',
  800: '#b8db71',
  900: '#aed65e',
  950: '#a4d24a',
},
      },
    },
  },
  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: #f7fbed;
--color-custom-200: #eef6db;
--color-custom-300: #e6f1ca;
--color-custom-400: #ddedb8;
--color-custom-500: #d4e8a6;
--color-custom-600: #cbe495;
--color-custom-700: #c2df83;
--color-custom-800: #b8db71;
--color-custom-900: #aed65e;
--color-custom-950: #a4d24a;
}

Individual Color Values

custom-50
#ffffff
custom-100
#f7fbed
custom-200
#eef6db
custom-300
#e6f1ca
custom-400
#ddedb8
custom-500
#d4e8a6
custom-600
#cbe495
custom-700
#c2df83
custom-800
#b8db71
custom-900
#aed65e
custom-950
#a4d24a

Learn more about customizing colors in Tailwind CSS