HEX: #96BE4A
RGB: (150,190,74)
#96BE4A contains mainly red and green colors. Web safe color of #96BE4A is #99CC33 (or #9C3).
#96BE4A color RGB value is (150,190,74).
RGB: (150,190,74) (59%,75%,29%)
R 150 of 255 = 59%
G 190 of 255 = 75%
B 74 of 255 = 29%
R + G + B ~ 54%. #96BE4A is middle color (not dark and not light).
R + G + B =
150 + 190 + 74 = 414 (100%)
R 150 of 414 ~ 36.23%
G 190 of 414 ~ 45.89%
B 74 of 414 ~ 17.87%
#96BE4A color CMYK value is (21,0,61,25).
CMYK: (21,0,61,25) C21M0Y61K25 (21%,0%,61%,25%) (0.21/0.00/0.61/0.25)
96 | BE | 4A | |
---|---|---|---|
RGB | 150 | 190 | 74 |
HSL | 81° | 47.15% | 51.76% |
HSB/HSV | 81° | 61.05% | 74.51% |
CMYK | 21.05% | 0.00% | 61.05% |
25.49% |
HEX | 96 | BE | 4A |
Decimal | 150 | 190 | 74 |
Binary | 10010110 | 10111110 | 1001010 |
Octal | 226 | 276 | 112 |
Examples of css and html codes for elements with #96BE4A color. Also use rgb(150,190,74) instead hex code.
.myTextColor { color: #96BE4A; }
<p style="color:#96BE4A">This sample text font color is #96BE4A.</p>
This text font color is #96BE4A.
.myBgColor { background-color: #96BE4A; }
<div style="background-color:#96BE4A">Inner text</div>
This div background color is #96BE4A.
.myBorderColor { border: 1px solid #96BE4A; }
<div style="border:3px solid #96BE4A">Div</div>
This div border color is #96BE4A.
.myOpacity80 { color: #96BE4A; opacity: 0.8; }
<p style="color:#96BE4A;opacity:0.8;">80%</p>
Text with #96BE4A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #96BE4A;}
<p style="text-shadow: 3px 3px 1px #96BE4A">Text here.</p>
This text has shadow with #96BE4A color.
.textShadow {text-shadow: 3px 3px 1px #96BE4A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #96BE4A, 5px 5px 20px red">Text here.</p>
This text has shadow with #96BE4A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#96BE4A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#96BE4A, Direction=45, Strength=4)">Text</p>
This text has shadow with #96BE4A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #96BE4A; -webkit-box-shadow: 1px 1px 3px 2px #96BE4A; box-shadow: 1px 1px 3px 2px #96BE4A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #96BE4A; -webkit-box-shadow: 1px 1px 3px 2px #96BE4A; box-shadow:1px 1px 3px 2px #96BE4A;">
Div content here</div>
This text has color #96BE4A on black background.
This text has color #96BE4A on white background.
This text has black color on #96BE4A background.
This text has white color on #96BE4A background.