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