HEX: #E5D3AA
RGB: (229,211,170)
#E5D3AA contains red, green and blue colors in about the same proportion. Web safe color of #E5D3AA is #CCCC99 (or #CC9).
#E5D3AA color RGB value is (229,211,170).
RGB: (229,211,170) (90%,83%,67%)
R 229 of 255 = 90%
G 211 of 255 = 83%
B 170 of 255 = 67%
R + G + B ~ 80%. #E5D3AA is quite light color.
R + G + B =
229 + 211 + 170 = 610 (100%)
R 229 of 610 ~ 37.54%
G 211 of 610 ~ 34.59%
B 170 of 610 ~ 27.87%
#E5D3AA color CMYK value is (0,8,26,10).
CMYK: (0,8,26,10) C0M8Y26K10 (0%,8%,26%,10%) (0.00/0.08/0.26/0.10)
E5 | D3 | AA | |
---|---|---|---|
RGB | 229 | 211 | 170 |
HSL | 42° | 53.15% | 78.24% |
HSB/HSV | 42° | 25.76% | 89.80% |
CMYK | 0.00% | 7.86% | 25.76% |
10.20% |
HEX | E5 | D3 | AA |
Decimal | 229 | 211 | 170 |
Binary | 11100101 | 11010011 | 10101010 |
Octal | 345 | 323 | 252 |
Examples of css and html codes for elements with #E5D3AA color. Also use rgb(229,211,170) instead hex code.
.myTextColor { color: #E5D3AA; }
<p style="color:#E5D3AA">This sample text font color is #E5D3AA.</p>
This text font color is #E5D3AA.
.myBgColor { background-color: #E5D3AA; }
<div style="background-color:#E5D3AA">Inner text</div>
This div background color is #E5D3AA.
.myBorderColor { border: 1px solid #E5D3AA; }
<div style="border:3px solid #E5D3AA">Div</div>
This div border color is #E5D3AA.
.myOpacity80 { color: #E5D3AA; opacity: 0.8; }
<p style="color:#E5D3AA;opacity:0.8;">80%</p>
Text with #E5D3AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5D3AA;}
<p style="text-shadow: 3px 3px 1px #E5D3AA">Text here.</p>
This text has shadow with #E5D3AA color.
.textShadow {text-shadow: 3px 3px 1px #E5D3AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5D3AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5D3AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5D3AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5D3AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5D3AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5D3AA; -webkit-box-shadow: 1px 1px 3px 2px #E5D3AA; box-shadow: 1px 1px 3px 2px #E5D3AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5D3AA; -webkit-box-shadow: 1px 1px 3px 2px #E5D3AA; box-shadow:1px 1px 3px 2px #E5D3AA;">
Div content here</div>
This text has color #E5D3AA on black background.
This text has color #E5D3AA on white background.
This text has black color on #E5D3AA background.
This text has white color on #E5D3AA background.