HEX: #FCC9CF
RGB: (252,201,207)
#FCC9CF contains red, green and blue colors in about the same proportion. Web safe color of #FCC9CF is #FFCCCC (or #FCC).
#FCC9CF color RGB value is (252,201,207).
RGB: (252,201,207) (99%,79%,81%)
R 252 of 255 = 99%
G 201 of 255 = 79%
B 207 of 255 = 81%
R + G + B ~ 86%. #FCC9CF is light color.
R + G + B =
252 + 201 + 207 = 660 (100%)
R 252 of 660 ~ 38.18%
G 201 of 660 ~ 30.45%
B 207 of 660 ~ 31.36%
#FCC9CF color CMYK value is (0,20,18,1).
CMYK: (0,20,18,1) C0M20Y18K1 (0%,20%,18%,1%) (0.00/0.20/0.18/0.01)
FC | C9 | CF | |
---|---|---|---|
RGB | 252 | 201 | 207 |
HSL | 353° | 89.47% | 88.82% |
HSB/HSV | 353° | 20.24% | 98.82% |
CMYK | 0.00% | 20.24% | 17.86% |
1.18% |
HEX | FC | C9 | CF |
Decimal | 252 | 201 | 207 |
Binary | 11111100 | 11001001 | 11001111 |
Octal | 374 | 311 | 317 |
Examples of css and html codes for elements with #FCC9CF color. Also use rgb(252,201,207) instead hex code.
.myTextColor { color: #FCC9CF; }
<p style="color:#FCC9CF">This sample text font color is #FCC9CF.</p>
This text font color is #FCC9CF.
.myBgColor { background-color: #FCC9CF; }
<div style="background-color:#FCC9CF">Inner text</div>
This div background color is #FCC9CF.
.myBorderColor { border: 1px solid #FCC9CF; }
<div style="border:3px solid #FCC9CF">Div</div>
This div border color is #FCC9CF.
.myOpacity80 { color: #FCC9CF; opacity: 0.8; }
<p style="color:#FCC9CF;opacity:0.8;">80%</p>
Text with #FCC9CF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCC9CF;}
<p style="text-shadow: 3px 3px 1px #FCC9CF">Text here.</p>
This text has shadow with #FCC9CF color.
.textShadow {text-shadow: 3px 3px 1px #FCC9CF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCC9CF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCC9CF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCC9CF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCC9CF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCC9CF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCC9CF; -webkit-box-shadow: 1px 1px 3px 2px #FCC9CF; box-shadow: 1px 1px 3px 2px #FCC9CF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCC9CF; -webkit-box-shadow: 1px 1px 3px 2px #FCC9CF; box-shadow:1px 1px 3px 2px #FCC9CF;">
Div content here</div>
This text has color #FCC9CF on black background.
This text has color #FCC9CF on white background.
This text has black color on #FCC9CF background.
This text has white color on #FCC9CF background.