HEX: #96A64C
RGB: (150,166,76)
#96A64C contains mainly red and green colors. Web safe color of #96A64C is #999933 (or #993).
#96A64C color RGB value is (150,166,76).
RGB: (150,166,76) (59%,65%,30%)
R 150 of 255 = 59%
G 166 of 255 = 65%
B 76 of 255 = 30%
R + G + B ~ 51%. #96A64C is middle color (not dark and not light).
R + G + B =
150 + 166 + 76 = 392 (100%)
R 150 of 392 ~ 38.27%
G 166 of 392 ~ 42.35%
B 76 of 392 ~ 19.39%
#96A64C color CMYK value is (10,0,54,35).
CMYK: (10,0,54,35) C10M0Y54K35 (10%,0%,54%,35%) (0.10/0.00/0.54/0.35)
96 | A6 | 4C | |
---|---|---|---|
RGB | 150 | 166 | 76 |
HSL | 71° | 37.19% | 47.45% |
HSB/HSV | 71° | 54.22% | 65.10% |
CMYK | 9.64% | 0.00% | 54.22% |
34.90% |
HEX | 96 | A6 | 4C |
Decimal | 150 | 166 | 76 |
Binary | 10010110 | 10100110 | 1001100 |
Octal | 226 | 246 | 114 |
Examples of css and html codes for elements with #96A64C color. Also use rgb(150,166,76) instead hex code.
.myTextColor { color: #96A64C; }
<p style="color:#96A64C">This sample text font color is #96A64C.</p>
This text font color is #96A64C.
.myBgColor { background-color: #96A64C; }
<div style="background-color:#96A64C">Inner text</div>
This div background color is #96A64C.
.myBorderColor { border: 1px solid #96A64C; }
<div style="border:3px solid #96A64C">Div</div>
This div border color is #96A64C.
.myOpacity80 { color: #96A64C; opacity: 0.8; }
<p style="color:#96A64C;opacity:0.8;">80%</p>
Text with #96A64C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96A64C;}
<p style="text-shadow: 3px 3px 1px #96A64C">Text here.</p>
This text has shadow with #96A64C color.
.textShadow {text-shadow: 3px 3px 1px #96A64C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96A64C, 5px 5px 20px red">Text here.</p>
This text has shadow with #96A64C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96A64C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96A64C, Direction=45, Strength=4)">Text</p>
This text has shadow with #96A64C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96A64C; -webkit-box-shadow: 1px 1px 3px 2px #96A64C; box-shadow: 1px 1px 3px 2px #96A64C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96A64C; -webkit-box-shadow: 1px 1px 3px 2px #96A64C; box-shadow:1px 1px 3px 2px #96A64C;">
Div content here</div>
This text has color #96A64C on black background.
This text has color #96A64C on white background.
This text has black color on #96A64C background.
This text has white color on #96A64C background.