HEX: #B76D6E
RGB: (183,109,110)
#B76D6E contains mainly red color. Web safe color of #B76D6E is #CC6666 (or #C66).
#B76D6E color RGB value is (183,109,110).
RGB: (183,109,110) (72%,43%,43%)
R 183 of 255 = 72%
G 109 of 255 = 43%
B 110 of 255 = 43%
R + G + B ~ 53%. #B76D6E is middle color (not dark and not light).
R + G + B =
183 + 109 + 110 = 402 (100%)
R 183 of 402 ~ 45.52%
G 109 of 402 ~ 27.11%
B 110 of 402 ~ 27.36%
#B76D6E color CMYK value is (0,40,40,28).
CMYK: (0,40,40,28) C0M40Y40K28 (0%,40%,40%,28%) (0.00/0.40/0.40/0.28)
B7 | 6D | 6E | |
---|---|---|---|
RGB | 183 | 109 | 110 |
HSL | 359° | 33.94% | 57.25% |
HSB/HSV | 359° | 40.44% | 71.76% |
CMYK | 0.00% | 40.44% | 39.89% |
28.24% |
HEX | B7 | 6D | 6E |
Decimal | 183 | 109 | 110 |
Binary | 10110111 | 1101101 | 1101110 |
Octal | 267 | 155 | 156 |
Examples of css and html codes for elements with #B76D6E color. Also use rgb(183,109,110) instead hex code.
.myTextColor { color: #B76D6E; }
<p style="color:#B76D6E">This sample text font color is #B76D6E.</p>
This text font color is #B76D6E.
.myBgColor { background-color: #B76D6E; }
<div style="background-color:#B76D6E">Inner text</div>
This div background color is #B76D6E.
.myBorderColor { border: 1px solid #B76D6E; }
<div style="border:3px solid #B76D6E">Div</div>
This div border color is #B76D6E.
.myOpacity80 { color: #B76D6E; opacity: 0.8; }
<p style="color:#B76D6E;opacity:0.8;">80%</p>
Text with #B76D6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B76D6E;}
<p style="text-shadow: 3px 3px 1px #B76D6E">Text here.</p>
This text has shadow with #B76D6E color.
.textShadow {text-shadow: 3px 3px 1px #B76D6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B76D6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B76D6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B76D6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B76D6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B76D6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B76D6E; -webkit-box-shadow: 1px 1px 3px 2px #B76D6E; box-shadow: 1px 1px 3px 2px #B76D6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B76D6E; -webkit-box-shadow: 1px 1px 3px 2px #B76D6E; box-shadow:1px 1px 3px 2px #B76D6E;">
Div content here</div>
This text has color #B76D6E on black background.
This text has color #B76D6E on white background.
This text has black color on #B76D6E background.
This text has white color on #B76D6E background.