HEX: #59AF63
RGB: (89,175,99)
#59AF63 contains mainly green color. Web safe color of #59AF63 is #669966 (or #696).
#59AF63 color RGB value is (89,175,99).
RGB: (89,175,99) (35%,69%,39%)
R 89 of 255 = 35%
G 175 of 255 = 69%
B 99 of 255 = 39%
R + G + B ~ 48%. #59AF63 is middle color (not dark and not light).
R + G + B =
89 + 175 + 99 = 363 (100%)
R 89 of 363 ~ 24.52%
G 175 of 363 ~ 48.21%
B 99 of 363 ~ 27.27%
#59AF63 color CMYK value is (49,0,43,31).
CMYK: (49,0,43,31) C49M0Y43K31 (49%,0%,43%,31%) (0.49/0.00/0.43/0.31)
59 | AF | 63 | |
---|---|---|---|
RGB | 89 | 175 | 99 |
HSL | 127° | 34.96% | 51.76% |
HSB/HSV | 127° | 49.14% | 68.63% |
CMYK | 49.14% | 0.00% | 43.43% |
31.37% |
HEX | 59 | AF | 63 |
Decimal | 89 | 175 | 99 |
Binary | 1011001 | 10101111 | 1100011 |
Octal | 131 | 257 | 143 |
Examples of css and html codes for elements with #59AF63 color. Also use rgb(89,175,99) instead hex code.
.myTextColor { color: #59AF63; }
<p style="color:#59AF63">This sample text font color is #59AF63.</p>
This text font color is #59AF63.
.myBgColor { background-color: #59AF63; }
<div style="background-color:#59AF63">Inner text</div>
This div background color is #59AF63.
.myBorderColor { border: 1px solid #59AF63; }
<div style="border:3px solid #59AF63">Div</div>
This div border color is #59AF63.
.myOpacity80 { color: #59AF63; opacity: 0.8; }
<p style="color:#59AF63;opacity:0.8;">80%</p>
Text with #59AF63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #59AF63;}
<p style="text-shadow: 3px 3px 1px #59AF63">Text here.</p>
This text has shadow with #59AF63 color.
.textShadow {text-shadow: 3px 3px 1px #59AF63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #59AF63, 5px 5px 20px red">Text here.</p>
This text has shadow with #59AF63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#59AF63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#59AF63, Direction=45, Strength=4)">Text</p>
This text has shadow with #59AF63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #59AF63; -webkit-box-shadow: 1px 1px 3px 2px #59AF63; box-shadow: 1px 1px 3px 2px #59AF63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #59AF63; -webkit-box-shadow: 1px 1px 3px 2px #59AF63; box-shadow:1px 1px 3px 2px #59AF63;">
Div content here</div>
This text has color #59AF63 on black background.
This text has color #59AF63 on white background.
This text has black color on #59AF63 background.
This text has white color on #59AF63 background.