HEX: #76954C
RGB: (118,149,76)
#76954C contains mainly red and green colors. Web safe color of #76954C is #669933 (or #693).
#76954C color RGB value is (118,149,76).
RGB: (118,149,76) (46%,58%,30%)
R 118 of 255 = 46%
G 149 of 255 = 58%
B 76 of 255 = 30%
R + G + B ~ 45%. #76954C is middle color (not dark and not light).
R + G + B =
118 + 149 + 76 = 343 (100%)
R 118 of 343 ~ 34.4%
G 149 of 343 ~ 43.44%
B 76 of 343 ~ 22.16%
#76954C color CMYK value is (21,0,49,42).
CMYK: (21,0,49,42) C21M0Y49K42 (21%,0%,49%,42%) (0.21/0.00/0.49/0.42)
76 | 95 | 4C | |
---|---|---|---|
RGB | 118 | 149 | 76 |
HSL | 85° | 32.44% | 44.12% |
HSB/HSV | 85° | 48.99% | 58.43% |
CMYK | 20.81% | 0.00% | 48.99% |
41.57% |
HEX | 76 | 95 | 4C |
Decimal | 118 | 149 | 76 |
Binary | 1110110 | 10010101 | 1001100 |
Octal | 166 | 225 | 114 |
Examples of css and html codes for elements with #76954C color. Also use rgb(118,149,76) instead hex code.
.myTextColor { color: #76954C; }
<p style="color:#76954C">This sample text font color is #76954C.</p>
This text font color is #76954C.
.myBgColor { background-color: #76954C; }
<div style="background-color:#76954C">Inner text</div>
This div background color is #76954C.
.myBorderColor { border: 1px solid #76954C; }
<div style="border:3px solid #76954C">Div</div>
This div border color is #76954C.
.myOpacity80 { color: #76954C; opacity: 0.8; }
<p style="color:#76954C;opacity:0.8;">80%</p>
Text with #76954C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76954C;}
<p style="text-shadow: 3px 3px 1px #76954C">Text here.</p>
This text has shadow with #76954C color.
.textShadow {text-shadow: 3px 3px 1px #76954C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76954C, 5px 5px 20px red">Text here.</p>
This text has shadow with #76954C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76954C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76954C, Direction=45, Strength=4)">Text</p>
This text has shadow with #76954C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76954C; -webkit-box-shadow: 1px 1px 3px 2px #76954C; box-shadow: 1px 1px 3px 2px #76954C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76954C; -webkit-box-shadow: 1px 1px 3px 2px #76954C; box-shadow:1px 1px 3px 2px #76954C;">
Div content here</div>
This text has color #76954C on black background.
This text has color #76954C on white background.
This text has black color on #76954C background.
This text has white color on #76954C background.