HEX: #FCD7DD
RGB: (252,215,221)
#FCD7DD contains red, green and blue colors in about the same proportion. Web safe color of #FCD7DD is #FFCCCC (or #FCC).
#FCD7DD color RGB value is (252,215,221).
RGB: (252,215,221) (99%,84%,87%)
R 252 of 255 = 99%
G 215 of 255 = 84%
B 221 of 255 = 87%
R + G + B ~ 90%. #FCD7DD is light color.
R + G + B =
252 + 215 + 221 = 688 (100%)
R 252 of 688 ~ 36.63%
G 215 of 688 ~ 31.25%
B 221 of 688 ~ 32.12%
#FCD7DD color CMYK value is (0,15,12,1).
CMYK: (0,15,12,1) C0M15Y12K1 (0%,15%,12%,1%) (0.00/0.15/0.12/0.01)
FC | D7 | DD | |
---|---|---|---|
RGB | 252 | 215 | 221 |
HSL | 350° | 86.05% | 91.57% |
HSB/HSV | 350° | 14.68% | 98.82% |
CMYK | 0.00% | 14.68% | 12.30% |
1.18% |
HEX | FC | D7 | DD |
Decimal | 252 | 215 | 221 |
Binary | 11111100 | 11010111 | 11011101 |
Octal | 374 | 327 | 335 |
Examples of css and html codes for elements with #FCD7DD color. Also use rgb(252,215,221) instead hex code.
.myTextColor { color: #FCD7DD; }
<p style="color:#FCD7DD">This sample text font color is #FCD7DD.</p>
This text font color is #FCD7DD.
.myBgColor { background-color: #FCD7DD; }
<div style="background-color:#FCD7DD">Inner text</div>
This div background color is #FCD7DD.
.myBorderColor { border: 1px solid #FCD7DD; }
<div style="border:3px solid #FCD7DD">Div</div>
This div border color is #FCD7DD.
.myOpacity80 { color: #FCD7DD; opacity: 0.8; }
<p style="color:#FCD7DD;opacity:0.8;">80%</p>
Text with #FCD7DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCD7DD;}
<p style="text-shadow: 3px 3px 1px #FCD7DD">Text here.</p>
This text has shadow with #FCD7DD color.
.textShadow {text-shadow: 3px 3px 1px #FCD7DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCD7DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCD7DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCD7DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCD7DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCD7DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCD7DD; -webkit-box-shadow: 1px 1px 3px 2px #FCD7DD; box-shadow: 1px 1px 3px 2px #FCD7DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCD7DD; -webkit-box-shadow: 1px 1px 3px 2px #FCD7DD; box-shadow:1px 1px 3px 2px #FCD7DD;">
Div content here</div>
This text has color #FCD7DD on black background.
This text has color #FCD7DD on white background.
This text has black color on #FCD7DD background.
This text has white color on #FCD7DD background.