HEX: #E6E2CC
RGB: (230,226,204)
#E6E2CC contains red, green and blue colors in about the same proportion. Web safe color of #E6E2CC is #CCCCCC (or #CCC).
#E6E2CC color RGB value is (230,226,204).
RGB: (230,226,204) (90%,89%,80%)
R 230 of 255 = 90%
G 226 of 255 = 89%
B 204 of 255 = 80%
R + G + B ~ 86%. #E6E2CC is light color.
R + G + B =
230 + 226 + 204 = 660 (100%)
R 230 of 660 ~ 34.85%
G 226 of 660 ~ 34.24%
B 204 of 660 ~ 30.91%
#E6E2CC color CMYK value is (0,2,11,10).
CMYK: (0,2,11,10) C0M2Y11K10 (0%,2%,11%,10%) (0.00/0.02/0.11/0.10)
E6 | E2 | CC | |
---|---|---|---|
RGB | 230 | 226 | 204 |
HSL | 51° | 34.21% | 85.10% |
HSB/HSV | 51° | 11.30% | 90.20% |
CMYK | 0.00% | 1.74% | 11.30% |
9.80% |
HEX | E6 | E2 | CC |
Decimal | 230 | 226 | 204 |
Binary | 11100110 | 11100010 | 11001100 |
Octal | 346 | 342 | 314 |
Examples of css and html codes for elements with #E6E2CC color. Also use rgb(230,226,204) instead hex code.
.myTextColor { color: #E6E2CC; }
<p style="color:#E6E2CC">This sample text font color is #E6E2CC.</p>
This text font color is #E6E2CC.
.myBgColor { background-color: #E6E2CC; }
<div style="background-color:#E6E2CC">Inner text</div>
This div background color is #E6E2CC.
.myBorderColor { border: 1px solid #E6E2CC; }
<div style="border:3px solid #E6E2CC">Div</div>
This div border color is #E6E2CC.
.myOpacity80 { color: #E6E2CC; opacity: 0.8; }
<p style="color:#E6E2CC;opacity:0.8;">80%</p>
Text with #E6E2CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6E2CC;}
<p style="text-shadow: 3px 3px 1px #E6E2CC">Text here.</p>
This text has shadow with #E6E2CC color.
.textShadow {text-shadow: 3px 3px 1px #E6E2CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6E2CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6E2CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6E2CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6E2CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6E2CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6E2CC; -webkit-box-shadow: 1px 1px 3px 2px #E6E2CC; box-shadow: 1px 1px 3px 2px #E6E2CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6E2CC; -webkit-box-shadow: 1px 1px 3px 2px #E6E2CC; box-shadow:1px 1px 3px 2px #E6E2CC;">
Div content here</div>
This text has color #E6E2CC on black background.
This text has color #E6E2CC on white background.
This text has black color on #E6E2CC background.
This text has white color on #E6E2CC background.