HEX: #59BF40
RGB: (89,191,64)
#59BF40 contains mainly green color. Web safe color of #59BF40 is #66CC33 (or #6C3).
#59BF40 color RGB value is (89,191,64).
RGB: (89,191,64) (35%,75%,25%)
R 89 of 255 = 35%
G 191 of 255 = 75%
B 64 of 255 = 25%
R + G + B ~ 45%. #59BF40 is middle color (not dark and not light).
R + G + B =
89 + 191 + 64 = 344 (100%)
R 89 of 344 ~ 25.87%
G 191 of 344 ~ 55.52%
B 64 of 344 ~ 18.6%
#59BF40 color CMYK value is (53,0,66,25).
CMYK: (53,0,66,25) C53M0Y66K25 (53%,0%,66%,25%) (0.53/0.00/0.66/0.25)
59 | BF | 40 | |
---|---|---|---|
RGB | 89 | 191 | 64 |
HSL | 108° | 49.80% | 50.00% |
HSB/HSV | 108° | 66.49% | 74.90% |
CMYK | 53.40% | 0.00% | 66.49% |
25.10% |
HEX | 59 | BF | 40 |
Decimal | 89 | 191 | 64 |
Binary | 1011001 | 10111111 | 1000000 |
Octal | 131 | 277 | 100 |
Examples of css and html codes for elements with #59BF40 color. Also use rgb(89,191,64) instead hex code.
.myTextColor { color: #59BF40; }
<p style="color:#59BF40">This sample text font color is #59BF40.</p>
This text font color is #59BF40.
.myBgColor { background-color: #59BF40; }
<div style="background-color:#59BF40">Inner text</div>
This div background color is #59BF40.
.myBorderColor { border: 1px solid #59BF40; }
<div style="border:3px solid #59BF40">Div</div>
This div border color is #59BF40.
.myOpacity80 { color: #59BF40; opacity: 0.8; }
<p style="color:#59BF40;opacity:0.8;">80%</p>
Text with #59BF40 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #59BF40;}
<p style="text-shadow: 3px 3px 1px #59BF40">Text here.</p>
This text has shadow with #59BF40 color.
.textShadow {text-shadow: 3px 3px 1px #59BF40, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #59BF40, 5px 5px 20px red">Text here.</p>
This text has shadow with #59BF40 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#59BF40, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#59BF40, Direction=45, Strength=4)">Text</p>
This text has shadow with #59BF40 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #59BF40; -webkit-box-shadow: 1px 1px 3px 2px #59BF40; box-shadow: 1px 1px 3px 2px #59BF40; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #59BF40; -webkit-box-shadow: 1px 1px 3px 2px #59BF40; box-shadow:1px 1px 3px 2px #59BF40;">
Div content here</div>
This text has color #59BF40 on black background.
This text has color #59BF40 on white background.
This text has black color on #59BF40 background.
This text has white color on #59BF40 background.