HEX: #9EB24B
RGB: (158,178,75)
#9EB24B contains mainly red and green colors. Web safe color of #9EB24B is #999933 (or #993).
#9EB24B color RGB value is (158,178,75).
RGB: (158,178,75) (62%,70%,29%)
R 158 of 255 = 62%
G 178 of 255 = 70%
B 75 of 255 = 29%
R + G + B ~ 54%. #9EB24B is middle color (not dark and not light).
R + G + B =
158 + 178 + 75 = 411 (100%)
R 158 of 411 ~ 38.44%
G 178 of 411 ~ 43.31%
B 75 of 411 ~ 18.25%
#9EB24B color CMYK value is (11,0,58,30).
CMYK: (11,0,58,30) C11M0Y58K30 (11%,0%,58%,30%) (0.11/0.00/0.58/0.30)
9E | B2 | 4B | |
---|---|---|---|
RGB | 158 | 178 | 75 |
HSL | 72° | 40.71% | 49.61% |
HSB/HSV | 72° | 57.87% | 69.80% |
CMYK | 11.24% | 0.00% | 57.87% |
30.20% |
HEX | 9E | B2 | 4B |
Decimal | 158 | 178 | 75 |
Binary | 10011110 | 10110010 | 1001011 |
Octal | 236 | 262 | 113 |
Examples of css and html codes for elements with #9EB24B color. Also use rgb(158,178,75) instead hex code.
.myTextColor { color: #9EB24B; }
<p style="color:#9EB24B">This sample text font color is #9EB24B.</p>
This text font color is #9EB24B.
.myBgColor { background-color: #9EB24B; }
<div style="background-color:#9EB24B">Inner text</div>
This div background color is #9EB24B.
.myBorderColor { border: 1px solid #9EB24B; }
<div style="border:3px solid #9EB24B">Div</div>
This div border color is #9EB24B.
.myOpacity80 { color: #9EB24B; opacity: 0.8; }
<p style="color:#9EB24B;opacity:0.8;">80%</p>
Text with #9EB24B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9EB24B;}
<p style="text-shadow: 3px 3px 1px #9EB24B">Text here.</p>
This text has shadow with #9EB24B color.
.textShadow {text-shadow: 3px 3px 1px #9EB24B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9EB24B, 5px 5px 20px red">Text here.</p>
This text has shadow with #9EB24B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9EB24B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9EB24B, Direction=45, Strength=4)">Text</p>
This text has shadow with #9EB24B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9EB24B; -webkit-box-shadow: 1px 1px 3px 2px #9EB24B; box-shadow: 1px 1px 3px 2px #9EB24B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9EB24B; -webkit-box-shadow: 1px 1px 3px 2px #9EB24B; box-shadow:1px 1px 3px 2px #9EB24B;">
Div content here</div>
This text has color #9EB24B on black background.
This text has color #9EB24B on white background.
This text has black color on #9EB24B background.
This text has white color on #9EB24B background.