E52B50 Amaranth: Hex Color Code

#E52B50
( 229, 43, 80 )

Color-Conversion

HEX : #E52B50
RGB : 229, 43, 80
HSL : -11, 78, 53
XYZ : 34, 18, 9
CMYK : 0, 81, 65 10
LUV : 49, 137, 14
LAB : 49, 73, 26
HWB : -11, 16, 10

The hexadecimal value of the color #e52b50 is made up of the RGB values of (229 ,43 ,80) and is commonly known as Amaranth. The red value is 229, the green value is 43, and the blue value is 80. This color has a hue of -11, saturation of 78, and a lightness value of53 when represented in HSL. In four color CMYK, the color has a process value of 0, 81, 65, and 10. The web safe color of #e52b50 is #e52a4c. Overall, the color #e52b50 is predominantly brown.

Variations

This section aims to generate accurate tints (created by adding pure white) and shades (created by adding pure black) of the chosen color in increments of 10%.

Shaders

Tints

Color Combinations

Different color harmonies can evoke different moods, and it can be helpful to use them as a starting point for brainstorming color combinations. By exploring different color harmonies, you can identify colors that work well together and create a cohesive color palette for your project.

Color Complementary

Color Split Complementary

Color Triadic

Color Analogous

Color Monochromatic

Color Preview

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Developer

Tailwind

//tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'brown': '#e52b50',
      },
    }
  },
}
//tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        'brown': {
            100: '#f0889c',
            200: '#ed7188',
            300: '#ea5974',
            400: '#e84160',
            500: '#e52a4c',
            600: '#e52b50',
            700: '#cc2647',
            800: '#b2213e',
            900: '#991d35',
          },
      },
    }
  },
}

CSS

//global.css
.mybgcolor {background-color:#e52b50; } 
.myforecolor {color:#e52b50; }
.mybordercolor {border:3px solid #e52b50;}
//index.html
<p style="color:#e52b50;">Text here</p>
//index.html
<div style="background-color:#e52b50;">content here</div>
//index.html
<div style="border: 2px solid #e52b50;">content here</div>
//index.html
<p style="text-shadow: 4px 4px 2px #e52b50">Text here</p>
//index.html
<div style="-moz-box-shadow: 1px 1px 3px 2px #e52b50;
  -webkit-box-shadow: 1px 1px 3px 2px #e52b50;
  box-shadow:         1px 1px 3px 2px #e52b50;">
Content here</div>