HEX: #FAEEFC
RGB: (250,238,252)
#FAEEFC contains red, green and blue colors in about the same proportion. Web safe color of #FAEEFC is #FFFFFF (or #FFF).
#FAEEFC color RGB value is (250,238,252).
RGB: (250,238,252) (98%,93%,99%)
R 250 of 255 = 98%
G 238 of 255 = 93%
B 252 of 255 = 99%
R + G + B ~ 97%. #FAEEFC is light color.
R + G + B =
250 + 238 + 252 = 740 (100%)
R 250 of 740 ~ 33.78%
G 238 of 740 ~ 32.16%
B 252 of 740 ~ 34.05%
#FAEEFC 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 | EE | FC | |
---|---|---|---|
RGB | 250 | 238 | 252 |
HSL | 291° | 70.00% | 96.08% |
HSB/HSV | 291° | 5.56% | 98.82% |
CMYK | 0.79% | 5.56% | 0.00% |
1.18% |
HEX | FA | EE | FC |
Decimal | 250 | 238 | 252 |
Binary | 11111010 | 11101110 | 11111100 |
Octal | 372 | 356 | 374 |
Examples of css and html codes for elements with #FAEEFC color. Also use rgb(250,238,252) instead hex code.
.myTextColor { color: #FAEEFC; }
<p style="color:#FAEEFC">This sample text font color is #FAEEFC.</p>
This text font color is #FAEEFC.
.myBgColor { background-color: #FAEEFC; }
<div style="background-color:#FAEEFC">Inner text</div>
This div background color is #FAEEFC.
.myBorderColor { border: 1px solid #FAEEFC; }
<div style="border:3px solid #FAEEFC">Div</div>
This div border color is #FAEEFC.
.myOpacity80 { color: #FAEEFC; opacity: 0.8; }
<p style="color:#FAEEFC;opacity:0.8;">80%</p>
Text with #FAEEFC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEEFC;}
<p style="text-shadow: 3px 3px 1px #FAEEFC">Text here.</p>
This text has shadow with #FAEEFC color.
.textShadow {text-shadow: 3px 3px 1px #FAEEFC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEEFC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEEFC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEEFC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEEFC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEEFC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEEFC; -webkit-box-shadow: 1px 1px 3px 2px #FAEEFC; box-shadow: 1px 1px 3px 2px #FAEEFC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEEFC; -webkit-box-shadow: 1px 1px 3px 2px #FAEEFC; box-shadow:1px 1px 3px 2px #FAEEFC;">
Div content here</div>
This text has color #FAEEFC on black background.
This text has color #FAEEFC on white background.
This text has black color on #FAEEFC background.
This text has white color on #FAEEFC background.