HEX: #FDE9EB
RGB: (253,233,235)
#FDE9EB contains red, green and blue colors in about the same proportion. Web safe color of #FDE9EB is #FFFFFF (or #FFF).
#FDE9EB color RGB value is (253,233,235).
RGB: (253,233,235) (99%,91%,92%)
R 253 of 255 = 99%
G 233 of 255 = 91%
B 235 of 255 = 92%
R + G + B ~ 94%. #FDE9EB is light color.
R + G + B =
253 + 233 + 235 = 721 (100%)
R 253 of 721 ~ 35.09%
G 233 of 721 ~ 32.32%
B 235 of 721 ~ 32.59%
#FDE9EB color CMYK value is (0,8,7,1).
CMYK: (0,8,7,1) C0M8Y7K1 (0%,8%,7%,1%) (0.00/0.08/0.07/0.01)
FD | E9 | EB | |
---|---|---|---|
RGB | 253 | 233 | 235 |
HSL | 354° | 83.33% | 95.29% |
HSB/HSV | 354° | 7.91% | 99.22% |
CMYK | 0.00% | 7.91% | 7.11% |
0.78% |
HEX | FD | E9 | EB |
Decimal | 253 | 233 | 235 |
Binary | 11111101 | 11101001 | 11101011 |
Octal | 375 | 351 | 353 |
Examples of css and html codes for elements with #FDE9EB color. Also use rgb(253,233,235) instead hex code.
.myTextColor { color: #FDE9EB; }
<p style="color:#FDE9EB">This sample text font color is #FDE9EB.</p>
This text font color is #FDE9EB.
.myBgColor { background-color: #FDE9EB; }
<div style="background-color:#FDE9EB">Inner text</div>
This div background color is #FDE9EB.
.myBorderColor { border: 1px solid #FDE9EB; }
<div style="border:3px solid #FDE9EB">Div</div>
This div border color is #FDE9EB.
.myOpacity80 { color: #FDE9EB; opacity: 0.8; }
<p style="color:#FDE9EB;opacity:0.8;">80%</p>
Text with #FDE9EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDE9EB;}
<p style="text-shadow: 3px 3px 1px #FDE9EB">Text here.</p>
This text has shadow with #FDE9EB color.
.textShadow {text-shadow: 3px 3px 1px #FDE9EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDE9EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDE9EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDE9EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDE9EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDE9EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDE9EB; -webkit-box-shadow: 1px 1px 3px 2px #FDE9EB; box-shadow: 1px 1px 3px 2px #FDE9EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDE9EB; -webkit-box-shadow: 1px 1px 3px 2px #FDE9EB; box-shadow:1px 1px 3px 2px #FDE9EB;">
Div content here</div>
This text has color #FDE9EB on black background.
This text has color #FDE9EB on white background.
This text has black color on #FDE9EB background.
This text has white color on #FDE9EB background.