HEX: #96D397
RGB: (150,211,151)
#96D397 contains mainly green color. Web safe color of #96D397 is #99CC99 (or #9C9).
#96D397 color RGB value is (150,211,151).
RGB: (150,211,151) (59%,83%,59%)
R 150 of 255 = 59%
G 211 of 255 = 83%
B 151 of 255 = 59%
R + G + B ~ 67%. #96D397 is quite light color.
R + G + B =
150 + 211 + 151 = 512 (100%)
R 150 of 512 ~ 29.3%
G 211 of 512 ~ 41.21%
B 151 of 512 ~ 29.49%
#96D397 color CMYK value is (29,0,28,17).
CMYK: (29,0,28,17) C29M0Y28K17 (29%,0%,28%,17%) (0.29/0.00/0.28/0.17)
96 | D3 | 97 | |
---|---|---|---|
RGB | 150 | 211 | 151 |
HSL | 121° | 40.94% | 70.78% |
HSB/HSV | 121° | 28.91% | 82.75% |
CMYK | 28.91% | 0.00% | 28.44% |
17.25% |
HEX | 96 | D3 | 97 |
Decimal | 150 | 211 | 151 |
Binary | 10010110 | 11010011 | 10010111 |
Octal | 226 | 323 | 227 |
Examples of css and html codes for elements with #96D397 color. Also use rgb(150,211,151) instead hex code.
.myTextColor { color: #96D397; }
<p style="color:#96D397">This sample text font color is #96D397.</p>
This text font color is #96D397.
.myBgColor { background-color: #96D397; }
<div style="background-color:#96D397">Inner text</div>
This div background color is #96D397.
.myBorderColor { border: 1px solid #96D397; }
<div style="border:3px solid #96D397">Div</div>
This div border color is #96D397.
.myOpacity80 { color: #96D397; opacity: 0.8; }
<p style="color:#96D397;opacity:0.8;">80%</p>
Text with #96D397 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96D397;}
<p style="text-shadow: 3px 3px 1px #96D397">Text here.</p>
This text has shadow with #96D397 color.
.textShadow {text-shadow: 3px 3px 1px #96D397, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96D397, 5px 5px 20px red">Text here.</p>
This text has shadow with #96D397 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96D397, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96D397, Direction=45, Strength=4)">Text</p>
This text has shadow with #96D397 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96D397; -webkit-box-shadow: 1px 1px 3px 2px #96D397; box-shadow: 1px 1px 3px 2px #96D397; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96D397; -webkit-box-shadow: 1px 1px 3px 2px #96D397; box-shadow:1px 1px 3px 2px #96D397;">
Div content here</div>
This text has color #96D397 on black background.
This text has color #96D397 on white background.
This text has black color on #96D397 background.
This text has white color on #96D397 background.