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