HEX: #FCC4EA
RGB: (252,196,234)
#FCC4EA contains red, green and blue colors in about the same proportion. Web safe color of #FCC4EA is #FFCCFF (or #FCF).
#FCC4EA color RGB value is (252,196,234).
RGB: (252,196,234) (99%,77%,92%)
R 252 of 255 = 99%
G 196 of 255 = 77%
B 234 of 255 = 92%
R + G + B ~ 89%. #FCC4EA is light color.
R + G + B =
252 + 196 + 234 = 682 (100%)
R 252 of 682 ~ 36.95%
G 196 of 682 ~ 28.74%
B 234 of 682 ~ 34.31%
#FCC4EA color CMYK value is (0,22,7,1).
CMYK: (0,22,7,1) C0M22Y7K1 (0%,22%,7%,1%) (0.00/0.22/0.07/0.01)
FC | C4 | EA | |
---|---|---|---|
RGB | 252 | 196 | 234 |
HSL | 319° | 90.32% | 87.84% |
HSB/HSV | 319° | 22.22% | 98.82% |
CMYK | 0.00% | 22.22% | 7.14% |
1.18% |
HEX | FC | C4 | EA |
Decimal | 252 | 196 | 234 |
Binary | 11111100 | 11000100 | 11101010 |
Octal | 374 | 304 | 352 |
Examples of css and html codes for elements with #FCC4EA color. Also use rgb(252,196,234) instead hex code.
.myTextColor { color: #FCC4EA; }
<p style="color:#FCC4EA">This sample text font color is #FCC4EA.</p>
This text font color is #FCC4EA.
.myBgColor { background-color: #FCC4EA; }
<div style="background-color:#FCC4EA">Inner text</div>
This div background color is #FCC4EA.
.myBorderColor { border: 1px solid #FCC4EA; }
<div style="border:3px solid #FCC4EA">Div</div>
This div border color is #FCC4EA.
.myOpacity80 { color: #FCC4EA; opacity: 0.8; }
<p style="color:#FCC4EA;opacity:0.8;">80%</p>
Text with #FCC4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCC4EA;}
<p style="text-shadow: 3px 3px 1px #FCC4EA">Text here.</p>
This text has shadow with #FCC4EA color.
.textShadow {text-shadow: 3px 3px 1px #FCC4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCC4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCC4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCC4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCC4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCC4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCC4EA; -webkit-box-shadow: 1px 1px 3px 2px #FCC4EA; box-shadow: 1px 1px 3px 2px #FCC4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCC4EA; -webkit-box-shadow: 1px 1px 3px 2px #FCC4EA; box-shadow:1px 1px 3px 2px #FCC4EA;">
Div content here</div>
This text has color #FCC4EA on black background.
This text has color #FCC4EA on white background.
This text has black color on #FCC4EA background.
This text has white color on #FCC4EA background.