HEX: #F6C686
RGB: (246,198,134)
#F6C686 contains mainly red and green colors. Web safe color of #F6C686 is #FFCC99 (or #FC9).
#F6C686 color RGB value is (246,198,134).
RGB: (246,198,134) (96%,78%,53%)
R 246 of 255 = 96%
G 198 of 255 = 78%
B 134 of 255 = 53%
R + G + B ~ 76%. #F6C686 is quite light color.
R + G + B =
246 + 198 + 134 = 578 (100%)
R 246 of 578 ~ 42.56%
G 198 of 578 ~ 34.26%
B 134 of 578 ~ 23.18%
#F6C686 color CMYK value is (0,20,46,4).
CMYK: (0,20,46,4) C0M20Y46K4 (0%,20%,46%,4%) (0.00/0.20/0.46/0.04)
F6 | C6 | 86 | |
---|---|---|---|
RGB | 246 | 198 | 134 |
HSL | 34° | 86.15% | 74.51% |
HSB/HSV | 34° | 45.53% | 96.47% |
CMYK | 0.00% | 19.51% | 45.53% |
3.53% |
HEX | F6 | C6 | 86 |
Decimal | 246 | 198 | 134 |
Binary | 11110110 | 11000110 | 10000110 |
Octal | 366 | 306 | 206 |
Examples of css and html codes for elements with #F6C686 color. Also use rgb(246,198,134) instead hex code.
.myTextColor { color: #F6C686; }
<p style="color:#F6C686">This sample text font color is #F6C686.</p>
This text font color is #F6C686.
.myBgColor { background-color: #F6C686; }
<div style="background-color:#F6C686">Inner text</div>
This div background color is #F6C686.
.myBorderColor { border: 1px solid #F6C686; }
<div style="border:3px solid #F6C686">Div</div>
This div border color is #F6C686.
.myOpacity80 { color: #F6C686; opacity: 0.8; }
<p style="color:#F6C686;opacity:0.8;">80%</p>
Text with #F6C686 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6C686;}
<p style="text-shadow: 3px 3px 1px #F6C686">Text here.</p>
This text has shadow with #F6C686 color.
.textShadow {text-shadow: 3px 3px 1px #F6C686, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6C686, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6C686 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6C686, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6C686, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6C686 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6C686; -webkit-box-shadow: 1px 1px 3px 2px #F6C686; box-shadow: 1px 1px 3px 2px #F6C686; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6C686; -webkit-box-shadow: 1px 1px 3px 2px #F6C686; box-shadow:1px 1px 3px 2px #F6C686;">
Div content here</div>
This text has color #F6C686 on black background.
This text has color #F6C686 on white background.
This text has black color on #F6C686 background.
This text has white color on #F6C686 background.