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