HEX: #FCD9EC
RGB: (252,217,236)
#FCD9EC contains red, green and blue colors in about the same proportion. Web safe color of #FCD9EC is #FFCCFF (or #FCF).
#FCD9EC color RGB value is (252,217,236).
RGB: (252,217,236) (99%,85%,93%)
R 252 of 255 = 99%
G 217 of 255 = 85%
B 236 of 255 = 93%
R + G + B ~ 92%. #FCD9EC is light color.
R + G + B =
252 + 217 + 236 = 705 (100%)
R 252 of 705 ~ 35.74%
G 217 of 705 ~ 30.78%
B 236 of 705 ~ 33.48%
#FCD9EC color CMYK value is (0,14,6,1).
CMYK: (0,14,6,1) C0M14Y6K1 (0%,14%,6%,1%) (0.00/0.14/0.06/0.01)
FC | D9 | EC | |
---|---|---|---|
RGB | 252 | 217 | 236 |
HSL | 327° | 85.37% | 91.96% |
HSB/HSV | 327° | 13.89% | 98.82% |
CMYK | 0.00% | 13.89% | 6.35% |
1.18% |
HEX | FC | D9 | EC |
Decimal | 252 | 217 | 236 |
Binary | 11111100 | 11011001 | 11101100 |
Octal | 374 | 331 | 354 |
Examples of css and html codes for elements with #FCD9EC color. Also use rgb(252,217,236) instead hex code.
.myTextColor { color: #FCD9EC; }
<p style="color:#FCD9EC">This sample text font color is #FCD9EC.</p>
This text font color is #FCD9EC.
.myBgColor { background-color: #FCD9EC; }
<div style="background-color:#FCD9EC">Inner text</div>
This div background color is #FCD9EC.
.myBorderColor { border: 1px solid #FCD9EC; }
<div style="border:3px solid #FCD9EC">Div</div>
This div border color is #FCD9EC.
.myOpacity80 { color: #FCD9EC; opacity: 0.8; }
<p style="color:#FCD9EC;opacity:0.8;">80%</p>
Text with #FCD9EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCD9EC;}
<p style="text-shadow: 3px 3px 1px #FCD9EC">Text here.</p>
This text has shadow with #FCD9EC color.
.textShadow {text-shadow: 3px 3px 1px #FCD9EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCD9EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCD9EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCD9EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCD9EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCD9EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCD9EC; -webkit-box-shadow: 1px 1px 3px 2px #FCD9EC; box-shadow: 1px 1px 3px 2px #FCD9EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCD9EC; -webkit-box-shadow: 1px 1px 3px 2px #FCD9EC; box-shadow:1px 1px 3px 2px #FCD9EC;">
Div content here</div>
This text has color #FCD9EC on black background.
This text has color #FCD9EC on white background.
This text has black color on #FCD9EC background.
This text has white color on #FCD9EC background.