HEX: #FAE8B1
RGB: (250,232,177)
#FAE8B1 contains mainly red and green colors. Web safe color of #FAE8B1 is #FFFF99 (or #FF9).
#FAE8B1 color RGB value is (250,232,177).
RGB: (250,232,177) (98%,91%,69%)
R 250 of 255 = 98%
G 232 of 255 = 91%
B 177 of 255 = 69%
R + G + B ~ 86%. #FAE8B1 is light color.
R + G + B =
250 + 232 + 177 = 659 (100%)
R 250 of 659 ~ 37.94%
G 232 of 659 ~ 35.2%
B 177 of 659 ~ 26.86%
#FAE8B1 color CMYK value is (0,7,29,2).
CMYK: (0,7,29,2) C0M7Y29K2 (0%,7%,29%,2%) (0.00/0.07/0.29/0.02)
FA | E8 | B1 | |
---|---|---|---|
RGB | 250 | 232 | 177 |
HSL | 45° | 87.95% | 83.73% |
HSB/HSV | 45° | 29.20% | 98.04% |
CMYK | 0.00% | 7.20% | 29.20% |
1.96% |
HEX | FA | E8 | B1 |
Decimal | 250 | 232 | 177 |
Binary | 11111010 | 11101000 | 10110001 |
Octal | 372 | 350 | 261 |
Examples of css and html codes for elements with #FAE8B1 color. Also use rgb(250,232,177) instead hex code.
.myTextColor { color: #FAE8B1; }
<p style="color:#FAE8B1">This sample text font color is #FAE8B1.</p>
This text font color is #FAE8B1.
.myBgColor { background-color: #FAE8B1; }
<div style="background-color:#FAE8B1">Inner text</div>
This div background color is #FAE8B1.
.myBorderColor { border: 1px solid #FAE8B1; }
<div style="border:3px solid #FAE8B1">Div</div>
This div border color is #FAE8B1.
.myOpacity80 { color: #FAE8B1; opacity: 0.8; }
<p style="color:#FAE8B1;opacity:0.8;">80%</p>
Text with #FAE8B1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAE8B1;}
<p style="text-shadow: 3px 3px 1px #FAE8B1">Text here.</p>
This text has shadow with #FAE8B1 color.
.textShadow {text-shadow: 3px 3px 1px #FAE8B1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAE8B1, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAE8B1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAE8B1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAE8B1, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAE8B1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAE8B1; -webkit-box-shadow: 1px 1px 3px 2px #FAE8B1; box-shadow: 1px 1px 3px 2px #FAE8B1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAE8B1; -webkit-box-shadow: 1px 1px 3px 2px #FAE8B1; box-shadow:1px 1px 3px 2px #FAE8B1;">
Div content here</div>
This text has color #FAE8B1 on black background.
This text has color #FAE8B1 on white background.
This text has black color on #FAE8B1 background.
This text has white color on #FAE8B1 background.