Back to #696969

Tailwind CSS Palette

Custom color palette generated from #696969

50#ffffff
100#f0f0f0
200#e2e2e2
300#d4d4d4
400#c6c6c6
500#b8b8b8
600#aaaaaa
700#9d9d9d
800#8f8f8f
900#828282
950#767676

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: '#f0f0f0',
  200: '#e2e2e2',
  300: '#d4d4d4',
  400: '#c6c6c6',
  500: '#b8b8b8',
  600: '#aaaaaa',
  700: '#9d9d9d',
  800: '#8f8f8f',
  900: '#828282',
  950: '#767676',
},
      },
    },
  },
  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: #f0f0f0;
--color-custom-200: #e2e2e2;
--color-custom-300: #d4d4d4;
--color-custom-400: #c6c6c6;
--color-custom-500: #b8b8b8;
--color-custom-600: #aaaaaa;
--color-custom-700: #9d9d9d;
--color-custom-800: #8f8f8f;
--color-custom-900: #828282;
--color-custom-950: #767676;
}

Individual Color Values

custom-50
#ffffff
custom-100
#f0f0f0
custom-200
#e2e2e2
custom-300
#d4d4d4
custom-400
#c6c6c6
custom-500
#b8b8b8
custom-600
#aaaaaa
custom-700
#9d9d9d
custom-800
#8f8f8f
custom-900
#828282
custom-950
#767676

Learn more about customizing colors in Tailwind CSS