HEX: #76824F
RGB: (118,130,79)
#76824F contains red, green and blue colors in about the same proportion. Web safe color of #76824F is #669966 (or #696).
#76824F color RGB value is (118,130,79).
RGB: (118,130,79) (46%,51%,31%)
R 118 of 255 = 46%
G 130 of 255 = 51%
B 79 of 255 = 31%
R + G + B ~ 43%. #76824F is middle color (not dark and not light).
R + G + B =
118 + 130 + 79 = 327 (100%)
R 118 of 327 ~ 36.09%
G 130 of 327 ~ 39.76%
B 79 of 327 ~ 24.16%
#76824F color CMYK value is (9,0,39,49).
CMYK: (9,0,39,49) C9M0Y39K49 (9%,0%,39%,49%) (0.09/0.00/0.39/0.49)
76 | 82 | 4F | |
---|---|---|---|
RGB | 118 | 130 | 79 |
HSL | 74° | 24.40% | 40.98% |
HSB/HSV | 74° | 39.23% | 50.98% |
CMYK | 9.23% | 0.00% | 39.23% |
49.02% |
HEX | 76 | 82 | 4F |
Decimal | 118 | 130 | 79 |
Binary | 1110110 | 10000010 | 1001111 |
Octal | 166 | 202 | 117 |
Examples of css and html codes for elements with #76824F color. Also use rgb(118,130,79) instead hex code.
.myTextColor { color: #76824F; }
<p style="color:#76824F">This sample text font color is #76824F.</p>
This text font color is #76824F.
.myBgColor { background-color: #76824F; }
<div style="background-color:#76824F">Inner text</div>
This div background color is #76824F.
.myBorderColor { border: 1px solid #76824F; }
<div style="border:3px solid #76824F">Div</div>
This div border color is #76824F.
.myOpacity80 { color: #76824F; opacity: 0.8; }
<p style="color:#76824F;opacity:0.8;">80%</p>
Text with #76824F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76824F;}
<p style="text-shadow: 3px 3px 1px #76824F">Text here.</p>
This text has shadow with #76824F color.
.textShadow {text-shadow: 3px 3px 1px #76824F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76824F, 5px 5px 20px red">Text here.</p>
This text has shadow with #76824F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76824F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76824F, Direction=45, Strength=4)">Text</p>
This text has shadow with #76824F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76824F; -webkit-box-shadow: 1px 1px 3px 2px #76824F; box-shadow: 1px 1px 3px 2px #76824F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76824F; -webkit-box-shadow: 1px 1px 3px 2px #76824F; box-shadow:1px 1px 3px 2px #76824F;">
Div content here</div>
This text has color #76824F on black background.
This text has color #76824F on white background.
This text has black color on #76824F background.
This text has white color on #76824F background.