HEX: #77867D
RGB: (119,134,125)
#77867D contains red, green and blue colors in about the same proportion. Web safe color of #77867D is #669966 (or #696).
#77867D color RGB value is (119,134,125).
RGB: (119,134,125) (47%,53%,49%)
R 119 of 255 = 47%
G 134 of 255 = 53%
B 125 of 255 = 49%
R + G + B ~ 50%. #77867D is middle color (not dark and not light).
R + G + B =
119 + 134 + 125 = 378 (100%)
R 119 of 378 ~ 31.48%
G 134 of 378 ~ 35.45%
B 125 of 378 ~ 33.07%
#77867D color CMYK value is (11,0,7,47).
CMYK: (11,0,7,47) C11M0Y7K47 (11%,0%,7%,47%) (0.11/0.00/0.07/0.47)
77 | 86 | 7D | |
---|---|---|---|
RGB | 119 | 134 | 125 |
HSL | 144° | 5.93% | 49.61% |
HSB/HSV | 144° | 11.19% | 52.55% |
CMYK | 11.19% | 0.00% | 6.72% |
47.45% |
HEX | 77 | 86 | 7D |
Decimal | 119 | 134 | 125 |
Binary | 1110111 | 10000110 | 1111101 |
Octal | 167 | 206 | 175 |
Examples of css and html codes for elements with #77867D color. Also use rgb(119,134,125) instead hex code.
.myTextColor { color: #77867D; }
<p style="color:#77867D">This sample text font color is #77867D.</p>
This text font color is #77867D.
.myBgColor { background-color: #77867D; }
<div style="background-color:#77867D">Inner text</div>
This div background color is #77867D.
.myBorderColor { border: 1px solid #77867D; }
<div style="border:3px solid #77867D">Div</div>
This div border color is #77867D.
.myOpacity80 { color: #77867D; opacity: 0.8; }
<p style="color:#77867D;opacity:0.8;">80%</p>
Text with #77867D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77867D;}
<p style="text-shadow: 3px 3px 1px #77867D">Text here.</p>
This text has shadow with #77867D color.
.textShadow {text-shadow: 3px 3px 1px #77867D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77867D, 5px 5px 20px red">Text here.</p>
This text has shadow with #77867D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77867D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77867D, Direction=45, Strength=4)">Text</p>
This text has shadow with #77867D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77867D; -webkit-box-shadow: 1px 1px 3px 2px #77867D; box-shadow: 1px 1px 3px 2px #77867D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77867D; -webkit-box-shadow: 1px 1px 3px 2px #77867D; box-shadow:1px 1px 3px 2px #77867D;">
Div content here</div>
This text has color #77867D on black background.
This text has color #77867D on white background.
This text has black color on #77867D background.
This text has white color on #77867D background.