HEX: #4DAF60
RGB: (77,175,96)
#4DAF60 contains mainly green color. Web safe color of #4DAF60 is #339966 (or #396).
#4DAF60 color RGB value is (77,175,96).
RGB: (77,175,96) (30%,69%,38%)
R 77 of 255 = 30%
G 175 of 255 = 69%
B 96 of 255 = 38%
R + G + B ~ 46%. #4DAF60 is middle color (not dark and not light).
R + G + B =
77 + 175 + 96 = 348 (100%)
R 77 of 348 ~ 22.13%
G 175 of 348 ~ 50.29%
B 96 of 348 ~ 27.59%
#4DAF60 color CMYK value is (56,0,45,31).
CMYK: (56,0,45,31) C56M0Y45K31 (56%,0%,45%,31%) (0.56/0.00/0.45/0.31)
4D | AF | 60 | |
---|---|---|---|
RGB | 77 | 175 | 96 |
HSL | 132° | 38.89% | 49.41% |
HSB/HSV | 132° | 56.00% | 68.63% |
CMYK | 56.00% | 0.00% | 45.14% |
31.37% |
HEX | 4D | AF | 60 |
Decimal | 77 | 175 | 96 |
Binary | 1001101 | 10101111 | 1100000 |
Octal | 115 | 257 | 140 |
Examples of css and html codes for elements with #4DAF60 color. Also use rgb(77,175,96) instead hex code.
.myTextColor { color: #4DAF60; }
<p style="color:#4DAF60">This sample text font color is #4DAF60.</p>
This text font color is #4DAF60.
.myBgColor { background-color: #4DAF60; }
<div style="background-color:#4DAF60">Inner text</div>
This div background color is #4DAF60.
.myBorderColor { border: 1px solid #4DAF60; }
<div style="border:3px solid #4DAF60">Div</div>
This div border color is #4DAF60.
.myOpacity80 { color: #4DAF60; opacity: 0.8; }
<p style="color:#4DAF60;opacity:0.8;">80%</p>
Text with #4DAF60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DAF60;}
<p style="text-shadow: 3px 3px 1px #4DAF60">Text here.</p>
This text has shadow with #4DAF60 color.
.textShadow {text-shadow: 3px 3px 1px #4DAF60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DAF60, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DAF60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DAF60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DAF60, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DAF60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DAF60; -webkit-box-shadow: 1px 1px 3px 2px #4DAF60; box-shadow: 1px 1px 3px 2px #4DAF60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DAF60; -webkit-box-shadow: 1px 1px 3px 2px #4DAF60; box-shadow:1px 1px 3px 2px #4DAF60;">
Div content here</div>
This text has color #4DAF60 on black background.
This text has color #4DAF60 on white background.
This text has black color on #4DAF60 background.
This text has white color on #4DAF60 background.