HEX: #77D480
RGB: (119,212,128)
#77D480 contains mainly green color. Web safe color of #77D480 is #66CC66 (or #6C6).
#77D480 color RGB value is (119,212,128).
RGB: (119,212,128) (47%,83%,50%)
R 119 of 255 = 47%
G 212 of 255 = 83%
B 128 of 255 = 50%
R + G + B ~ 60%. #77D480 is middle color (not dark and not light).
R + G + B =
119 + 212 + 128 = 459 (100%)
R 119 of 459 ~ 25.93%
G 212 of 459 ~ 46.19%
B 128 of 459 ~ 27.89%
#77D480 color CMYK value is (44,0,40,17).
CMYK: (44,0,40,17) C44M0Y40K17 (44%,0%,40%,17%) (0.44/0.00/0.40/0.17)
77 | D4 | 80 | |
---|---|---|---|
RGB | 119 | 212 | 128 |
HSL | 126° | 51.96% | 64.90% |
HSB/HSV | 126° | 43.87% | 83.14% |
CMYK | 43.87% | 0.00% | 39.62% |
16.86% |
HEX | 77 | D4 | 80 |
Decimal | 119 | 212 | 128 |
Binary | 1110111 | 11010100 | 10000000 |
Octal | 167 | 324 | 200 |
Examples of css and html codes for elements with #77D480 color. Also use rgb(119,212,128) instead hex code.
.myTextColor { color: #77D480; }
<p style="color:#77D480">This sample text font color is #77D480.</p>
This text font color is #77D480.
.myBgColor { background-color: #77D480; }
<div style="background-color:#77D480">Inner text</div>
This div background color is #77D480.
.myBorderColor { border: 1px solid #77D480; }
<div style="border:3px solid #77D480">Div</div>
This div border color is #77D480.
.myOpacity80 { color: #77D480; opacity: 0.8; }
<p style="color:#77D480;opacity:0.8;">80%</p>
Text with #77D480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77D480;}
<p style="text-shadow: 3px 3px 1px #77D480">Text here.</p>
This text has shadow with #77D480 color.
.textShadow {text-shadow: 3px 3px 1px #77D480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77D480, 5px 5px 20px red">Text here.</p>
This text has shadow with #77D480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77D480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77D480, Direction=45, Strength=4)">Text</p>
This text has shadow with #77D480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77D480; -webkit-box-shadow: 1px 1px 3px 2px #77D480; box-shadow: 1px 1px 3px 2px #77D480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77D480; -webkit-box-shadow: 1px 1px 3px 2px #77D480; box-shadow:1px 1px 3px 2px #77D480;">
Div content here</div>
This text has color #77D480 on black background.
This text has color #77D480 on white background.
This text has black color on #77D480 background.
This text has white color on #77D480 background.