HEX: #FFE8CC
RGB: (255,232,204)
#FFE8CC contains red, green and blue colors in about the same proportion. Web safe color of #FFE8CC is #FFFFCC (or #FFC).
#FFE8CC color RGB value is (255,232,204).
RGB: (255,232,204) (100%,91%,80%)
R 255 of 255 = 100%
G 232 of 255 = 91%
B 204 of 255 = 80%
R + G + B ~ 90%. #FFE8CC is light color.
R + G + B =
255 + 232 + 204 = 691 (100%)
R 255 of 691 ~ 36.9%
G 232 of 691 ~ 33.57%
B 204 of 691 ~ 29.52%
#FFE8CC color CMYK value is (0,9,20,0).
CMYK: (0,9,20,0) C0M9Y20K0 (0%,9%,20%,0%) (0.00/0.09/0.20/0.00)
FF | E8 | CC | |
---|---|---|---|
RGB | 255 | 232 | 204 |
HSL | 33° | 100.00% | 90.00% |
HSB/HSV | 33° | 20.00% | 100.00% |
CMYK | 0.00% | 9.02% | 20.00% |
0.00% |
HEX | FF | E8 | CC |
Decimal | 255 | 232 | 204 |
Binary | 11111111 | 11101000 | 11001100 |
Octal | 377 | 350 | 314 |
Examples of css and html codes for elements with #FFE8CC color. Also use rgb(255,232,204) instead hex code.
.myTextColor { color: #FFE8CC; }
<p style="color:#FFE8CC">This sample text font color is #FFE8CC.</p>
This text font color is #FFE8CC.
.myBgColor { background-color: #FFE8CC; }
<div style="background-color:#FFE8CC">Inner text</div>
This div background color is #FFE8CC.
.myBorderColor { border: 1px solid #FFE8CC; }
<div style="border:3px solid #FFE8CC">Div</div>
This div border color is #FFE8CC.
.myOpacity80 { color: #FFE8CC; opacity: 0.8; }
<p style="color:#FFE8CC;opacity:0.8;">80%</p>
Text with #FFE8CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE8CC;}
<p style="text-shadow: 3px 3px 1px #FFE8CC">Text here.</p>
This text has shadow with #FFE8CC color.
.textShadow {text-shadow: 3px 3px 1px #FFE8CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE8CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE8CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE8CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE8CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE8CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE8CC; -webkit-box-shadow: 1px 1px 3px 2px #FFE8CC; box-shadow: 1px 1px 3px 2px #FFE8CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE8CC; -webkit-box-shadow: 1px 1px 3px 2px #FFE8CC; box-shadow:1px 1px 3px 2px #FFE8CC;">
Div content here</div>
This text has color #FFE8CC on black background.
This text has color #FFE8CC on white background.
This text has black color on #FFE8CC background.
This text has white color on #FFE8CC background.