HEX: #FAEEE1
RGB: (250,238,225)
#FAEEE1 contains red, green and blue colors in about the same proportion. Web safe color of #FAEEE1 is #FFFFCC (or #FFC).
#FAEEE1 color RGB value is (250,238,225).
RGB: (250,238,225) (98%,93%,88%)
R 250 of 255 = 98%
G 238 of 255 = 93%
B 225 of 255 = 88%
R + G + B ~ 93%. #FAEEE1 is light color.
R + G + B =
250 + 238 + 225 = 713 (100%)
R 250 of 713 ~ 35.06%
G 238 of 713 ~ 33.38%
B 225 of 713 ~ 31.56%
#FAEEE1 color CMYK value is (0,5,10,2).
CMYK: (0,5,10,2) C0M5Y10K2 (0%,5%,10%,2%) (0.00/0.05/0.10/0.02)
FA | EE | E1 | |
---|---|---|---|
RGB | 250 | 238 | 225 |
HSL | 31° | 71.43% | 93.14% |
HSB/HSV | 31° | 10.00% | 98.04% |
CMYK | 0.00% | 4.80% | 10.00% |
1.96% |
HEX | FA | EE | E1 |
Decimal | 250 | 238 | 225 |
Binary | 11111010 | 11101110 | 11100001 |
Octal | 372 | 356 | 341 |
Examples of css and html codes for elements with #FAEEE1 color. Also use rgb(250,238,225) instead hex code.
.myTextColor { color: #FAEEE1; }
<p style="color:#FAEEE1">This sample text font color is #FAEEE1.</p>
This text font color is #FAEEE1.
.myBgColor { background-color: #FAEEE1; }
<div style="background-color:#FAEEE1">Inner text</div>
This div background color is #FAEEE1.
.myBorderColor { border: 1px solid #FAEEE1; }
<div style="border:3px solid #FAEEE1">Div</div>
This div border color is #FAEEE1.
.myOpacity80 { color: #FAEEE1; opacity: 0.8; }
<p style="color:#FAEEE1;opacity:0.8;">80%</p>
Text with #FAEEE1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEEE1;}
<p style="text-shadow: 3px 3px 1px #FAEEE1">Text here.</p>
This text has shadow with #FAEEE1 color.
.textShadow {text-shadow: 3px 3px 1px #FAEEE1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEEE1, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEEE1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEEE1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEEE1, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEEE1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEEE1; -webkit-box-shadow: 1px 1px 3px 2px #FAEEE1; box-shadow: 1px 1px 3px 2px #FAEEE1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEEE1; -webkit-box-shadow: 1px 1px 3px 2px #FAEEE1; box-shadow:1px 1px 3px 2px #FAEEE1;">
Div content here</div>
This text has color #FAEEE1 on black background.
This text has color #FAEEE1 on white background.
This text has black color on #FAEEE1 background.
This text has white color on #FAEEE1 background.