HEX: #FAC86C
RGB: (250,200,108)
#FAC86C contains mainly red and green colors. Web safe color of #FAC86C is #FFCC66 (or #FC6).
#FAC86C color RGB value is (250,200,108).
RGB: (250,200,108) (98%,78%,42%)
R 250 of 255 = 98%
G 200 of 255 = 78%
B 108 of 255 = 42%
R + G + B ~ 73%. #FAC86C is quite light color.
R + G + B =
250 + 200 + 108 = 558 (100%)
R 250 of 558 ~ 44.8%
G 200 of 558 ~ 35.84%
B 108 of 558 ~ 19.35%
#FAC86C color CMYK value is (0,20,57,2).
CMYK: (0,20,57,2) C0M20Y57K2 (0%,20%,57%,2%) (0.00/0.20/0.57/0.02)
FA | C8 | 6C | |
---|---|---|---|
RGB | 250 | 200 | 108 |
HSL | 39° | 93.42% | 70.20% |
HSB/HSV | 39° | 56.80% | 98.04% |
CMYK | 0.00% | 20.00% | 56.80% |
1.96% |
HEX | FA | C8 | 6C |
Decimal | 250 | 200 | 108 |
Binary | 11111010 | 11001000 | 1101100 |
Octal | 372 | 310 | 154 |
Examples of css and html codes for elements with #FAC86C color. Also use rgb(250,200,108) instead hex code.
.myTextColor { color: #FAC86C; }
<p style="color:#FAC86C">This sample text font color is #FAC86C.</p>
This text font color is #FAC86C.
.myBgColor { background-color: #FAC86C; }
<div style="background-color:#FAC86C">Inner text</div>
This div background color is #FAC86C.
.myBorderColor { border: 1px solid #FAC86C; }
<div style="border:3px solid #FAC86C">Div</div>
This div border color is #FAC86C.
.myOpacity80 { color: #FAC86C; opacity: 0.8; }
<p style="color:#FAC86C;opacity:0.8;">80%</p>
Text with #FAC86C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAC86C;}
<p style="text-shadow: 3px 3px 1px #FAC86C">Text here.</p>
This text has shadow with #FAC86C color.
.textShadow {text-shadow: 3px 3px 1px #FAC86C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAC86C, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAC86C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAC86C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAC86C, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAC86C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAC86C; -webkit-box-shadow: 1px 1px 3px 2px #FAC86C; box-shadow: 1px 1px 3px 2px #FAC86C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAC86C; -webkit-box-shadow: 1px 1px 3px 2px #FAC86C; box-shadow:1px 1px 3px 2px #FAC86C;">
Div content here</div>
This text has color #FAC86C on black background.
This text has color #FAC86C on white background.
This text has black color on #FAC86C background.
This text has white color on #FAC86C background.