HEX: #FAEEF8
RGB: (250,238,248)
#FAEEF8 contains red, green and blue colors in about the same proportion. Web safe color of #FAEEF8 is #FFFFFF (or #FFF).
#FAEEF8 color RGB value is (250,238,248).
RGB: (250,238,248) (98%,93%,97%)
R 250 of 255 = 98%
G 238 of 255 = 93%
B 248 of 255 = 97%
R + G + B ~ 96%. #FAEEF8 is light color.
R + G + B =
250 + 238 + 248 = 736 (100%)
R 250 of 736 ~ 33.97%
G 238 of 736 ~ 32.34%
B 248 of 736 ~ 33.7%
#FAEEF8 color CMYK value is (0,5,1,2).
CMYK: (0,5,1,2) C0M5Y1K2 (0%,5%,1%,2%) (0.00/0.05/0.01/0.02)
FA | EE | F8 | |
---|---|---|---|
RGB | 250 | 238 | 248 |
HSL | 310° | 54.55% | 95.69% |
HSB/HSV | 310° | 4.80% | 98.04% |
CMYK | 0.00% | 4.80% | 0.80% |
1.96% |
HEX | FA | EE | F8 |
Decimal | 250 | 238 | 248 |
Binary | 11111010 | 11101110 | 11111000 |
Octal | 372 | 356 | 370 |
Examples of css and html codes for elements with #FAEEF8 color. Also use rgb(250,238,248) instead hex code.
.myTextColor { color: #FAEEF8; }
<p style="color:#FAEEF8">This sample text font color is #FAEEF8.</p>
This text font color is #FAEEF8.
.myBgColor { background-color: #FAEEF8; }
<div style="background-color:#FAEEF8">Inner text</div>
This div background color is #FAEEF8.
.myBorderColor { border: 1px solid #FAEEF8; }
<div style="border:3px solid #FAEEF8">Div</div>
This div border color is #FAEEF8.
.myOpacity80 { color: #FAEEF8; opacity: 0.8; }
<p style="color:#FAEEF8;opacity:0.8;">80%</p>
Text with #FAEEF8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEEF8;}
<p style="text-shadow: 3px 3px 1px #FAEEF8">Text here.</p>
This text has shadow with #FAEEF8 color.
.textShadow {text-shadow: 3px 3px 1px #FAEEF8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEEF8, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEEF8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEEF8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEEF8, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEEF8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEEF8; -webkit-box-shadow: 1px 1px 3px 2px #FAEEF8; box-shadow: 1px 1px 3px 2px #FAEEF8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEEF8; -webkit-box-shadow: 1px 1px 3px 2px #FAEEF8; box-shadow:1px 1px 3px 2px #FAEEF8;">
Div content here</div>
This text has color #FAEEF8 on black background.
This text has color #FAEEF8 on white background.
This text has black color on #FAEEF8 background.
This text has white color on #FAEEF8 background.