HEX: #FAEF9E
RGB: (250,239,158)
#FAEF9E contains mainly red and green colors. Web safe color of #FAEF9E is #FFFF99 (or #FF9).
#FAEF9E color RGB value is (250,239,158).
RGB: (250,239,158) (98%,94%,62%)
R 250 of 255 = 98%
G 239 of 255 = 94%
B 158 of 255 = 62%
R + G + B ~ 85%. #FAEF9E is quite light color.
R + G + B =
250 + 239 + 158 = 647 (100%)
R 250 of 647 ~ 38.64%
G 239 of 647 ~ 36.94%
B 158 of 647 ~ 24.42%
#FAEF9E color CMYK value is (0,4,37,2).
CMYK: (0,4,37,2) C0M4Y37K2 (0%,4%,37%,2%) (0.00/0.04/0.37/0.02)
FA | EF | 9E | |
---|---|---|---|
RGB | 250 | 239 | 158 |
HSL | 53° | 90.20% | 80.00% |
HSB/HSV | 53° | 36.80% | 98.04% |
CMYK | 0.00% | 4.40% | 36.80% |
1.96% |
HEX | FA | EF | 9E |
Decimal | 250 | 239 | 158 |
Binary | 11111010 | 11101111 | 10011110 |
Octal | 372 | 357 | 236 |
Examples of css and html codes for elements with #FAEF9E color. Also use rgb(250,239,158) instead hex code.
.myTextColor { color: #FAEF9E; }
<p style="color:#FAEF9E">This sample text font color is #FAEF9E.</p>
This text font color is #FAEF9E.
.myBgColor { background-color: #FAEF9E; }
<div style="background-color:#FAEF9E">Inner text</div>
This div background color is #FAEF9E.
.myBorderColor { border: 1px solid #FAEF9E; }
<div style="border:3px solid #FAEF9E">Div</div>
This div border color is #FAEF9E.
.myOpacity80 { color: #FAEF9E; opacity: 0.8; }
<p style="color:#FAEF9E;opacity:0.8;">80%</p>
Text with #FAEF9E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEF9E;}
<p style="text-shadow: 3px 3px 1px #FAEF9E">Text here.</p>
This text has shadow with #FAEF9E color.
.textShadow {text-shadow: 3px 3px 1px #FAEF9E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEF9E, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEF9E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEF9E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEF9E, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEF9E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEF9E; -webkit-box-shadow: 1px 1px 3px 2px #FAEF9E; box-shadow: 1px 1px 3px 2px #FAEF9E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEF9E; -webkit-box-shadow: 1px 1px 3px 2px #FAEF9E; box-shadow:1px 1px 3px 2px #FAEF9E;">
Div content here</div>
This text has color #FAEF9E on black background.
This text has color #FAEF9E on white background.
This text has black color on #FAEF9E background.
This text has white color on #FAEF9E background.