HEX: #E4059D
RGB: (228,5,157)
#E4059D contains mainly red color. Web safe color of #E4059D is #CC0099 (or #C09).
#E4059D color RGB value is (228,5,157).
RGB: (228,5,157) (89%,2%,62%)
R 228 of 255 = 89%
G 5 of 255 = 2%
B 157 of 255 = 62%
R + G + B ~ 51%. #E4059D is middle color (not dark and not light).
R + G + B =
228 + 5 + 157 = 390 (100%)
R 228 of 390 ~ 58.46%
G 5 of 390 ~ 1.28%
B 157 of 390 ~ 40.26%
#E4059D color CMYK value is (0,98,31,11).
CMYK: (0,98,31,11) C0M98Y31K11 (0%,98%,31%,11%) (0.00/0.98/0.31/0.11)
E4 | 05 | 9D | |
---|---|---|---|
RGB | 228 | 5 | 157 |
HSL | 319° | 95.71% | 45.69% |
HSB/HSV | 319° | 97.81% | 89.41% |
CMYK | 0.00% | 97.81% | 31.14% |
10.59% |
HEX | E4 | 05 | 9D |
Decimal | 228 | 5 | 157 |
Binary | 11100100 | 101 | 10011101 |
Octal | 344 | 5 | 235 |
Examples of css and html codes for elements with #E4059D color. Also use rgb(228,5,157) instead hex code.
.myTextColor { color: #E4059D; }
<p style="color:#E4059D">This sample text font color is #E4059D.</p>
This text font color is #E4059D.
.myBgColor { background-color: #E4059D; }
<div style="background-color:#E4059D">Inner text</div>
This div background color is #E4059D.
.myBorderColor { border: 1px solid #E4059D; }
<div style="border:3px solid #E4059D">Div</div>
This div border color is #E4059D.
.myOpacity80 { color: #E4059D; opacity: 0.8; }
<p style="color:#E4059D;opacity:0.8;">80%</p>
Text with #E4059D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4059D;}
<p style="text-shadow: 3px 3px 1px #E4059D">Text here.</p>
This text has shadow with #E4059D color.
.textShadow {text-shadow: 3px 3px 1px #E4059D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4059D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4059D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4059D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4059D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4059D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4059D; -webkit-box-shadow: 1px 1px 3px 2px #E4059D; box-shadow: 1px 1px 3px 2px #E4059D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4059D; -webkit-box-shadow: 1px 1px 3px 2px #E4059D; box-shadow:1px 1px 3px 2px #E4059D;">
Div content here</div>
This text has color #E4059D on black background.
This text has color #E4059D on white background.
This text has black color on #E4059D background.
This text has white color on #E4059D background.