HEX: #E41D74
RGB: (228,29,116)
#E41D74 contains mainly red color. Web safe color of #E41D74 is #CC3366 (or #C36).
#E41D74 color RGB value is (228,29,116).
RGB: (228,29,116) (89%,11%,45%)
R 228 of 255 = 89%
G 29 of 255 = 11%
B 116 of 255 = 45%
R + G + B ~ 48%. #E41D74 is middle color (not dark and not light).
R + G + B =
228 + 29 + 116 = 373 (100%)
R 228 of 373 ~ 61.13%
G 29 of 373 ~ 7.77%
B 116 of 373 ~ 31.1%
#E41D74 color CMYK value is (0,87,49,11).
CMYK: (0,87,49,11) C0M87Y49K11 (0%,87%,49%,11%) (0.00/0.87/0.49/0.11)
E4 | 1D | 74 | |
---|---|---|---|
RGB | 228 | 29 | 116 |
HSL | 334° | 78.66% | 50.39% |
HSB/HSV | 334° | 87.28% | 89.41% |
CMYK | 0.00% | 87.28% | 49.12% |
10.59% |
HEX | E4 | 1D | 74 |
Decimal | 228 | 29 | 116 |
Binary | 11100100 | 11101 | 1110100 |
Octal | 344 | 35 | 164 |
Examples of css and html codes for elements with #E41D74 color. Also use rgb(228,29,116) instead hex code.
.myTextColor { color: #E41D74; }
<p style="color:#E41D74">This sample text font color is #E41D74.</p>
This text font color is #E41D74.
.myBgColor { background-color: #E41D74; }
<div style="background-color:#E41D74">Inner text</div>
This div background color is #E41D74.
.myBorderColor { border: 1px solid #E41D74; }
<div style="border:3px solid #E41D74">Div</div>
This div border color is #E41D74.
.myOpacity80 { color: #E41D74; opacity: 0.8; }
<p style="color:#E41D74;opacity:0.8;">80%</p>
Text with #E41D74 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E41D74;}
<p style="text-shadow: 3px 3px 1px #E41D74">Text here.</p>
This text has shadow with #E41D74 color.
.textShadow {text-shadow: 3px 3px 1px #E41D74, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E41D74, 5px 5px 20px red">Text here.</p>
This text has shadow with #E41D74 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E41D74, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E41D74, Direction=45, Strength=4)">Text</p>
This text has shadow with #E41D74 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E41D74; -webkit-box-shadow: 1px 1px 3px 2px #E41D74; box-shadow: 1px 1px 3px 2px #E41D74; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E41D74; -webkit-box-shadow: 1px 1px 3px 2px #E41D74; box-shadow:1px 1px 3px 2px #E41D74;">
Div content here</div>
This text has color #E41D74 on black background.
This text has color #E41D74 on white background.
This text has black color on #E41D74 background.
This text has white color on #E41D74 background.