HEX: #96CE49
RGB: (150,206,73)
#96CE49 contains mainly red and green colors. Web safe color of #96CE49 is #99CC33 (or #9C3).
#96CE49 color RGB value is (150,206,73).
RGB: (150,206,73) (59%,81%,29%)
R 150 of 255 = 59%
G 206 of 255 = 81%
B 73 of 255 = 29%
R + G + B ~ 56%. #96CE49 is middle color (not dark and not light).
R + G + B =
150 + 206 + 73 = 429 (100%)
R 150 of 429 ~ 34.97%
G 206 of 429 ~ 48.02%
B 73 of 429 ~ 17.02%
#96CE49 color CMYK value is (27,0,65,19).
CMYK: (27,0,65,19) C27M0Y65K19 (27%,0%,65%,19%) (0.27/0.00/0.65/0.19)
96 | CE | 49 | |
---|---|---|---|
RGB | 150 | 206 | 73 |
HSL | 85° | 57.58% | 54.71% |
HSB/HSV | 85° | 64.56% | 80.78% |
CMYK | 27.18% | 0.00% | 64.56% |
19.22% |
HEX | 96 | CE | 49 |
Decimal | 150 | 206 | 73 |
Binary | 10010110 | 11001110 | 1001001 |
Octal | 226 | 316 | 111 |
Examples of css and html codes for elements with #96CE49 color. Also use rgb(150,206,73) instead hex code.
.myTextColor { color: #96CE49; }
<p style="color:#96CE49">This sample text font color is #96CE49.</p>
This text font color is #96CE49.
.myBgColor { background-color: #96CE49; }
<div style="background-color:#96CE49">Inner text</div>
This div background color is #96CE49.
.myBorderColor { border: 1px solid #96CE49; }
<div style="border:3px solid #96CE49">Div</div>
This div border color is #96CE49.
.myOpacity80 { color: #96CE49; opacity: 0.8; }
<p style="color:#96CE49;opacity:0.8;">80%</p>
Text with #96CE49 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96CE49;}
<p style="text-shadow: 3px 3px 1px #96CE49">Text here.</p>
This text has shadow with #96CE49 color.
.textShadow {text-shadow: 3px 3px 1px #96CE49, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96CE49, 5px 5px 20px red">Text here.</p>
This text has shadow with #96CE49 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96CE49, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96CE49, Direction=45, Strength=4)">Text</p>
This text has shadow with #96CE49 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96CE49; -webkit-box-shadow: 1px 1px 3px 2px #96CE49; box-shadow: 1px 1px 3px 2px #96CE49; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96CE49; -webkit-box-shadow: 1px 1px 3px 2px #96CE49; box-shadow:1px 1px 3px 2px #96CE49;">
Div content here</div>
This text has color #96CE49 on black background.
This text has color #96CE49 on white background.
This text has black color on #96CE49 background.
This text has white color on #96CE49 background.