HEX: #FDE0ED
RGB: (253,224,237)
#FDE0ED contains red, green and blue colors in about the same proportion. Web safe color of #FDE0ED is #FFCCFF (or #FCF).
#FDE0ED color RGB value is (253,224,237).
RGB: (253,224,237) (99%,88%,93%)
R 253 of 255 = 99%
G 224 of 255 = 88%
B 237 of 255 = 93%
R + G + B ~ 93%. #FDE0ED is light color.
R + G + B =
253 + 224 + 237 = 714 (100%)
R 253 of 714 ~ 35.43%
G 224 of 714 ~ 31.37%
B 237 of 714 ~ 33.19%
#FDE0ED color CMYK value is (0,11,6,1).
CMYK: (0,11,6,1) C0M11Y6K1 (0%,11%,6%,1%) (0.00/0.11/0.06/0.01)
FD | E0 | ED | |
---|---|---|---|
RGB | 253 | 224 | 237 |
HSL | 333° | 87.88% | 93.53% |
HSB/HSV | 333° | 11.46% | 99.22% |
CMYK | 0.00% | 11.46% | 6.32% |
0.78% |
HEX | FD | E0 | ED |
Decimal | 253 | 224 | 237 |
Binary | 11111101 | 11100000 | 11101101 |
Octal | 375 | 340 | 355 |
Examples of css and html codes for elements with #FDE0ED color. Also use rgb(253,224,237) instead hex code.
.myTextColor { color: #FDE0ED; }
<p style="color:#FDE0ED">This sample text font color is #FDE0ED.</p>
This text font color is #FDE0ED.
.myBgColor { background-color: #FDE0ED; }
<div style="background-color:#FDE0ED">Inner text</div>
This div background color is #FDE0ED.
.myBorderColor { border: 1px solid #FDE0ED; }
<div style="border:3px solid #FDE0ED">Div</div>
This div border color is #FDE0ED.
.myOpacity80 { color: #FDE0ED; opacity: 0.8; }
<p style="color:#FDE0ED;opacity:0.8;">80%</p>
Text with #FDE0ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDE0ED;}
<p style="text-shadow: 3px 3px 1px #FDE0ED">Text here.</p>
This text has shadow with #FDE0ED color.
.textShadow {text-shadow: 3px 3px 1px #FDE0ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDE0ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDE0ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDE0ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDE0ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDE0ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDE0ED; -webkit-box-shadow: 1px 1px 3px 2px #FDE0ED; box-shadow: 1px 1px 3px 2px #FDE0ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDE0ED; -webkit-box-shadow: 1px 1px 3px 2px #FDE0ED; box-shadow:1px 1px 3px 2px #FDE0ED;">
Div content here</div>
This text has color #FDE0ED on black background.
This text has color #FDE0ED on white background.
This text has black color on #FDE0ED background.
This text has white color on #FDE0ED background.