HEX: #77C4AB
RGB: (119,196,171)
#77C4AB contains mainly green and blue colors. Web safe color of #77C4AB is #66CC99 (or #6C9).
#77C4AB color RGB value is (119,196,171).
RGB: (119,196,171) (47%,77%,67%)
R 119 of 255 = 47%
G 196 of 255 = 77%
B 171 of 255 = 67%
R + G + B ~ 64%. #77C4AB is quite light color.
R + G + B =
119 + 196 + 171 = 486 (100%)
R 119 of 486 ~ 24.49%
G 196 of 486 ~ 40.33%
B 171 of 486 ~ 35.19%
#77C4AB color CMYK value is (39,0,13,23).
CMYK: (39,0,13,23) C39M0Y13K23 (39%,0%,13%,23%) (0.39/0.00/0.13/0.23)
77 | C4 | AB | |
---|---|---|---|
RGB | 119 | 196 | 171 |
HSL | 161° | 39.49% | 61.76% |
HSB/HSV | 161° | 39.29% | 76.86% |
CMYK | 39.29% | 0.00% | 12.76% |
23.14% |
HEX | 77 | C4 | AB |
Decimal | 119 | 196 | 171 |
Binary | 1110111 | 11000100 | 10101011 |
Octal | 167 | 304 | 253 |
Examples of css and html codes for elements with #77C4AB color. Also use rgb(119,196,171) instead hex code.
.myTextColor { color: #77C4AB; }
<p style="color:#77C4AB">This sample text font color is #77C4AB.</p>
This text font color is #77C4AB.
.myBgColor { background-color: #77C4AB; }
<div style="background-color:#77C4AB">Inner text</div>
This div background color is #77C4AB.
.myBorderColor { border: 1px solid #77C4AB; }
<div style="border:3px solid #77C4AB">Div</div>
This div border color is #77C4AB.
.myOpacity80 { color: #77C4AB; opacity: 0.8; }
<p style="color:#77C4AB;opacity:0.8;">80%</p>
Text with #77C4AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77C4AB;}
<p style="text-shadow: 3px 3px 1px #77C4AB">Text here.</p>
This text has shadow with #77C4AB color.
.textShadow {text-shadow: 3px 3px 1px #77C4AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77C4AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #77C4AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77C4AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77C4AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #77C4AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77C4AB; -webkit-box-shadow: 1px 1px 3px 2px #77C4AB; box-shadow: 1px 1px 3px 2px #77C4AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77C4AB; -webkit-box-shadow: 1px 1px 3px 2px #77C4AB; box-shadow:1px 1px 3px 2px #77C4AB;">
Div content here</div>
This text has color #77C4AB on black background.
This text has color #77C4AB on white background.
This text has black color on #77C4AB background.
This text has white color on #77C4AB background.