HEX: #E019B6
RGB: (224,25,182)
#E019B6 contains mainly red and blue colors. Web safe color of #E019B6 is #CC00CC (or #C0C).
#E019B6 color RGB value is (224,25,182).
RGB: (224,25,182) (88%,10%,71%)
R 224 of 255 = 88%
G 25 of 255 = 10%
B 182 of 255 = 71%
R + G + B ~ 56%. #E019B6 is middle color (not dark and not light).
R + G + B =
224 + 25 + 182 = 431 (100%)
R 224 of 431 ~ 51.97%
G 25 of 431 ~ 5.8%
B 182 of 431 ~ 42.23%
#E019B6 color CMYK value is (0,89,19,12).
CMYK: (0,89,19,12) C0M89Y19K12 (0%,89%,19%,12%) (0.00/0.89/0.19/0.12)
E0 | 19 | B6 | |
---|---|---|---|
RGB | 224 | 25 | 182 |
HSL | 313° | 79.92% | 48.82% |
HSB/HSV | 313° | 88.84% | 87.84% |
CMYK | 0.00% | 88.84% | 18.75% |
12.16% |
HEX | E0 | 19 | B6 |
Decimal | 224 | 25 | 182 |
Binary | 11100000 | 11001 | 10110110 |
Octal | 340 | 31 | 266 |
Examples of css and html codes for elements with #E019B6 color. Also use rgb(224,25,182) instead hex code.
.myTextColor { color: #E019B6; }
<p style="color:#E019B6">This sample text font color is #E019B6.</p>
This text font color is #E019B6.
.myBgColor { background-color: #E019B6; }
<div style="background-color:#E019B6">Inner text</div>
This div background color is #E019B6.
.myBorderColor { border: 1px solid #E019B6; }
<div style="border:3px solid #E019B6">Div</div>
This div border color is #E019B6.
.myOpacity80 { color: #E019B6; opacity: 0.8; }
<p style="color:#E019B6;opacity:0.8;">80%</p>
Text with #E019B6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E019B6;}
<p style="text-shadow: 3px 3px 1px #E019B6">Text here.</p>
This text has shadow with #E019B6 color.
.textShadow {text-shadow: 3px 3px 1px #E019B6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E019B6, 5px 5px 20px red">Text here.</p>
This text has shadow with #E019B6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E019B6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E019B6, Direction=45, Strength=4)">Text</p>
This text has shadow with #E019B6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E019B6; -webkit-box-shadow: 1px 1px 3px 2px #E019B6; box-shadow: 1px 1px 3px 2px #E019B6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E019B6; -webkit-box-shadow: 1px 1px 3px 2px #E019B6; box-shadow:1px 1px 3px 2px #E019B6;">
Div content here</div>
This text has color #E019B6 on black background.
This text has color #E019B6 on white background.
This text has black color on #E019B6 background.
This text has white color on #E019B6 background.