HEX: #96AD25
RGB: (150,173,37)
#96AD25 contains mainly red and green colors. Web safe color of #96AD25 is #999933 (or #993).
#96AD25 color RGB value is (150,173,37).
RGB: (150,173,37) (59%,68%,15%)
R 150 of 255 = 59%
G 173 of 255 = 68%
B 37 of 255 = 15%
R + G + B ~ 47%. #96AD25 is middle color (not dark and not light).
R + G + B =
150 + 173 + 37 = 360 (100%)
R 150 of 360 ~ 41.67%
G 173 of 360 ~ 48.06%
B 37 of 360 ~ 10.28%
#96AD25 color CMYK value is (13,0,79,32).
CMYK: (13,0,79,32) C13M0Y79K32 (13%,0%,79%,32%) (0.13/0.00/0.79/0.32)
96 | AD | 25 | |
---|---|---|---|
RGB | 150 | 173 | 37 |
HSL | 70° | 64.76% | 41.18% |
HSB/HSV | 70° | 78.61% | 67.84% |
CMYK | 13.29% | 0.00% | 78.61% |
32.16% |
HEX | 96 | AD | 25 |
Decimal | 150 | 173 | 37 |
Binary | 10010110 | 10101101 | 100101 |
Octal | 226 | 255 | 45 |
Examples of css and html codes for elements with #96AD25 color. Also use rgb(150,173,37) instead hex code.
.myTextColor { color: #96AD25; }
<p style="color:#96AD25">This sample text font color is #96AD25.</p>
This text font color is #96AD25.
.myBgColor { background-color: #96AD25; }
<div style="background-color:#96AD25">Inner text</div>
This div background color is #96AD25.
.myBorderColor { border: 1px solid #96AD25; }
<div style="border:3px solid #96AD25">Div</div>
This div border color is #96AD25.
.myOpacity80 { color: #96AD25; opacity: 0.8; }
<p style="color:#96AD25;opacity:0.8;">80%</p>
Text with #96AD25 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96AD25;}
<p style="text-shadow: 3px 3px 1px #96AD25">Text here.</p>
This text has shadow with #96AD25 color.
.textShadow {text-shadow: 3px 3px 1px #96AD25, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96AD25, 5px 5px 20px red">Text here.</p>
This text has shadow with #96AD25 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96AD25, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96AD25, Direction=45, Strength=4)">Text</p>
This text has shadow with #96AD25 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96AD25; -webkit-box-shadow: 1px 1px 3px 2px #96AD25; box-shadow: 1px 1px 3px 2px #96AD25; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96AD25; -webkit-box-shadow: 1px 1px 3px 2px #96AD25; box-shadow:1px 1px 3px 2px #96AD25;">
Div content here</div>
This text has color #96AD25 on black background.
This text has color #96AD25 on white background.
This text has black color on #96AD25 background.
This text has white color on #96AD25 background.