HEX: #FCCAF7
RGB: (252,202,247)
#FCCAF7 contains red, green and blue colors in about the same proportion. Web safe color of #FCCAF7 is #FFCCFF (or #FCF).
#FCCAF7 color RGB value is (252,202,247).
RGB: (252,202,247) (99%,79%,97%)
R 252 of 255 = 99%
G 202 of 255 = 79%
B 247 of 255 = 97%
R + G + B ~ 92%. #FCCAF7 is light color.
R + G + B =
252 + 202 + 247 = 701 (100%)
R 252 of 701 ~ 35.95%
G 202 of 701 ~ 28.82%
B 247 of 701 ~ 35.24%
#FCCAF7 color CMYK value is (0,20,2,1).
CMYK: (0,20,2,1) C0M20Y2K1 (0%,20%,2%,1%) (0.00/0.20/0.02/0.01)
FC | CA | F7 | |
---|---|---|---|
RGB | 252 | 202 | 247 |
HSL | 306° | 89.29% | 89.02% |
HSB/HSV | 306° | 19.84% | 98.82% |
CMYK | 0.00% | 19.84% | 1.98% |
1.18% |
HEX | FC | CA | F7 |
Decimal | 252 | 202 | 247 |
Binary | 11111100 | 11001010 | 11110111 |
Octal | 374 | 312 | 367 |
Examples of css and html codes for elements with #FCCAF7 color. Also use rgb(252,202,247) instead hex code.
.myTextColor { color: #FCCAF7; }
<p style="color:#FCCAF7">This sample text font color is #FCCAF7.</p>
This text font color is #FCCAF7.
.myBgColor { background-color: #FCCAF7; }
<div style="background-color:#FCCAF7">Inner text</div>
This div background color is #FCCAF7.
.myBorderColor { border: 1px solid #FCCAF7; }
<div style="border:3px solid #FCCAF7">Div</div>
This div border color is #FCCAF7.
.myOpacity80 { color: #FCCAF7; opacity: 0.8; }
<p style="color:#FCCAF7;opacity:0.8;">80%</p>
Text with #FCCAF7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCCAF7;}
<p style="text-shadow: 3px 3px 1px #FCCAF7">Text here.</p>
This text has shadow with #FCCAF7 color.
.textShadow {text-shadow: 3px 3px 1px #FCCAF7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCCAF7, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCCAF7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCCAF7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCCAF7, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCCAF7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCCAF7; -webkit-box-shadow: 1px 1px 3px 2px #FCCAF7; box-shadow: 1px 1px 3px 2px #FCCAF7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCCAF7; -webkit-box-shadow: 1px 1px 3px 2px #FCCAF7; box-shadow:1px 1px 3px 2px #FCCAF7;">
Div content here</div>
This text has color #FCCAF7 on black background.
This text has color #FCCAF7 on white background.
This text has black color on #FCCAF7 background.
This text has white color on #FCCAF7 background.