HEX: #76566B
RGB: (118,86,107)
#76566B contains red, green and blue colors in about the same proportion. Web safe color of #76566B is #666666 (or #666).
#76566B color RGB value is (118,86,107).
RGB: (118,86,107) (46%,34%,42%)
R 118 of 255 = 46%
G 86 of 255 = 34%
B 107 of 255 = 42%
R + G + B ~ 41%. #76566B is middle color (not dark and not light).
R + G + B =
118 + 86 + 107 = 311 (100%)
R 118 of 311 ~ 37.94%
G 86 of 311 ~ 27.65%
B 107 of 311 ~ 34.41%
#76566B color CMYK value is (0,27,9,54).
CMYK: (0,27,9,54) C0M27Y9K54 (0%,27%,9%,54%) (0.00/0.27/0.09/0.54)
76 | 56 | 6B | |
---|---|---|---|
RGB | 118 | 86 | 107 |
HSL | 321° | 15.69% | 40.00% |
HSB/HSV | 321° | 27.12% | 46.27% |
CMYK | 0.00% | 27.12% | 9.32% |
53.73% |
HEX | 76 | 56 | 6B |
Decimal | 118 | 86 | 107 |
Binary | 1110110 | 1010110 | 1101011 |
Octal | 166 | 126 | 153 |
Examples of css and html codes for elements with #76566B color. Also use rgb(118,86,107) instead hex code.
.myTextColor { color: #76566B; }
<p style="color:#76566B">This sample text font color is #76566B.</p>
This text font color is #76566B.
.myBgColor { background-color: #76566B; }
<div style="background-color:#76566B">Inner text</div>
This div background color is #76566B.
.myBorderColor { border: 1px solid #76566B; }
<div style="border:3px solid #76566B">Div</div>
This div border color is #76566B.
.myOpacity80 { color: #76566B; opacity: 0.8; }
<p style="color:#76566B;opacity:0.8;">80%</p>
Text with #76566B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76566B;}
<p style="text-shadow: 3px 3px 1px #76566B">Text here.</p>
This text has shadow with #76566B color.
.textShadow {text-shadow: 3px 3px 1px #76566B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76566B, 5px 5px 20px red">Text here.</p>
This text has shadow with #76566B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76566B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76566B, Direction=45, Strength=4)">Text</p>
This text has shadow with #76566B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76566B; -webkit-box-shadow: 1px 1px 3px 2px #76566B; box-shadow: 1px 1px 3px 2px #76566B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76566B; -webkit-box-shadow: 1px 1px 3px 2px #76566B; box-shadow:1px 1px 3px 2px #76566B;">
Div content here</div>
This text has color #76566B on black background.
This text has color #76566B on white background.
This text has black color on #76566B background.
This text has white color on #76566B background.