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