HEX: #E5CCAE
RGB: (229,204,174)
#E5CCAE contains red, green and blue colors in about the same proportion. Web safe color of #E5CCAE is #CCCC99 (or #CC9).
#E5CCAE color RGB value is (229,204,174).
RGB: (229,204,174) (90%,80%,68%)
R 229 of 255 = 90%
G 204 of 255 = 80%
B 174 of 255 = 68%
R + G + B ~ 79%. #E5CCAE is quite light color.
R + G + B =
229 + 204 + 174 = 607 (100%)
R 229 of 607 ~ 37.73%
G 204 of 607 ~ 33.61%
B 174 of 607 ~ 28.67%
#E5CCAE color CMYK value is (0,11,24,10).
CMYK: (0,11,24,10) C0M11Y24K10 (0%,11%,24%,10%) (0.00/0.11/0.24/0.10)
E5 | CC | AE | |
---|---|---|---|
RGB | 229 | 204 | 174 |
HSL | 33° | 51.40% | 79.02% |
HSB/HSV | 33° | 24.02% | 89.80% |
CMYK | 0.00% | 10.92% | 24.02% |
10.20% |
HEX | E5 | CC | AE |
Decimal | 229 | 204 | 174 |
Binary | 11100101 | 11001100 | 10101110 |
Octal | 345 | 314 | 256 |
Examples of css and html codes for elements with #E5CCAE color. Also use rgb(229,204,174) instead hex code.
.myTextColor { color: #E5CCAE; }
<p style="color:#E5CCAE">This sample text font color is #E5CCAE.</p>
This text font color is #E5CCAE.
.myBgColor { background-color: #E5CCAE; }
<div style="background-color:#E5CCAE">Inner text</div>
This div background color is #E5CCAE.
.myBorderColor { border: 1px solid #E5CCAE; }
<div style="border:3px solid #E5CCAE">Div</div>
This div border color is #E5CCAE.
.myOpacity80 { color: #E5CCAE; opacity: 0.8; }
<p style="color:#E5CCAE;opacity:0.8;">80%</p>
Text with #E5CCAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5CCAE;}
<p style="text-shadow: 3px 3px 1px #E5CCAE">Text here.</p>
This text has shadow with #E5CCAE color.
.textShadow {text-shadow: 3px 3px 1px #E5CCAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5CCAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5CCAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5CCAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5CCAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5CCAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5CCAE; -webkit-box-shadow: 1px 1px 3px 2px #E5CCAE; box-shadow: 1px 1px 3px 2px #E5CCAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5CCAE; -webkit-box-shadow: 1px 1px 3px 2px #E5CCAE; box-shadow:1px 1px 3px 2px #E5CCAE;">
Div content here</div>
This text has color #E5CCAE on black background.
This text has color #E5CCAE on white background.
This text has black color on #E5CCAE background.
This text has white color on #E5CCAE background.