HEX: #9EF509
RGB: (158,245,9)
#9EF509 contains mainly green color. Web safe color of #9EF509 is #99FF00 (or #9F0).
#9EF509 color RGB value is (158,245,9).
RGB: (158,245,9) (62%,96%,4%)
R 158 of 255 = 62%
G 245 of 255 = 96%
B 9 of 255 = 4%
R + G + B ~ 54%. #9EF509 is middle color (not dark and not light).
R + G + B =
158 + 245 + 9 = 412 (100%)
R 158 of 412 ~ 38.35%
G 245 of 412 ~ 59.47%
B 9 of 412 ~ 2.18%
#9EF509 color CMYK value is (36,0,96,4).
CMYK: (36,0,96,4) C36M0Y96K4 (36%,0%,96%,4%) (0.36/0.00/0.96/0.04)
9E | F5 | 09 | |
---|---|---|---|
RGB | 158 | 245 | 9 |
HSL | 82° | 92.91% | 49.80% |
HSB/HSV | 82° | 96.33% | 96.08% |
CMYK | 35.51% | 0.00% | 96.33% |
3.92% |
HEX | 9E | F5 | 09 |
Decimal | 158 | 245 | 9 |
Binary | 10011110 | 11110101 | 1001 |
Octal | 236 | 365 | 11 |
Examples of css and html codes for elements with #9EF509 color. Also use rgb(158,245,9) instead hex code.
.myTextColor { color: #9EF509; }
<p style="color:#9EF509">This sample text font color is #9EF509.</p>
This text font color is #9EF509.
.myBgColor { background-color: #9EF509; }
<div style="background-color:#9EF509">Inner text</div>
This div background color is #9EF509.
.myBorderColor { border: 1px solid #9EF509; }
<div style="border:3px solid #9EF509">Div</div>
This div border color is #9EF509.
.myOpacity80 { color: #9EF509; opacity: 0.8; }
<p style="color:#9EF509;opacity:0.8;">80%</p>
Text with #9EF509 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9EF509;}
<p style="text-shadow: 3px 3px 1px #9EF509">Text here.</p>
This text has shadow with #9EF509 color.
.textShadow {text-shadow: 3px 3px 1px #9EF509, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9EF509, 5px 5px 20px red">Text here.</p>
This text has shadow with #9EF509 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9EF509, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9EF509, Direction=45, Strength=4)">Text</p>
This text has shadow with #9EF509 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9EF509; -webkit-box-shadow: 1px 1px 3px 2px #9EF509; box-shadow: 1px 1px 3px 2px #9EF509; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9EF509; -webkit-box-shadow: 1px 1px 3px 2px #9EF509; box-shadow:1px 1px 3px 2px #9EF509;">
Div content here</div>
This text has color #9EF509 on black background.
This text has color #9EF509 on white background.
This text has black color on #9EF509 background.
This text has white color on #9EF509 background.