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