HEX: #9BE479
RGB: (155,228,121)
#9BE479 contains mainly green color. Web safe color of #9BE479 is #99CC66 (or #9C6).
#9BE479 color RGB value is (155,228,121).
RGB: (155,228,121) (61%,89%,47%)
R 155 of 255 = 61%
G 228 of 255 = 89%
B 121 of 255 = 47%
R + G + B ~ 66%. #9BE479 is quite light color.
R + G + B =
155 + 228 + 121 = 504 (100%)
R 155 of 504 ~ 30.75%
G 228 of 504 ~ 45.24%
B 121 of 504 ~ 24.01%
#9BE479 color CMYK value is (32,0,47,11).
CMYK: (32,0,47,11) C32M0Y47K11 (32%,0%,47%,11%) (0.32/0.00/0.47/0.11)
9B | E4 | 79 | |
---|---|---|---|
RGB | 155 | 228 | 121 |
HSL | 101° | 66.46% | 68.43% |
HSB/HSV | 101° | 46.93% | 89.41% |
CMYK | 32.02% | 0.00% | 46.93% |
10.59% |
HEX | 9B | E4 | 79 |
Decimal | 155 | 228 | 121 |
Binary | 10011011 | 11100100 | 1111001 |
Octal | 233 | 344 | 171 |
Examples of css and html codes for elements with #9BE479 color. Also use rgb(155,228,121) instead hex code.
.myTextColor { color: #9BE479; }
<p style="color:#9BE479">This sample text font color is #9BE479.</p>
This text font color is #9BE479.
.myBgColor { background-color: #9BE479; }
<div style="background-color:#9BE479">Inner text</div>
This div background color is #9BE479.
.myBorderColor { border: 1px solid #9BE479; }
<div style="border:3px solid #9BE479">Div</div>
This div border color is #9BE479.
.myOpacity80 { color: #9BE479; opacity: 0.8; }
<p style="color:#9BE479;opacity:0.8;">80%</p>
Text with #9BE479 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9BE479;}
<p style="text-shadow: 3px 3px 1px #9BE479">Text here.</p>
This text has shadow with #9BE479 color.
.textShadow {text-shadow: 3px 3px 1px #9BE479, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9BE479, 5px 5px 20px red">Text here.</p>
This text has shadow with #9BE479 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9BE479, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9BE479, Direction=45, Strength=4)">Text</p>
This text has shadow with #9BE479 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9BE479; -webkit-box-shadow: 1px 1px 3px 2px #9BE479; box-shadow: 1px 1px 3px 2px #9BE479; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9BE479; -webkit-box-shadow: 1px 1px 3px 2px #9BE479; box-shadow:1px 1px 3px 2px #9BE479;">
Div content here</div>
This text has color #9BE479 on black background.
This text has color #9BE479 on white background.
This text has black color on #9BE479 background.
This text has white color on #9BE479 background.