E52B50 Amaranth: Hex Color Code
Color-Conversion
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
#E52B50
#CC2647
#B2213E
#991D35
#7F182C
#661324
#4C0E1B
#330A12
#190509
#000000
Tints
#E52B50
#E84363
#EB5A77
#EE728A
#F1899E
#F3A1B1
#F6B8C5
#F9D0D8
#FCE7EC
#FFFFFF
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
#E52A4C
#2AE5C2
Color Split Complementary
#E52A4C
#2AE565
Color Triadic
#E52A4C
#4CE52A
#2A4CE5
Color Analogous
#E52A4C
#E5652A
#E5C22A
Color Monochromatic
#E52A4C
#E84160
#EA5974
#ED7188
#F0889C
#F3A0AF
#F6B8C3
#F9D0D7
#FCE7EB
Color Preview
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>