Back to #008000

Tailwind CSS Palette

Custom color palette generated from #008000

50#ffffff
100#ebf3e8
200#d7e8d2
300#c4dcbc
400#b0d1a6
500#9cc590
600#88ba7b
700#74ae66
800#5fa351
900#49973b
950#2f8c23

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: '#ebf3e8',
  200: '#d7e8d2',
  300: '#c4dcbc',
  400: '#b0d1a6',
  500: '#9cc590',
  600: '#88ba7b',
  700: '#74ae66',
  800: '#5fa351',
  900: '#49973b',
  950: '#2f8c23',
},
      },
    },
  },
  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: #ebf3e8;
--color-custom-200: #d7e8d2;
--color-custom-300: #c4dcbc;
--color-custom-400: #b0d1a6;
--color-custom-500: #9cc590;
--color-custom-600: #88ba7b;
--color-custom-700: #74ae66;
--color-custom-800: #5fa351;
--color-custom-900: #49973b;
--color-custom-950: #2f8c23;
}

Individual Color Values

custom-50
#ffffff
custom-100
#ebf3e8
custom-200
#d7e8d2
custom-300
#c4dcbc
custom-400
#b0d1a6
custom-500
#9cc590
custom-600
#88ba7b
custom-700
#74ae66
custom-800
#5fa351
custom-900
#49973b
custom-950
#2f8c23

Learn more about customizing colors in Tailwind CSS