HEX: #77B388
RGB: (119,179,136)
#77B388 contains mainly green and blue colors. Web safe color of #77B388 is #669999 (or #699).
#77B388 color RGB value is (119,179,136).
RGB: (119,179,136) (47%,70%,53%)
R 119 of 255 = 47%
G 179 of 255 = 70%
B 136 of 255 = 53%
R + G + B ~ 57%. #77B388 is middle color (not dark and not light).
R + G + B =
119 + 179 + 136 = 434 (100%)
R 119 of 434 ~ 27.42%
G 179 of 434 ~ 41.24%
B 136 of 434 ~ 31.34%
#77B388 color CMYK value is (34,0,24,30).
CMYK: (34,0,24,30) C34M0Y24K30 (34%,0%,24%,30%) (0.34/0.00/0.24/0.30)
77 | B3 | 88 | |
---|---|---|---|
RGB | 119 | 179 | 136 |
HSL | 137° | 28.30% | 58.43% |
HSB/HSV | 137° | 33.52% | 70.20% |
CMYK | 33.52% | 0.00% | 24.02% |
29.80% |
HEX | 77 | B3 | 88 |
Decimal | 119 | 179 | 136 |
Binary | 1110111 | 10110011 | 10001000 |
Octal | 167 | 263 | 210 |
Examples of css and html codes for elements with #77B388 color. Also use rgb(119,179,136) instead hex code.
.myTextColor { color: #77B388; }
<p style="color:#77B388">This sample text font color is #77B388.</p>
This text font color is #77B388.
.myBgColor { background-color: #77B388; }
<div style="background-color:#77B388">Inner text</div>
This div background color is #77B388.
.myBorderColor { border: 1px solid #77B388; }
<div style="border:3px solid #77B388">Div</div>
This div border color is #77B388.
.myOpacity80 { color: #77B388; opacity: 0.8; }
<p style="color:#77B388;opacity:0.8;">80%</p>
Text with #77B388 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77B388;}
<p style="text-shadow: 3px 3px 1px #77B388">Text here.</p>
This text has shadow with #77B388 color.
.textShadow {text-shadow: 3px 3px 1px #77B388, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77B388, 5px 5px 20px red">Text here.</p>
This text has shadow with #77B388 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77B388, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77B388, Direction=45, Strength=4)">Text</p>
This text has shadow with #77B388 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77B388; -webkit-box-shadow: 1px 1px 3px 2px #77B388; box-shadow: 1px 1px 3px 2px #77B388; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77B388; -webkit-box-shadow: 1px 1px 3px 2px #77B388; box-shadow:1px 1px 3px 2px #77B388;">
Div content here</div>
This text has color #77B388 on black background.
This text has color #77B388 on white background.
This text has black color on #77B388 background.
This text has white color on #77B388 background.