HEX: #FDFAED
RGB: (253,250,237)
#FDFAED contains red, green and blue colors in about the same proportion. Web safe color of #FDFAED is #FFFFFF (or #FFF).
#FDFAED color RGB value is (253,250,237).
RGB: (253,250,237) (99%,98%,93%)
R 253 of 255 = 99%
G 250 of 255 = 98%
B 237 of 255 = 93%
R + G + B ~ 97%. #FDFAED is light color.
R + G + B =
253 + 250 + 237 = 740 (100%)
R 253 of 740 ~ 34.19%
G 250 of 740 ~ 33.78%
B 237 of 740 ~ 32.03%
#FDFAED color CMYK value is (0,1,6,1).
CMYK: (0,1,6,1) C0M1Y6K1 (0%,1%,6%,1%) (0.00/0.01/0.06/0.01)
FD | FA | ED | |
---|---|---|---|
RGB | 253 | 250 | 237 |
HSL | 49° | 80.00% | 96.08% |
HSB/HSV | 49° | 6.32% | 99.22% |
CMYK | 0.00% | 1.19% | 6.32% |
0.78% |
HEX | FD | FA | ED |
Decimal | 253 | 250 | 237 |
Binary | 11111101 | 11111010 | 11101101 |
Octal | 375 | 372 | 355 |
Examples of css and html codes for elements with #FDFAED color. Also use rgb(253,250,237) instead hex code.
.myTextColor { color: #FDFAED; }
<p style="color:#FDFAED">This sample text font color is #FDFAED.</p>
This text font color is #FDFAED.
.myBgColor { background-color: #FDFAED; }
<div style="background-color:#FDFAED">Inner text</div>
This div background color is #FDFAED.
.myBorderColor { border: 1px solid #FDFAED; }
<div style="border:3px solid #FDFAED">Div</div>
This div border color is #FDFAED.
.myOpacity80 { color: #FDFAED; opacity: 0.8; }
<p style="color:#FDFAED;opacity:0.8;">80%</p>
Text with #FDFAED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDFAED;}
<p style="text-shadow: 3px 3px 1px #FDFAED">Text here.</p>
This text has shadow with #FDFAED color.
.textShadow {text-shadow: 3px 3px 1px #FDFAED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDFAED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDFAED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDFAED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDFAED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDFAED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDFAED; -webkit-box-shadow: 1px 1px 3px 2px #FDFAED; box-shadow: 1px 1px 3px 2px #FDFAED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDFAED; -webkit-box-shadow: 1px 1px 3px 2px #FDFAED; box-shadow:1px 1px 3px 2px #FDFAED;">
Div content here</div>
This text has color #FDFAED on black background.
This text has color #FDFAED on white background.
This text has black color on #FDFAED background.
This text has white color on #FDFAED background.