HEX: #E5DABC
RGB: (229,218,188)
#E5DABC contains red, green and blue colors in about the same proportion. Web safe color of #E5DABC is #CCCCCC (or #CCC).
#E5DABC color RGB value is (229,218,188).
RGB: (229,218,188) (90%,85%,74%)
R 229 of 255 = 90%
G 218 of 255 = 85%
B 188 of 255 = 74%
R + G + B ~ 83%. #E5DABC is quite light color.
R + G + B =
229 + 218 + 188 = 635 (100%)
R 229 of 635 ~ 36.06%
G 218 of 635 ~ 34.33%
B 188 of 635 ~ 29.61%
#E5DABC color CMYK value is (0,5,18,10).
CMYK: (0,5,18,10) C0M5Y18K10 (0%,5%,18%,10%) (0.00/0.05/0.18/0.10)
E5 | DA | BC | |
---|---|---|---|
RGB | 229 | 218 | 188 |
HSL | 44° | 44.09% | 81.76% |
HSB/HSV | 44° | 17.90% | 89.80% |
CMYK | 0.00% | 4.80% | 17.90% |
10.20% |
HEX | E5 | DA | BC |
Decimal | 229 | 218 | 188 |
Binary | 11100101 | 11011010 | 10111100 |
Octal | 345 | 332 | 274 |
Examples of css and html codes for elements with #E5DABC color. Also use rgb(229,218,188) instead hex code.
.myTextColor { color: #E5DABC; }
<p style="color:#E5DABC">This sample text font color is #E5DABC.</p>
This text font color is #E5DABC.
.myBgColor { background-color: #E5DABC; }
<div style="background-color:#E5DABC">Inner text</div>
This div background color is #E5DABC.
.myBorderColor { border: 1px solid #E5DABC; }
<div style="border:3px solid #E5DABC">Div</div>
This div border color is #E5DABC.
.myOpacity80 { color: #E5DABC; opacity: 0.8; }
<p style="color:#E5DABC;opacity:0.8;">80%</p>
Text with #E5DABC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5DABC;}
<p style="text-shadow: 3px 3px 1px #E5DABC">Text here.</p>
This text has shadow with #E5DABC color.
.textShadow {text-shadow: 3px 3px 1px #E5DABC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5DABC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5DABC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5DABC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5DABC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5DABC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5DABC; -webkit-box-shadow: 1px 1px 3px 2px #E5DABC; box-shadow: 1px 1px 3px 2px #E5DABC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5DABC; -webkit-box-shadow: 1px 1px 3px 2px #E5DABC; box-shadow:1px 1px 3px 2px #E5DABC;">
Div content here</div>
This text has color #E5DABC on black background.
This text has color #E5DABC on white background.
This text has black color on #E5DABC background.
This text has white color on #E5DABC background.