HEX: #E47568
RGB: (228,117,104)
#E47568 contains mainly red color. Web safe color of #E47568 is #CC6666 (or #C66).
#E47568 color RGB value is (228,117,104).
RGB: (228,117,104) (89%,46%,41%)
R 228 of 255 = 89%
G 117 of 255 = 46%
B 104 of 255 = 41%
R + G + B ~ 59%. #E47568 is middle color (not dark and not light).
R + G + B =
228 + 117 + 104 = 449 (100%)
R 228 of 449 ~ 50.78%
G 117 of 449 ~ 26.06%
B 104 of 449 ~ 23.16%
#E47568 color CMYK value is (0,49,54,11).
CMYK: (0,49,54,11) C0M49Y54K11 (0%,49%,54%,11%) (0.00/0.49/0.54/0.11)
E4 | 75 | 68 | |
---|---|---|---|
RGB | 228 | 117 | 104 |
HSL | 6° | 69.66% | 65.10% |
HSB/HSV | 6° | 54.39% | 89.41% |
CMYK | 0.00% | 48.68% | 54.39% |
10.59% |
HEX | E4 | 75 | 68 |
Decimal | 228 | 117 | 104 |
Binary | 11100100 | 1110101 | 1101000 |
Octal | 344 | 165 | 150 |
Examples of css and html codes for elements with #E47568 color. Also use rgb(228,117,104) instead hex code.
.myTextColor { color: #E47568; }
<p style="color:#E47568">This sample text font color is #E47568.</p>
This text font color is #E47568.
.myBgColor { background-color: #E47568; }
<div style="background-color:#E47568">Inner text</div>
This div background color is #E47568.
.myBorderColor { border: 1px solid #E47568; }
<div style="border:3px solid #E47568">Div</div>
This div border color is #E47568.
.myOpacity80 { color: #E47568; opacity: 0.8; }
<p style="color:#E47568;opacity:0.8;">80%</p>
Text with #E47568 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E47568;}
<p style="text-shadow: 3px 3px 1px #E47568">Text here.</p>
This text has shadow with #E47568 color.
.textShadow {text-shadow: 3px 3px 1px #E47568, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E47568, 5px 5px 20px red">Text here.</p>
This text has shadow with #E47568 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E47568, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E47568, Direction=45, Strength=4)">Text</p>
This text has shadow with #E47568 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E47568; -webkit-box-shadow: 1px 1px 3px 2px #E47568; box-shadow: 1px 1px 3px 2px #E47568; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E47568; -webkit-box-shadow: 1px 1px 3px 2px #E47568; box-shadow:1px 1px 3px 2px #E47568;">
Div content here</div>
This text has color #E47568 on black background.
This text has color #E47568 on white background.
This text has black color on #E47568 background.
This text has white color on #E47568 background.