HEX: #FEE4CB
RGB: (254,228,203)
#FEE4CB contains red, green and blue colors in about the same proportion. Web safe color of #FEE4CB is #FFCCCC (or #FCC).
#FEE4CB color RGB value is (254,228,203).
RGB: (254,228,203) (100%,89%,80%)
R 254 of 255 = 100%
G 228 of 255 = 89%
B 203 of 255 = 80%
R + G + B ~ 90%. #FEE4CB is light color.
R + G + B =
254 + 228 + 203 = 685 (100%)
R 254 of 685 ~ 37.08%
G 228 of 685 ~ 33.28%
B 203 of 685 ~ 29.64%
#FEE4CB color CMYK value is (0,10,20,0).
CMYK: (0,10,20,0) C0M10Y20K0 (0%,10%,20%,0%) (0.00/0.10/0.20/0.00)
FE | E4 | CB | |
---|---|---|---|
RGB | 254 | 228 | 203 |
HSL | 29° | 96.23% | 89.61% |
HSB/HSV | 29° | 20.08% | 99.61% |
CMYK | 0.00% | 10.24% | 20.08% |
0.39% |
HEX | FE | E4 | CB |
Decimal | 254 | 228 | 203 |
Binary | 11111110 | 11100100 | 11001011 |
Octal | 376 | 344 | 313 |
Examples of css and html codes for elements with #FEE4CB color. Also use rgb(254,228,203) instead hex code.
.myTextColor { color: #FEE4CB; }
<p style="color:#FEE4CB">This sample text font color is #FEE4CB.</p>
This text font color is #FEE4CB.
.myBgColor { background-color: #FEE4CB; }
<div style="background-color:#FEE4CB">Inner text</div>
This div background color is #FEE4CB.
.myBorderColor { border: 1px solid #FEE4CB; }
<div style="border:3px solid #FEE4CB">Div</div>
This div border color is #FEE4CB.
.myOpacity80 { color: #FEE4CB; opacity: 0.8; }
<p style="color:#FEE4CB;opacity:0.8;">80%</p>
Text with #FEE4CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEE4CB;}
<p style="text-shadow: 3px 3px 1px #FEE4CB">Text here.</p>
This text has shadow with #FEE4CB color.
.textShadow {text-shadow: 3px 3px 1px #FEE4CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEE4CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEE4CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEE4CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEE4CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEE4CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEE4CB; -webkit-box-shadow: 1px 1px 3px 2px #FEE4CB; box-shadow: 1px 1px 3px 2px #FEE4CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEE4CB; -webkit-box-shadow: 1px 1px 3px 2px #FEE4CB; box-shadow:1px 1px 3px 2px #FEE4CB;">
Div content here</div>
This text has color #FEE4CB on black background.
This text has color #FEE4CB on white background.
This text has black color on #FEE4CB background.
This text has white color on #FEE4CB background.