HEX: #E4CC87
RGB: (228,204,135)
#E4CC87 contains mainly red and green colors. Web safe color of #E4CC87 is #CCCC99 (or #CC9).
#E4CC87 color RGB value is (228,204,135).
RGB: (228,204,135) (89%,80%,53%)
R 228 of 255 = 89%
G 204 of 255 = 80%
B 135 of 255 = 53%
R + G + B ~ 74%. #E4CC87 is quite light color.
R + G + B =
228 + 204 + 135 = 567 (100%)
R 228 of 567 ~ 40.21%
G 204 of 567 ~ 35.98%
B 135 of 567 ~ 23.81%
#E4CC87 color CMYK value is (0,11,41,11).
CMYK: (0,11,41,11) C0M11Y41K11 (0%,11%,41%,11%) (0.00/0.11/0.41/0.11)
E4 | CC | 87 | |
---|---|---|---|
RGB | 228 | 204 | 135 |
HSL | 45° | 63.27% | 71.18% |
HSB/HSV | 45° | 40.79% | 89.41% |
CMYK | 0.00% | 10.53% | 40.79% |
10.59% |
HEX | E4 | CC | 87 |
Decimal | 228 | 204 | 135 |
Binary | 11100100 | 11001100 | 10000111 |
Octal | 344 | 314 | 207 |
Examples of css and html codes for elements with #E4CC87 color. Also use rgb(228,204,135) instead hex code.
.myTextColor { color: #E4CC87; }
<p style="color:#E4CC87">This sample text font color is #E4CC87.</p>
This text font color is #E4CC87.
.myBgColor { background-color: #E4CC87; }
<div style="background-color:#E4CC87">Inner text</div>
This div background color is #E4CC87.
.myBorderColor { border: 1px solid #E4CC87; }
<div style="border:3px solid #E4CC87">Div</div>
This div border color is #E4CC87.
.myOpacity80 { color: #E4CC87; opacity: 0.8; }
<p style="color:#E4CC87;opacity:0.8;">80%</p>
Text with #E4CC87 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4CC87;}
<p style="text-shadow: 3px 3px 1px #E4CC87">Text here.</p>
This text has shadow with #E4CC87 color.
.textShadow {text-shadow: 3px 3px 1px #E4CC87, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4CC87, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4CC87 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4CC87, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4CC87, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4CC87 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4CC87; -webkit-box-shadow: 1px 1px 3px 2px #E4CC87; box-shadow: 1px 1px 3px 2px #E4CC87; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4CC87; -webkit-box-shadow: 1px 1px 3px 2px #E4CC87; box-shadow:1px 1px 3px 2px #E4CC87;">
Div content here</div>
This text has color #E4CC87 on black background.
This text has color #E4CC87 on white background.
This text has black color on #E4CC87 background.
This text has white color on #E4CC87 background.