Back to #b22222

Tailwind CSS Palette

Custom color palette generated from #b22222

50#ffffff
100#fcece9
200#f7d9d3
300#f2c6bd
400#edb3a8
500#e6a093
600#df8d7f
700#d77a6b
800#cf6758
900#c65345
950#bc3d33

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: '#fcece9',
  200: '#f7d9d3',
  300: '#f2c6bd',
  400: '#edb3a8',
  500: '#e6a093',
  600: '#df8d7f',
  700: '#d77a6b',
  800: '#cf6758',
  900: '#c65345',
  950: '#bc3d33',
},
      },
    },
  },
  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: #fcece9;
--color-custom-200: #f7d9d3;
--color-custom-300: #f2c6bd;
--color-custom-400: #edb3a8;
--color-custom-500: #e6a093;
--color-custom-600: #df8d7f;
--color-custom-700: #d77a6b;
--color-custom-800: #cf6758;
--color-custom-900: #c65345;
--color-custom-950: #bc3d33;
}

Individual Color Values

custom-50
#ffffff
custom-100
#fcece9
custom-200
#f7d9d3
custom-300
#f2c6bd
custom-400
#edb3a8
custom-500
#e6a093
custom-600
#df8d7f
custom-700
#d77a6b
custom-800
#cf6758
custom-900
#c65345
custom-950
#bc3d33

Learn more about customizing colors in Tailwind CSS