HEX: #73686D
RGB: (115,104,109)
#73686D contains red, green and blue colors in about the same proportion. Web safe color of #73686D is #666666 (or #666).
#73686D color RGB value is (115,104,109).
RGB: (115,104,109) (45%,41%,43%)
R 115 of 255 = 45%
G 104 of 255 = 41%
B 109 of 255 = 43%
R + G + B ~ 43%. #73686D is middle color (not dark and not light).
R + G + B =
115 + 104 + 109 = 328 (100%)
R 115 of 328 ~ 35.06%
G 104 of 328 ~ 31.71%
B 109 of 328 ~ 33.23%
#73686D color CMYK value is (0,10,5,55).
CMYK: (0,10,5,55) C0M10Y5K55 (0%,10%,5%,55%) (0.00/0.10/0.05/0.55)
73 | 68 | 6D | |
---|---|---|---|
RGB | 115 | 104 | 109 |
HSL | 333° | 5.02% | 42.94% |
HSB/HSV | 333° | 9.57% | 45.10% |
CMYK | 0.00% | 9.57% | 5.22% |
54.90% |
HEX | 73 | 68 | 6D |
Decimal | 115 | 104 | 109 |
Binary | 1110011 | 1101000 | 1101101 |
Octal | 163 | 150 | 155 |
Examples of css and html codes for elements with #73686D color. Also use rgb(115,104,109) instead hex code.
.myTextColor { color: #73686D; }
<p style="color:#73686D">This sample text font color is #73686D.</p>
This text font color is #73686D.
.myBgColor { background-color: #73686D; }
<div style="background-color:#73686D">Inner text</div>
This div background color is #73686D.
.myBorderColor { border: 1px solid #73686D; }
<div style="border:3px solid #73686D">Div</div>
This div border color is #73686D.
.myOpacity80 { color: #73686D; opacity: 0.8; }
<p style="color:#73686D;opacity:0.8;">80%</p>
Text with #73686D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #73686D;}
<p style="text-shadow: 3px 3px 1px #73686D">Text here.</p>
This text has shadow with #73686D color.
.textShadow {text-shadow: 3px 3px 1px #73686D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #73686D, 5px 5px 20px red">Text here.</p>
This text has shadow with #73686D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#73686D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#73686D, Direction=45, Strength=4)">Text</p>
This text has shadow with #73686D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #73686D; -webkit-box-shadow: 1px 1px 3px 2px #73686D; box-shadow: 1px 1px 3px 2px #73686D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #73686D; -webkit-box-shadow: 1px 1px 3px 2px #73686D; box-shadow:1px 1px 3px 2px #73686D;">
Div content here</div>
This text has color #73686D on black background.
This text has color #73686D on white background.
This text has black color on #73686D background.
This text has white color on #73686D background.