HEX: #8B767C
RGB: (139,118,124)
#8B767C contains red, green and blue colors in about the same proportion. Web safe color of #8B767C is #996666 (or #966).
#8B767C color RGB value is (139,118,124).
RGB: (139,118,124) (55%,46%,49%)
R 139 of 255 = 55%
G 118 of 255 = 46%
B 124 of 255 = 49%
R + G + B ~ 50%. #8B767C is middle color (not dark and not light).
R + G + B =
139 + 118 + 124 = 381 (100%)
R 139 of 381 ~ 36.48%
G 118 of 381 ~ 30.97%
B 124 of 381 ~ 32.55%
#8B767C color CMYK value is (0,15,11,45).
CMYK: (0,15,11,45) C0M15Y11K45 (0%,15%,11%,45%) (0.00/0.15/0.11/0.45)
8B | 76 | 7C | |
---|---|---|---|
RGB | 139 | 118 | 124 |
HSL | 343° | 8.30% | 50.39% |
HSB/HSV | 343° | 15.11% | 54.51% |
CMYK | 0.00% | 15.11% | 10.79% |
45.49% |
HEX | 8B | 76 | 7C |
Decimal | 139 | 118 | 124 |
Binary | 10001011 | 1110110 | 1111100 |
Octal | 213 | 166 | 174 |
Examples of css and html codes for elements with #8B767C color. Also use rgb(139,118,124) instead hex code.
.myTextColor { color: #8B767C; }
<p style="color:#8B767C">This sample text font color is #8B767C.</p>
This text font color is #8B767C.
.myBgColor { background-color: #8B767C; }
<div style="background-color:#8B767C">Inner text</div>
This div background color is #8B767C.
.myBorderColor { border: 1px solid #8B767C; }
<div style="border:3px solid #8B767C">Div</div>
This div border color is #8B767C.
.myOpacity80 { color: #8B767C; opacity: 0.8; }
<p style="color:#8B767C;opacity:0.8;">80%</p>
Text with #8B767C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8B767C;}
<p style="text-shadow: 3px 3px 1px #8B767C">Text here.</p>
This text has shadow with #8B767C color.
.textShadow {text-shadow: 3px 3px 1px #8B767C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8B767C, 5px 5px 20px red">Text here.</p>
This text has shadow with #8B767C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8B767C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8B767C, Direction=45, Strength=4)">Text</p>
This text has shadow with #8B767C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8B767C; -webkit-box-shadow: 1px 1px 3px 2px #8B767C; box-shadow: 1px 1px 3px 2px #8B767C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8B767C; -webkit-box-shadow: 1px 1px 3px 2px #8B767C; box-shadow:1px 1px 3px 2px #8B767C;">
Div content here</div>
This text has color #8B767C on black background.
This text has color #8B767C on white background.
This text has black color on #8B767C background.
This text has white color on #8B767C background.