HEX: #89767D
RGB: (137,118,125)
#89767D contains red, green and blue colors in about the same proportion. Web safe color of #89767D is #996666 (or #966).
#89767D color RGB value is (137,118,125).
RGB: (137,118,125) (54%,46%,49%)
R 137 of 255 = 54%
G 118 of 255 = 46%
B 125 of 255 = 49%
R + G + B ~ 50%. #89767D is middle color (not dark and not light).
R + G + B =
137 + 118 + 125 = 380 (100%)
R 137 of 380 ~ 36.05%
G 118 of 380 ~ 31.05%
B 125 of 380 ~ 32.89%
#89767D color CMYK value is (0,14,9,46).
CMYK: (0,14,9,46) C0M14Y9K46 (0%,14%,9%,46%) (0.00/0.14/0.09/0.46)
89 | 76 | 7D | |
---|---|---|---|
RGB | 137 | 118 | 125 |
HSL | 338° | 7.45% | 50.00% |
HSB/HSV | 338° | 13.87% | 53.73% |
CMYK | 0.00% | 13.87% | 8.76% |
46.27% |
HEX | 89 | 76 | 7D |
Decimal | 137 | 118 | 125 |
Binary | 10001001 | 1110110 | 1111101 |
Octal | 211 | 166 | 175 |
Examples of css and html codes for elements with #89767D color. Also use rgb(137,118,125) instead hex code.
.myTextColor { color: #89767D; }
<p style="color:#89767D">This sample text font color is #89767D.</p>
This text font color is #89767D.
.myBgColor { background-color: #89767D; }
<div style="background-color:#89767D">Inner text</div>
This div background color is #89767D.
.myBorderColor { border: 1px solid #89767D; }
<div style="border:3px solid #89767D">Div</div>
This div border color is #89767D.
.myOpacity80 { color: #89767D; opacity: 0.8; }
<p style="color:#89767D;opacity:0.8;">80%</p>
Text with #89767D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #89767D;}
<p style="text-shadow: 3px 3px 1px #89767D">Text here.</p>
This text has shadow with #89767D color.
.textShadow {text-shadow: 3px 3px 1px #89767D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #89767D, 5px 5px 20px red">Text here.</p>
This text has shadow with #89767D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#89767D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#89767D, Direction=45, Strength=4)">Text</p>
This text has shadow with #89767D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #89767D; -webkit-box-shadow: 1px 1px 3px 2px #89767D; box-shadow: 1px 1px 3px 2px #89767D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #89767D; -webkit-box-shadow: 1px 1px 3px 2px #89767D; box-shadow:1px 1px 3px 2px #89767D;">
Div content here</div>
This text has color #89767D on black background.
This text has color #89767D on white background.
This text has black color on #89767D background.
This text has white color on #89767D background.