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