HEX: #FCF2FF
RGB: (252,242,255)
#FCF2FF contains red, green and blue colors in about the same proportion. Web safe color of #FCF2FF is #FFFFFF (or #FFF).
#FCF2FF color RGB value is (252,242,255).
RGB: (252,242,255) (99%,95%,100%)
R 252 of 255 = 99%
G 242 of 255 = 95%
B 255 of 255 = 100%
R + G + B ~ 98%. #FCF2FF is light color.
R + G + B =
252 + 242 + 255 = 749 (100%)
R 252 of 749 ~ 33.64%
G 242 of 749 ~ 32.31%
B 255 of 749 ~ 34.05%
#FCF2FF color CMYK value is (1,5,0,0).
CMYK: (1,5,0,0) C1M5Y0K0 (1%,5%,0%,0%) (0.01/0.05/0.00/0.00)
FC | F2 | FF | |
---|---|---|---|
RGB | 252 | 242 | 255 |
HSL | 286° | 100.00% | 97.45% |
HSB/HSV | 286° | 5.10% | 100.00% |
CMYK | 1.18% | 5.10% | 0.00% |
0.00% |
HEX | FC | F2 | FF |
Decimal | 252 | 242 | 255 |
Binary | 11111100 | 11110010 | 11111111 |
Octal | 374 | 362 | 377 |
Examples of css and html codes for elements with #FCF2FF color. Also use rgb(252,242,255) instead hex code.
.myTextColor { color: #FCF2FF; }
<p style="color:#FCF2FF">This sample text font color is #FCF2FF.</p>
This text font color is #FCF2FF.
.myBgColor { background-color: #FCF2FF; }
<div style="background-color:#FCF2FF">Inner text</div>
This div background color is #FCF2FF.
.myBorderColor { border: 1px solid #FCF2FF; }
<div style="border:3px solid #FCF2FF">Div</div>
This div border color is #FCF2FF.
.myOpacity80 { color: #FCF2FF; opacity: 0.8; }
<p style="color:#FCF2FF;opacity:0.8;">80%</p>
Text with #FCF2FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCF2FF;}
<p style="text-shadow: 3px 3px 1px #FCF2FF">Text here.</p>
This text has shadow with #FCF2FF color.
.textShadow {text-shadow: 3px 3px 1px #FCF2FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCF2FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCF2FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCF2FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCF2FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCF2FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCF2FF; -webkit-box-shadow: 1px 1px 3px 2px #FCF2FF; box-shadow: 1px 1px 3px 2px #FCF2FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCF2FF; -webkit-box-shadow: 1px 1px 3px 2px #FCF2FF; box-shadow:1px 1px 3px 2px #FCF2FF;">
Div content here</div>
This text has color #FCF2FF on black background.
This text has color #FCF2FF on white background.
This text has black color on #FCF2FF background.
This text has white color on #FCF2FF background.