HEX: #FAC59E
RGB: (250,197,158)
#FAC59E contains mainly red and green colors. Web safe color of #FAC59E is #FFCC99 (or #FC9).
#FAC59E color RGB value is (250,197,158).
RGB: (250,197,158) (98%,77%,62%)
R 250 of 255 = 98%
G 197 of 255 = 77%
B 158 of 255 = 62%
R + G + B ~ 79%. #FAC59E is quite light color.
R + G + B =
250 + 197 + 158 = 605 (100%)
R 250 of 605 ~ 41.32%
G 197 of 605 ~ 32.56%
B 158 of 605 ~ 26.12%
#FAC59E color CMYK value is (0,21,37,2).
CMYK: (0,21,37,2) C0M21Y37K2 (0%,21%,37%,2%) (0.00/0.21/0.37/0.02)
FA | C5 | 9E | |
---|---|---|---|
RGB | 250 | 197 | 158 |
HSL | 25° | 90.20% | 80.00% |
HSB/HSV | 25° | 36.80% | 98.04% |
CMYK | 0.00% | 21.20% | 36.80% |
1.96% |
HEX | FA | C5 | 9E |
Decimal | 250 | 197 | 158 |
Binary | 11111010 | 11000101 | 10011110 |
Octal | 372 | 305 | 236 |
Examples of css and html codes for elements with #FAC59E color. Also use rgb(250,197,158) instead hex code.
.myTextColor { color: #FAC59E; }
<p style="color:#FAC59E">This sample text font color is #FAC59E.</p>
This text font color is #FAC59E.
.myBgColor { background-color: #FAC59E; }
<div style="background-color:#FAC59E">Inner text</div>
This div background color is #FAC59E.
.myBorderColor { border: 1px solid #FAC59E; }
<div style="border:3px solid #FAC59E">Div</div>
This div border color is #FAC59E.
.myOpacity80 { color: #FAC59E; opacity: 0.8; }
<p style="color:#FAC59E;opacity:0.8;">80%</p>
Text with #FAC59E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAC59E;}
<p style="text-shadow: 3px 3px 1px #FAC59E">Text here.</p>
This text has shadow with #FAC59E color.
.textShadow {text-shadow: 3px 3px 1px #FAC59E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAC59E, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAC59E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAC59E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAC59E, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAC59E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAC59E; -webkit-box-shadow: 1px 1px 3px 2px #FAC59E; box-shadow: 1px 1px 3px 2px #FAC59E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAC59E; -webkit-box-shadow: 1px 1px 3px 2px #FAC59E; box-shadow:1px 1px 3px 2px #FAC59E;">
Div content here</div>
This text has color #FAC59E on black background.
This text has color #FAC59E on white background.
This text has black color on #FAC59E background.
This text has white color on #FAC59E background.