HEX: #FCD4EA
RGB: (252,212,234)
#FCD4EA contains red, green and blue colors in about the same proportion. Web safe color of #FCD4EA is #FFCCFF (or #FCF).
#FCD4EA color RGB value is (252,212,234).
RGB: (252,212,234) (99%,83%,92%)
R 252 of 255 = 99%
G 212 of 255 = 83%
B 234 of 255 = 92%
R + G + B ~ 91%. #FCD4EA is light color.
R + G + B =
252 + 212 + 234 = 698 (100%)
R 252 of 698 ~ 36.1%
G 212 of 698 ~ 30.37%
B 234 of 698 ~ 33.52%
#FCD4EA color CMYK value is (0,16,7,1).
CMYK: (0,16,7,1) C0M16Y7K1 (0%,16%,7%,1%) (0.00/0.16/0.07/0.01)
FC | D4 | EA | |
---|---|---|---|
RGB | 252 | 212 | 234 |
HSL | 327° | 86.96% | 90.98% |
HSB/HSV | 327° | 15.87% | 98.82% |
CMYK | 0.00% | 15.87% | 7.14% |
1.18% |
HEX | FC | D4 | EA |
Decimal | 252 | 212 | 234 |
Binary | 11111100 | 11010100 | 11101010 |
Octal | 374 | 324 | 352 |
Examples of css and html codes for elements with #FCD4EA color. Also use rgb(252,212,234) instead hex code.
.myTextColor { color: #FCD4EA; }
<p style="color:#FCD4EA">This sample text font color is #FCD4EA.</p>
This text font color is #FCD4EA.
.myBgColor { background-color: #FCD4EA; }
<div style="background-color:#FCD4EA">Inner text</div>
This div background color is #FCD4EA.
.myBorderColor { border: 1px solid #FCD4EA; }
<div style="border:3px solid #FCD4EA">Div</div>
This div border color is #FCD4EA.
.myOpacity80 { color: #FCD4EA; opacity: 0.8; }
<p style="color:#FCD4EA;opacity:0.8;">80%</p>
Text with #FCD4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCD4EA;}
<p style="text-shadow: 3px 3px 1px #FCD4EA">Text here.</p>
This text has shadow with #FCD4EA color.
.textShadow {text-shadow: 3px 3px 1px #FCD4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCD4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCD4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCD4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCD4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCD4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCD4EA; -webkit-box-shadow: 1px 1px 3px 2px #FCD4EA; box-shadow: 1px 1px 3px 2px #FCD4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCD4EA; -webkit-box-shadow: 1px 1px 3px 2px #FCD4EA; box-shadow:1px 1px 3px 2px #FCD4EA;">
Div content here</div>
This text has color #FCD4EA on black background.
This text has color #FCD4EA on white background.
This text has black color on #FCD4EA background.
This text has white color on #FCD4EA background.