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