HEX: #FDE4DC
RGB: (253,228,220)
#FDE4DC contains red, green and blue colors in about the same proportion. Web safe color of #FDE4DC is #FFCCCC (or #FCC).
#FDE4DC color RGB value is (253,228,220).
RGB: (253,228,220) (99%,89%,86%)
R 253 of 255 = 99%
G 228 of 255 = 89%
B 220 of 255 = 86%
R + G + B ~ 91%. #FDE4DC is light color.
R + G + B =
253 + 228 + 220 = 701 (100%)
R 253 of 701 ~ 36.09%
G 228 of 701 ~ 32.52%
B 220 of 701 ~ 31.38%
#FDE4DC color CMYK value is (0,10,13,1).
CMYK: (0,10,13,1) C0M10Y13K1 (0%,10%,13%,1%) (0.00/0.10/0.13/0.01)
FD | E4 | DC | |
---|---|---|---|
RGB | 253 | 228 | 220 |
HSL | 15° | 89.19% | 92.75% |
HSB/HSV | 15° | 13.04% | 99.22% |
CMYK | 0.00% | 9.88% | 13.04% |
0.78% |
HEX | FD | E4 | DC |
Decimal | 253 | 228 | 220 |
Binary | 11111101 | 11100100 | 11011100 |
Octal | 375 | 344 | 334 |
Examples of css and html codes for elements with #FDE4DC color. Also use rgb(253,228,220) instead hex code.
.myTextColor { color: #FDE4DC; }
<p style="color:#FDE4DC">This sample text font color is #FDE4DC.</p>
This text font color is #FDE4DC.
.myBgColor { background-color: #FDE4DC; }
<div style="background-color:#FDE4DC">Inner text</div>
This div background color is #FDE4DC.
.myBorderColor { border: 1px solid #FDE4DC; }
<div style="border:3px solid #FDE4DC">Div</div>
This div border color is #FDE4DC.
.myOpacity80 { color: #FDE4DC; opacity: 0.8; }
<p style="color:#FDE4DC;opacity:0.8;">80%</p>
Text with #FDE4DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDE4DC;}
<p style="text-shadow: 3px 3px 1px #FDE4DC">Text here.</p>
This text has shadow with #FDE4DC color.
.textShadow {text-shadow: 3px 3px 1px #FDE4DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDE4DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDE4DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDE4DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDE4DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDE4DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDE4DC; -webkit-box-shadow: 1px 1px 3px 2px #FDE4DC; box-shadow: 1px 1px 3px 2px #FDE4DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDE4DC; -webkit-box-shadow: 1px 1px 3px 2px #FDE4DC; box-shadow:1px 1px 3px 2px #FDE4DC;">
Div content here</div>
This text has color #FDE4DC on black background.
This text has color #FDE4DC on white background.
This text has black color on #FDE4DC background.
This text has white color on #FDE4DC background.