HEX: #FAEFE4
RGB: (250,239,228)
#FAEFE4 contains red, green and blue colors in about the same proportion. Web safe color of #FAEFE4 is #FFFFCC (or #FFC).
#FAEFE4 color RGB value is (250,239,228).
RGB: (250,239,228) (98%,94%,89%)
R 250 of 255 = 98%
G 239 of 255 = 94%
B 228 of 255 = 89%
R + G + B ~ 94%. #FAEFE4 is light color.
R + G + B =
250 + 239 + 228 = 717 (100%)
R 250 of 717 ~ 34.87%
G 239 of 717 ~ 33.33%
B 228 of 717 ~ 31.8%
#FAEFE4 color CMYK value is (0,4,9,2).
CMYK: (0,4,9,2) C0M4Y9K2 (0%,4%,9%,2%) (0.00/0.04/0.09/0.02)
FA | EF | E4 | |
---|---|---|---|
RGB | 250 | 239 | 228 |
HSL | 30° | 68.75% | 93.73% |
HSB/HSV | 30° | 8.80% | 98.04% |
CMYK | 0.00% | 4.40% | 8.80% |
1.96% |
HEX | FA | EF | E4 |
Decimal | 250 | 239 | 228 |
Binary | 11111010 | 11101111 | 11100100 |
Octal | 372 | 357 | 344 |
Examples of css and html codes for elements with #FAEFE4 color. Also use rgb(250,239,228) instead hex code.
.myTextColor { color: #FAEFE4; }
<p style="color:#FAEFE4">This sample text font color is #FAEFE4.</p>
This text font color is #FAEFE4.
.myBgColor { background-color: #FAEFE4; }
<div style="background-color:#FAEFE4">Inner text</div>
This div background color is #FAEFE4.
.myBorderColor { border: 1px solid #FAEFE4; }
<div style="border:3px solid #FAEFE4">Div</div>
This div border color is #FAEFE4.
.myOpacity80 { color: #FAEFE4; opacity: 0.8; }
<p style="color:#FAEFE4;opacity:0.8;">80%</p>
Text with #FAEFE4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEFE4;}
<p style="text-shadow: 3px 3px 1px #FAEFE4">Text here.</p>
This text has shadow with #FAEFE4 color.
.textShadow {text-shadow: 3px 3px 1px #FAEFE4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEFE4, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEFE4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEFE4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEFE4, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEFE4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEFE4; -webkit-box-shadow: 1px 1px 3px 2px #FAEFE4; box-shadow: 1px 1px 3px 2px #FAEFE4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEFE4; -webkit-box-shadow: 1px 1px 3px 2px #FAEFE4; box-shadow:1px 1px 3px 2px #FAEFE4;">
Div content here</div>
This text has color #FAEFE4 on black background.
This text has color #FAEFE4 on white background.
This text has black color on #FAEFE4 background.
This text has white color on #FAEFE4 background.