HEX: #FCE9ED
RGB: (252,233,237)
#FCE9ED contains red, green and blue colors in about the same proportion. Web safe color of #FCE9ED is #FFFFFF (or #FFF).
#FCE9ED color RGB value is (252,233,237).
RGB: (252,233,237) (99%,91%,93%)
R 252 of 255 = 99%
G 233 of 255 = 91%
B 237 of 255 = 93%
R + G + B ~ 94%. #FCE9ED is light color.
R + G + B =
252 + 233 + 237 = 722 (100%)
R 252 of 722 ~ 34.9%
G 233 of 722 ~ 32.27%
B 237 of 722 ~ 32.83%
#FCE9ED color CMYK value is (0,8,6,1).
CMYK: (0,8,6,1) C0M8Y6K1 (0%,8%,6%,1%) (0.00/0.08/0.06/0.01)
FC | E9 | ED | |
---|---|---|---|
RGB | 252 | 233 | 237 |
HSL | 347° | 76.00% | 95.10% |
HSB/HSV | 347° | 7.54% | 98.82% |
CMYK | 0.00% | 7.54% | 5.95% |
1.18% |
HEX | FC | E9 | ED |
Decimal | 252 | 233 | 237 |
Binary | 11111100 | 11101001 | 11101101 |
Octal | 374 | 351 | 355 |
Examples of css and html codes for elements with #FCE9ED color. Also use rgb(252,233,237) instead hex code.
.myTextColor { color: #FCE9ED; }
<p style="color:#FCE9ED">This sample text font color is #FCE9ED.</p>
This text font color is #FCE9ED.
.myBgColor { background-color: #FCE9ED; }
<div style="background-color:#FCE9ED">Inner text</div>
This div background color is #FCE9ED.
.myBorderColor { border: 1px solid #FCE9ED; }
<div style="border:3px solid #FCE9ED">Div</div>
This div border color is #FCE9ED.
.myOpacity80 { color: #FCE9ED; opacity: 0.8; }
<p style="color:#FCE9ED;opacity:0.8;">80%</p>
Text with #FCE9ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCE9ED;}
<p style="text-shadow: 3px 3px 1px #FCE9ED">Text here.</p>
This text has shadow with #FCE9ED color.
.textShadow {text-shadow: 3px 3px 1px #FCE9ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCE9ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCE9ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCE9ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCE9ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCE9ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCE9ED; -webkit-box-shadow: 1px 1px 3px 2px #FCE9ED; box-shadow: 1px 1px 3px 2px #FCE9ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCE9ED; -webkit-box-shadow: 1px 1px 3px 2px #FCE9ED; box-shadow:1px 1px 3px 2px #FCE9ED;">
Div content here</div>
This text has color #FCE9ED on black background.
This text has color #FCE9ED on white background.
This text has black color on #FCE9ED background.
This text has white color on #FCE9ED background.