HEX: #59C253
RGB: (89,194,83)
#59C253 contains mainly green color. Web safe color of #59C253 is #66CC66 (or #6C6).
#59C253 color RGB value is (89,194,83).
RGB: (89,194,83) (35%,76%,33%)
R 89 of 255 = 35%
G 194 of 255 = 76%
B 83 of 255 = 33%
R + G + B ~ 48%. #59C253 is middle color (not dark and not light).
R + G + B =
89 + 194 + 83 = 366 (100%)
R 89 of 366 ~ 24.32%
G 194 of 366 ~ 53.01%
B 83 of 366 ~ 22.68%
#59C253 color CMYK value is (54,0,57,24).
CMYK: (54,0,57,24) C54M0Y57K24 (54%,0%,57%,24%) (0.54/0.00/0.57/0.24)
59 | C2 | 53 | |
---|---|---|---|
RGB | 89 | 194 | 83 |
HSL | 117° | 47.64% | 54.31% |
HSB/HSV | 117° | 57.22% | 76.08% |
CMYK | 54.12% | 0.00% | 57.22% |
23.92% |
HEX | 59 | C2 | 53 |
Decimal | 89 | 194 | 83 |
Binary | 1011001 | 11000010 | 1010011 |
Octal | 131 | 302 | 123 |
Examples of css and html codes for elements with #59C253 color. Also use rgb(89,194,83) instead hex code.
.myTextColor { color: #59C253; }
<p style="color:#59C253">This sample text font color is #59C253.</p>
This text font color is #59C253.
.myBgColor { background-color: #59C253; }
<div style="background-color:#59C253">Inner text</div>
This div background color is #59C253.
.myBorderColor { border: 1px solid #59C253; }
<div style="border:3px solid #59C253">Div</div>
This div border color is #59C253.
.myOpacity80 { color: #59C253; opacity: 0.8; }
<p style="color:#59C253;opacity:0.8;">80%</p>
Text with #59C253 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #59C253;}
<p style="text-shadow: 3px 3px 1px #59C253">Text here.</p>
This text has shadow with #59C253 color.
.textShadow {text-shadow: 3px 3px 1px #59C253, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #59C253, 5px 5px 20px red">Text here.</p>
This text has shadow with #59C253 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#59C253, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#59C253, Direction=45, Strength=4)">Text</p>
This text has shadow with #59C253 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #59C253; -webkit-box-shadow: 1px 1px 3px 2px #59C253; box-shadow: 1px 1px 3px 2px #59C253; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #59C253; -webkit-box-shadow: 1px 1px 3px 2px #59C253; box-shadow:1px 1px 3px 2px #59C253;">
Div content here</div>
This text has color #59C253 on black background.
This text has color #59C253 on white background.
This text has black color on #59C253 background.
This text has white color on #59C253 background.