HEX: #FFC686
RGB: (255,198,134)
#FFC686 contains mainly red and green colors. Web safe color of #FFC686 is #FFCC99 (or #FC9).
#FFC686 color RGB value is (255,198,134).
RGB: (255,198,134) (100%,78%,53%)
R 255 of 255 = 100%
G 198 of 255 = 78%
B 134 of 255 = 53%
R + G + B ~ 77%. #FFC686 is quite light color.
R + G + B =
255 + 198 + 134 = 587 (100%)
R 255 of 587 ~ 43.44%
G 198 of 587 ~ 33.73%
B 134 of 587 ~ 22.83%
#FFC686 color CMYK value is (0,22,47,0).
CMYK: (0,22,47,0) C0M22Y47K0 (0%,22%,47%,0%) (0.00/0.22/0.47/0.00)
FF | C6 | 86 | |
---|---|---|---|
RGB | 255 | 198 | 134 |
HSL | 32° | 100.00% | 76.27% |
HSB/HSV | 32° | 47.45% | 100.00% |
CMYK | 0.00% | 22.35% | 47.45% |
0.00% |
HEX | FF | C6 | 86 |
Decimal | 255 | 198 | 134 |
Binary | 11111111 | 11000110 | 10000110 |
Octal | 377 | 306 | 206 |
Examples of css and html codes for elements with #FFC686 color. Also use rgb(255,198,134) instead hex code.
.myTextColor { color: #FFC686; }
<p style="color:#FFC686">This sample text font color is #FFC686.</p>
This text font color is #FFC686.
.myBgColor { background-color: #FFC686; }
<div style="background-color:#FFC686">Inner text</div>
This div background color is #FFC686.
.myBorderColor { border: 1px solid #FFC686; }
<div style="border:3px solid #FFC686">Div</div>
This div border color is #FFC686.
.myOpacity80 { color: #FFC686; opacity: 0.8; }
<p style="color:#FFC686;opacity:0.8;">80%</p>
Text with #FFC686 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFC686;}
<p style="text-shadow: 3px 3px 1px #FFC686">Text here.</p>
This text has shadow with #FFC686 color.
.textShadow {text-shadow: 3px 3px 1px #FFC686, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFC686, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFC686 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFC686, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFC686, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFC686 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFC686; -webkit-box-shadow: 1px 1px 3px 2px #FFC686; box-shadow: 1px 1px 3px 2px #FFC686; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFC686; -webkit-box-shadow: 1px 1px 3px 2px #FFC686; box-shadow:1px 1px 3px 2px #FFC686;">
Div content here</div>
This text has color #FFC686 on black background.
This text has color #FFC686 on white background.
This text has black color on #FFC686 background.
This text has white color on #FFC686 background.