HEX: #E6D9AC
RGB: (230,217,172)
#E6D9AC contains red, green and blue colors in about the same proportion. Web safe color of #E6D9AC is #CCCC99 (or #CC9).
#E6D9AC color RGB value is (230,217,172).
RGB: (230,217,172) (90%,85%,67%)
R 230 of 255 = 90%
G 217 of 255 = 85%
B 172 of 255 = 67%
R + G + B ~ 81%. #E6D9AC is quite light color.
R + G + B =
230 + 217 + 172 = 619 (100%)
R 230 of 619 ~ 37.16%
G 217 of 619 ~ 35.06%
B 172 of 619 ~ 27.79%
#E6D9AC color CMYK value is (0,6,25,10).
CMYK: (0,6,25,10) C0M6Y25K10 (0%,6%,25%,10%) (0.00/0.06/0.25/0.10)
E6 | D9 | AC | |
---|---|---|---|
RGB | 230 | 217 | 172 |
HSL | 47° | 53.70% | 78.82% |
HSB/HSV | 47° | 25.22% | 90.20% |
CMYK | 0.00% | 5.65% | 25.22% |
9.80% |
HEX | E6 | D9 | AC |
Decimal | 230 | 217 | 172 |
Binary | 11100110 | 11011001 | 10101100 |
Octal | 346 | 331 | 254 |
Examples of css and html codes for elements with #E6D9AC color. Also use rgb(230,217,172) instead hex code.
.myTextColor { color: #E6D9AC; }
<p style="color:#E6D9AC">This sample text font color is #E6D9AC.</p>
This text font color is #E6D9AC.
.myBgColor { background-color: #E6D9AC; }
<div style="background-color:#E6D9AC">Inner text</div>
This div background color is #E6D9AC.
.myBorderColor { border: 1px solid #E6D9AC; }
<div style="border:3px solid #E6D9AC">Div</div>
This div border color is #E6D9AC.
.myOpacity80 { color: #E6D9AC; opacity: 0.8; }
<p style="color:#E6D9AC;opacity:0.8;">80%</p>
Text with #E6D9AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6D9AC;}
<p style="text-shadow: 3px 3px 1px #E6D9AC">Text here.</p>
This text has shadow with #E6D9AC color.
.textShadow {text-shadow: 3px 3px 1px #E6D9AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6D9AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6D9AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6D9AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6D9AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6D9AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6D9AC; -webkit-box-shadow: 1px 1px 3px 2px #E6D9AC; box-shadow: 1px 1px 3px 2px #E6D9AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6D9AC; -webkit-box-shadow: 1px 1px 3px 2px #E6D9AC; box-shadow:1px 1px 3px 2px #E6D9AC;">
Div content here</div>
This text has color #E6D9AC on black background.
This text has color #E6D9AC on white background.
This text has black color on #E6D9AC background.
This text has white color on #E6D9AC background.