HEX: #FDE4EF
RGB: (253,228,239)
#FDE4EF contains red, green and blue colors in about the same proportion. Web safe color of #FDE4EF is #FFCCFF (or #FCF).
#FDE4EF color RGB value is (253,228,239).
RGB: (253,228,239) (99%,89%,94%)
R 253 of 255 = 99%
G 228 of 255 = 89%
B 239 of 255 = 94%
R + G + B ~ 94%. #FDE4EF is light color.
R + G + B =
253 + 228 + 239 = 720 (100%)
R 253 of 720 ~ 35.14%
G 228 of 720 ~ 31.67%
B 239 of 720 ~ 33.19%
#FDE4EF color CMYK value is (0,10,6,1).
CMYK: (0,10,6,1) C0M10Y6K1 (0%,10%,6%,1%) (0.00/0.10/0.06/0.01)
FD | E4 | EF | |
---|---|---|---|
RGB | 253 | 228 | 239 |
HSL | 334° | 86.21% | 94.31% |
HSB/HSV | 334° | 9.88% | 99.22% |
CMYK | 0.00% | 9.88% | 5.53% |
0.78% |
HEX | FD | E4 | EF |
Decimal | 253 | 228 | 239 |
Binary | 11111101 | 11100100 | 11101111 |
Octal | 375 | 344 | 357 |
Examples of css and html codes for elements with #FDE4EF color. Also use rgb(253,228,239) instead hex code.
.myTextColor { color: #FDE4EF; }
<p style="color:#FDE4EF">This sample text font color is #FDE4EF.</p>
This text font color is #FDE4EF.
.myBgColor { background-color: #FDE4EF; }
<div style="background-color:#FDE4EF">Inner text</div>
This div background color is #FDE4EF.
.myBorderColor { border: 1px solid #FDE4EF; }
<div style="border:3px solid #FDE4EF">Div</div>
This div border color is #FDE4EF.
.myOpacity80 { color: #FDE4EF; opacity: 0.8; }
<p style="color:#FDE4EF;opacity:0.8;">80%</p>
Text with #FDE4EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDE4EF;}
<p style="text-shadow: 3px 3px 1px #FDE4EF">Text here.</p>
This text has shadow with #FDE4EF color.
.textShadow {text-shadow: 3px 3px 1px #FDE4EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDE4EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDE4EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDE4EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDE4EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDE4EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDE4EF; -webkit-box-shadow: 1px 1px 3px 2px #FDE4EF; box-shadow: 1px 1px 3px 2px #FDE4EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDE4EF; -webkit-box-shadow: 1px 1px 3px 2px #FDE4EF; box-shadow:1px 1px 3px 2px #FDE4EF;">
Div content here</div>
This text has color #FDE4EF on black background.
This text has color #FDE4EF on white background.
This text has black color on #FDE4EF background.
This text has white color on #FDE4EF background.