HEX: #77888B
RGB: (119,136,139)
#77888B contains red, green and blue colors in about the same proportion. Web safe color of #77888B is #669999 (or #699).
#77888B color RGB value is (119,136,139).
RGB: (119,136,139) (47%,53%,55%)
R 119 of 255 = 47%
G 136 of 255 = 53%
B 139 of 255 = 55%
R + G + B ~ 52%. #77888B is middle color (not dark and not light).
R + G + B =
119 + 136 + 139 = 394 (100%)
R 119 of 394 ~ 30.2%
G 136 of 394 ~ 34.52%
B 139 of 394 ~ 35.28%
#77888B color CMYK value is (14,2,0,45).
CMYK: (14,2,0,45) C14M2Y0K45 (14%,2%,0%,45%) (0.14/0.02/0.00/0.45)
77 | 88 | 8B | |
---|---|---|---|
RGB | 119 | 136 | 139 |
HSL | 189° | 7.94% | 50.59% |
HSB/HSV | 189° | 14.39% | 54.51% |
CMYK | 14.39% | 2.16% | 0.00% |
45.49% |
HEX | 77 | 88 | 8B |
Decimal | 119 | 136 | 139 |
Binary | 1110111 | 10001000 | 10001011 |
Octal | 167 | 210 | 213 |
Examples of css and html codes for elements with #77888B color. Also use rgb(119,136,139) instead hex code.
.myTextColor { color: #77888B; }
<p style="color:#77888B">This sample text font color is #77888B.</p>
This text font color is #77888B.
.myBgColor { background-color: #77888B; }
<div style="background-color:#77888B">Inner text</div>
This div background color is #77888B.
.myBorderColor { border: 1px solid #77888B; }
<div style="border:3px solid #77888B">Div</div>
This div border color is #77888B.
.myOpacity80 { color: #77888B; opacity: 0.8; }
<p style="color:#77888B;opacity:0.8;">80%</p>
Text with #77888B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77888B;}
<p style="text-shadow: 3px 3px 1px #77888B">Text here.</p>
This text has shadow with #77888B color.
.textShadow {text-shadow: 3px 3px 1px #77888B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77888B, 5px 5px 20px red">Text here.</p>
This text has shadow with #77888B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77888B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77888B, Direction=45, Strength=4)">Text</p>
This text has shadow with #77888B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77888B; -webkit-box-shadow: 1px 1px 3px 2px #77888B; box-shadow: 1px 1px 3px 2px #77888B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77888B; -webkit-box-shadow: 1px 1px 3px 2px #77888B; box-shadow:1px 1px 3px 2px #77888B;">
Div content here</div>
This text has color #77888B on black background.
This text has color #77888B on white background.
This text has black color on #77888B background.
This text has white color on #77888B background.