HEX: #E6CCAB
RGB: (230,204,171)
#E6CCAB contains red, green and blue colors in about the same proportion. Web safe color of #E6CCAB is #CCCC99 (or #CC9).
#E6CCAB color RGB value is (230,204,171).
RGB: (230,204,171) (90%,80%,67%)
R 230 of 255 = 90%
G 204 of 255 = 80%
B 171 of 255 = 67%
R + G + B ~ 79%. #E6CCAB is quite light color.
R + G + B =
230 + 204 + 171 = 605 (100%)
R 230 of 605 ~ 38.02%
G 204 of 605 ~ 33.72%
B 171 of 605 ~ 28.26%
#E6CCAB color CMYK value is (0,11,26,10).
CMYK: (0,11,26,10) C0M11Y26K10 (0%,11%,26%,10%) (0.00/0.11/0.26/0.10)
E6 | CC | AB | |
---|---|---|---|
RGB | 230 | 204 | 171 |
HSL | 34° | 54.13% | 78.63% |
HSB/HSV | 34° | 25.65% | 90.20% |
CMYK | 0.00% | 11.30% | 25.65% |
9.80% |
HEX | E6 | CC | AB |
Decimal | 230 | 204 | 171 |
Binary | 11100110 | 11001100 | 10101011 |
Octal | 346 | 314 | 253 |
Examples of css and html codes for elements with #E6CCAB color. Also use rgb(230,204,171) instead hex code.
.myTextColor { color: #E6CCAB; }
<p style="color:#E6CCAB">This sample text font color is #E6CCAB.</p>
This text font color is #E6CCAB.
.myBgColor { background-color: #E6CCAB; }
<div style="background-color:#E6CCAB">Inner text</div>
This div background color is #E6CCAB.
.myBorderColor { border: 1px solid #E6CCAB; }
<div style="border:3px solid #E6CCAB">Div</div>
This div border color is #E6CCAB.
.myOpacity80 { color: #E6CCAB; opacity: 0.8; }
<p style="color:#E6CCAB;opacity:0.8;">80%</p>
Text with #E6CCAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6CCAB;}
<p style="text-shadow: 3px 3px 1px #E6CCAB">Text here.</p>
This text has shadow with #E6CCAB color.
.textShadow {text-shadow: 3px 3px 1px #E6CCAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6CCAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6CCAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6CCAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6CCAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6CCAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6CCAB; -webkit-box-shadow: 1px 1px 3px 2px #E6CCAB; box-shadow: 1px 1px 3px 2px #E6CCAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6CCAB; -webkit-box-shadow: 1px 1px 3px 2px #E6CCAB; box-shadow:1px 1px 3px 2px #E6CCAB;">
Div content here</div>
This text has color #E6CCAB on black background.
This text has color #E6CCAB on white background.
This text has black color on #E6CCAB background.
This text has white color on #E6CCAB background.