HEX: #FDE6EA
RGB: (253,230,234)
#FDE6EA contains red, green and blue colors in about the same proportion. Web safe color of #FDE6EA is #FFCCFF (or #FCF).
#FDE6EA color RGB value is (253,230,234).
RGB: (253,230,234) (99%,90%,92%)
R 253 of 255 = 99%
G 230 of 255 = 90%
B 234 of 255 = 92%
R + G + B ~ 94%. #FDE6EA is light color.
R + G + B =
253 + 230 + 234 = 717 (100%)
R 253 of 717 ~ 35.29%
G 230 of 717 ~ 32.08%
B 234 of 717 ~ 32.64%
#FDE6EA color CMYK value is (0,9,8,1).
CMYK: (0,9,8,1) C0M9Y8K1 (0%,9%,8%,1%) (0.00/0.09/0.08/0.01)
FD | E6 | EA | |
---|---|---|---|
RGB | 253 | 230 | 234 |
HSL | 350° | 85.19% | 94.71% |
HSB/HSV | 350° | 9.09% | 99.22% |
CMYK | 0.00% | 9.09% | 7.51% |
0.78% |
HEX | FD | E6 | EA |
Decimal | 253 | 230 | 234 |
Binary | 11111101 | 11100110 | 11101010 |
Octal | 375 | 346 | 352 |
Examples of css and html codes for elements with #FDE6EA color. Also use rgb(253,230,234) instead hex code.
.myTextColor { color: #FDE6EA; }
<p style="color:#FDE6EA">This sample text font color is #FDE6EA.</p>
This text font color is #FDE6EA.
.myBgColor { background-color: #FDE6EA; }
<div style="background-color:#FDE6EA">Inner text</div>
This div background color is #FDE6EA.
.myBorderColor { border: 1px solid #FDE6EA; }
<div style="border:3px solid #FDE6EA">Div</div>
This div border color is #FDE6EA.
.myOpacity80 { color: #FDE6EA; opacity: 0.8; }
<p style="color:#FDE6EA;opacity:0.8;">80%</p>
Text with #FDE6EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDE6EA;}
<p style="text-shadow: 3px 3px 1px #FDE6EA">Text here.</p>
This text has shadow with #FDE6EA color.
.textShadow {text-shadow: 3px 3px 1px #FDE6EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDE6EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDE6EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDE6EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDE6EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDE6EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDE6EA; -webkit-box-shadow: 1px 1px 3px 2px #FDE6EA; box-shadow: 1px 1px 3px 2px #FDE6EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDE6EA; -webkit-box-shadow: 1px 1px 3px 2px #FDE6EA; box-shadow:1px 1px 3px 2px #FDE6EA;">
Div content here</div>
This text has color #FDE6EA on black background.
This text has color #FDE6EA on white background.
This text has black color on #FDE6EA background.
This text has white color on #FDE6EA background.