HEX: #96C36B
RGB: (150,195,107)
#96C36B contains mainly red and green colors. Web safe color of #96C36B is #99CC66 (or #9C6).
#96C36B color RGB value is (150,195,107).
RGB: (150,195,107) (59%,76%,42%)
R 150 of 255 = 59%
G 195 of 255 = 76%
B 107 of 255 = 42%
R + G + B ~ 59%. #96C36B is middle color (not dark and not light).
R + G + B =
150 + 195 + 107 = 452 (100%)
R 150 of 452 ~ 33.19%
G 195 of 452 ~ 43.14%
B 107 of 452 ~ 23.67%
#96C36B color CMYK value is (23,0,45,24).
CMYK: (23,0,45,24) C23M0Y45K24 (23%,0%,45%,24%) (0.23/0.00/0.45/0.24)
96 | C3 | 6B | |
---|---|---|---|
RGB | 150 | 195 | 107 |
HSL | 91° | 42.31% | 59.22% |
HSB/HSV | 91° | 45.13% | 76.47% |
CMYK | 23.08% | 0.00% | 45.13% |
23.53% |
HEX | 96 | C3 | 6B |
Decimal | 150 | 195 | 107 |
Binary | 10010110 | 11000011 | 1101011 |
Octal | 226 | 303 | 153 |
Examples of css and html codes for elements with #96C36B color. Also use rgb(150,195,107) instead hex code.
.myTextColor { color: #96C36B; }
<p style="color:#96C36B">This sample text font color is #96C36B.</p>
This text font color is #96C36B.
.myBgColor { background-color: #96C36B; }
<div style="background-color:#96C36B">Inner text</div>
This div background color is #96C36B.
.myBorderColor { border: 1px solid #96C36B; }
<div style="border:3px solid #96C36B">Div</div>
This div border color is #96C36B.
.myOpacity80 { color: #96C36B; opacity: 0.8; }
<p style="color:#96C36B;opacity:0.8;">80%</p>
Text with #96C36B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96C36B;}
<p style="text-shadow: 3px 3px 1px #96C36B">Text here.</p>
This text has shadow with #96C36B color.
.textShadow {text-shadow: 3px 3px 1px #96C36B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96C36B, 5px 5px 20px red">Text here.</p>
This text has shadow with #96C36B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96C36B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96C36B, Direction=45, Strength=4)">Text</p>
This text has shadow with #96C36B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96C36B; -webkit-box-shadow: 1px 1px 3px 2px #96C36B; box-shadow: 1px 1px 3px 2px #96C36B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96C36B; -webkit-box-shadow: 1px 1px 3px 2px #96C36B; box-shadow:1px 1px 3px 2px #96C36B;">
Div content here</div>
This text has color #96C36B on black background.
This text has color #96C36B on white background.
This text has black color on #96C36B background.
This text has white color on #96C36B background.