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