HEX: #F7B16E
RGB: (247,177,110)
#F7B16E contains mainly red color. Web safe color of #F7B16E is #FF9966 (or #F96).
#F7B16E color RGB value is (247,177,110).
RGB: (247,177,110) (97%,69%,43%)
R 247 of 255 = 97%
G 177 of 255 = 69%
B 110 of 255 = 43%
R + G + B ~ 70%. #F7B16E is quite light color.
R + G + B =
247 + 177 + 110 = 534 (100%)
R 247 of 534 ~ 46.25%
G 177 of 534 ~ 33.15%
B 110 of 534 ~ 20.6%
#F7B16E color CMYK value is (0,28,55,3).
CMYK: (0,28,55,3) C0M28Y55K3 (0%,28%,55%,3%) (0.00/0.28/0.55/0.03)
F7 | B1 | 6E | |
---|---|---|---|
RGB | 247 | 177 | 110 |
HSL | 29° | 89.54% | 70.00% |
HSB/HSV | 29° | 55.47% | 96.86% |
CMYK | 0.00% | 28.34% | 55.47% |
3.14% |
HEX | F7 | B1 | 6E |
Decimal | 247 | 177 | 110 |
Binary | 11110111 | 10110001 | 1101110 |
Octal | 367 | 261 | 156 |
Examples of css and html codes for elements with #F7B16E color. Also use rgb(247,177,110) instead hex code.
.myTextColor { color: #F7B16E; }
<p style="color:#F7B16E">This sample text font color is #F7B16E.</p>
This text font color is #F7B16E.
.myBgColor { background-color: #F7B16E; }
<div style="background-color:#F7B16E">Inner text</div>
This div background color is #F7B16E.
.myBorderColor { border: 1px solid #F7B16E; }
<div style="border:3px solid #F7B16E">Div</div>
This div border color is #F7B16E.
.myOpacity80 { color: #F7B16E; opacity: 0.8; }
<p style="color:#F7B16E;opacity:0.8;">80%</p>
Text with #F7B16E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F7B16E;}
<p style="text-shadow: 3px 3px 1px #F7B16E">Text here.</p>
This text has shadow with #F7B16E color.
.textShadow {text-shadow: 3px 3px 1px #F7B16E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F7B16E, 5px 5px 20px red">Text here.</p>
This text has shadow with #F7B16E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F7B16E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F7B16E, Direction=45, Strength=4)">Text</p>
This text has shadow with #F7B16E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F7B16E; -webkit-box-shadow: 1px 1px 3px 2px #F7B16E; box-shadow: 1px 1px 3px 2px #F7B16E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F7B16E; -webkit-box-shadow: 1px 1px 3px 2px #F7B16E; box-shadow:1px 1px 3px 2px #F7B16E;">
Div content here</div>
This text has color #F7B16E on black background.
This text has color #F7B16E on white background.
This text has black color on #F7B16E background.
This text has white color on #F7B16E background.