HEX: #FCFEDE
RGB: (252,254,222)
#FCFEDE contains red, green and blue colors in about the same proportion. Web safe color of #FCFEDE is #FFFFCC (or #FFC).
#FCFEDE color RGB value is (252,254,222).
RGB: (252,254,222) (99%,100%,87%)
R 252 of 255 = 99%
G 254 of 255 = 100%
B 222 of 255 = 87%
R + G + B ~ 95%. #FCFEDE is light color.
R + G + B =
252 + 254 + 222 = 728 (100%)
R 252 of 728 ~ 34.62%
G 254 of 728 ~ 34.89%
B 222 of 728 ~ 30.49%
#FCFEDE color CMYK value is (1,0,13,0).
CMYK: (1,0,13,0) C1M0Y13K0 (1%,0%,13%,0%) (0.01/0.00/0.13/0.00)
FC | FE | DE | |
---|---|---|---|
RGB | 252 | 254 | 222 |
HSL | 64° | 94.12% | 93.33% |
HSB/HSV | 64° | 12.60% | 99.61% |
CMYK | 0.79% | 0.00% | 12.60% |
0.39% |
HEX | FC | FE | DE |
Decimal | 252 | 254 | 222 |
Binary | 11111100 | 11111110 | 11011110 |
Octal | 374 | 376 | 336 |
Examples of css and html codes for elements with #FCFEDE color. Also use rgb(252,254,222) instead hex code.
.myTextColor { color: #FCFEDE; }
<p style="color:#FCFEDE">This sample text font color is #FCFEDE.</p>
This text font color is #FCFEDE.
.myBgColor { background-color: #FCFEDE; }
<div style="background-color:#FCFEDE">Inner text</div>
This div background color is #FCFEDE.
.myBorderColor { border: 1px solid #FCFEDE; }
<div style="border:3px solid #FCFEDE">Div</div>
This div border color is #FCFEDE.
.myOpacity80 { color: #FCFEDE; opacity: 0.8; }
<p style="color:#FCFEDE;opacity:0.8;">80%</p>
Text with #FCFEDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCFEDE;}
<p style="text-shadow: 3px 3px 1px #FCFEDE">Text here.</p>
This text has shadow with #FCFEDE color.
.textShadow {text-shadow: 3px 3px 1px #FCFEDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCFEDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCFEDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCFEDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCFEDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCFEDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCFEDE; -webkit-box-shadow: 1px 1px 3px 2px #FCFEDE; box-shadow: 1px 1px 3px 2px #FCFEDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCFEDE; -webkit-box-shadow: 1px 1px 3px 2px #FCFEDE; box-shadow:1px 1px 3px 2px #FCFEDE;">
Div content here</div>
This text has color #FCFEDE on black background.
This text has color #FCFEDE on white background.
This text has black color on #FCFEDE background.
This text has white color on #FCFEDE background.