HEX: #E6CC8D
RGB: (230,204,141)
#E6CC8D contains mainly red and green colors. Web safe color of #E6CC8D is #CCCC99 (or #CC9).
#E6CC8D color RGB value is (230,204,141).
RGB: (230,204,141) (90%,80%,55%)
R 230 of 255 = 90%
G 204 of 255 = 80%
B 141 of 255 = 55%
R + G + B ~ 75%. #E6CC8D is quite light color.
R + G + B =
230 + 204 + 141 = 575 (100%)
R 230 of 575 ~ 40%
G 204 of 575 ~ 35.48%
B 141 of 575 ~ 24.52%
#E6CC8D color CMYK value is (0,11,39,10).
CMYK: (0,11,39,10) C0M11Y39K10 (0%,11%,39%,10%) (0.00/0.11/0.39/0.10)
E6 | CC | 8D | |
---|---|---|---|
RGB | 230 | 204 | 141 |
HSL | 42° | 64.03% | 72.75% |
HSB/HSV | 42° | 38.70% | 90.20% |
CMYK | 0.00% | 11.30% | 38.70% |
9.80% |
HEX | E6 | CC | 8D |
Decimal | 230 | 204 | 141 |
Binary | 11100110 | 11001100 | 10001101 |
Octal | 346 | 314 | 215 |
Examples of css and html codes for elements with #E6CC8D color. Also use rgb(230,204,141) instead hex code.
.myTextColor { color: #E6CC8D; }
<p style="color:#E6CC8D">This sample text font color is #E6CC8D.</p>
This text font color is #E6CC8D.
.myBgColor { background-color: #E6CC8D; }
<div style="background-color:#E6CC8D">Inner text</div>
This div background color is #E6CC8D.
.myBorderColor { border: 1px solid #E6CC8D; }
<div style="border:3px solid #E6CC8D">Div</div>
This div border color is #E6CC8D.
.myOpacity80 { color: #E6CC8D; opacity: 0.8; }
<p style="color:#E6CC8D;opacity:0.8;">80%</p>
Text with #E6CC8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6CC8D;}
<p style="text-shadow: 3px 3px 1px #E6CC8D">Text here.</p>
This text has shadow with #E6CC8D color.
.textShadow {text-shadow: 3px 3px 1px #E6CC8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6CC8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6CC8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6CC8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6CC8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6CC8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6CC8D; -webkit-box-shadow: 1px 1px 3px 2px #E6CC8D; box-shadow: 1px 1px 3px 2px #E6CC8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6CC8D; -webkit-box-shadow: 1px 1px 3px 2px #E6CC8D; box-shadow:1px 1px 3px 2px #E6CC8D;">
Div content here</div>
This text has color #E6CC8D on black background.
This text has color #E6CC8D on white background.
This text has black color on #E6CC8D background.
This text has white color on #E6CC8D background.