HEX: #B76F62
RGB: (183,111,98)
#B76F62 contains mainly red color. Web safe color of #B76F62 is #CC6666 (or #C66).
#B76F62 color RGB value is (183,111,98).
RGB: (183,111,98) (72%,44%,38%)
R 183 of 255 = 72%
G 111 of 255 = 44%
B 98 of 255 = 38%
R + G + B ~ 51%. #B76F62 is middle color (not dark and not light).
R + G + B =
183 + 111 + 98 = 392 (100%)
R 183 of 392 ~ 46.68%
G 111 of 392 ~ 28.32%
B 98 of 392 ~ 25%
#B76F62 color CMYK value is (0,39,46,28).
CMYK: (0,39,46,28) C0M39Y46K28 (0%,39%,46%,28%) (0.00/0.39/0.46/0.28)
B7 | 6F | 62 | |
---|---|---|---|
RGB | 183 | 111 | 98 |
HSL | 9° | 37.12% | 55.10% |
HSB/HSV | 9° | 46.45% | 71.76% |
CMYK | 0.00% | 39.34% | 46.45% |
28.24% |
HEX | B7 | 6F | 62 |
Decimal | 183 | 111 | 98 |
Binary | 10110111 | 1101111 | 1100010 |
Octal | 267 | 157 | 142 |
Examples of css and html codes for elements with #B76F62 color. Also use rgb(183,111,98) instead hex code.
.myTextColor { color: #B76F62; }
<p style="color:#B76F62">This sample text font color is #B76F62.</p>
This text font color is #B76F62.
.myBgColor { background-color: #B76F62; }
<div style="background-color:#B76F62">Inner text</div>
This div background color is #B76F62.
.myBorderColor { border: 1px solid #B76F62; }
<div style="border:3px solid #B76F62">Div</div>
This div border color is #B76F62.
.myOpacity80 { color: #B76F62; opacity: 0.8; }
<p style="color:#B76F62;opacity:0.8;">80%</p>
Text with #B76F62 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B76F62;}
<p style="text-shadow: 3px 3px 1px #B76F62">Text here.</p>
This text has shadow with #B76F62 color.
.textShadow {text-shadow: 3px 3px 1px #B76F62, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B76F62, 5px 5px 20px red">Text here.</p>
This text has shadow with #B76F62 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B76F62, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B76F62, Direction=45, Strength=4)">Text</p>
This text has shadow with #B76F62 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B76F62; -webkit-box-shadow: 1px 1px 3px 2px #B76F62; box-shadow: 1px 1px 3px 2px #B76F62; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B76F62; -webkit-box-shadow: 1px 1px 3px 2px #B76F62; box-shadow:1px 1px 3px 2px #B76F62;">
Div content here</div>
This text has color #B76F62 on black background.
This text has color #B76F62 on white background.
This text has black color on #B76F62 background.
This text has white color on #B76F62 background.