HEX: #686961
RGB: (104,105,97)
#686961 contains red, green and blue colors in about the same proportion. Web safe color of #686961 is #666666 (or #666).
#686961 color RGB value is (104,105,97).
RGB: (104,105,97) (41%,41%,38%)
R 104 of 255 = 41%
G 105 of 255 = 41%
B 97 of 255 = 38%
R + G + B ~ 40%. #686961 is middle color (not dark and not light).
R + G + B =
104 + 105 + 97 = 306 (100%)
R 104 of 306 ~ 33.99%
G 105 of 306 ~ 34.31%
B 97 of 306 ~ 31.7%
#686961 color CMYK value is (1,0,8,59).
CMYK: (1,0,8,59) C1M0Y8K59 (1%,0%,8%,59%) (0.01/0.00/0.08/0.59)
68 | 69 | 61 | |
---|---|---|---|
RGB | 104 | 105 | 97 |
HSL | 68° | 3.96% | 39.61% |
HSB/HSV | 68° | 7.62% | 41.18% |
CMYK | 0.95% | 0.00% | 7.62% |
58.82% |
HEX | 68 | 69 | 61 |
Decimal | 104 | 105 | 97 |
Binary | 1101000 | 1101001 | 1100001 |
Octal | 150 | 151 | 141 |
Examples of css and html codes for elements with #686961 color. Also use rgb(104,105,97) instead hex code.
.myTextColor { color: #686961; }
<p style="color:#686961">This sample text font color is #686961.</p>
This text font color is #686961.
.myBgColor { background-color: #686961; }
<div style="background-color:#686961">Inner text</div>
This div background color is #686961.
.myBorderColor { border: 1px solid #686961; }
<div style="border:3px solid #686961">Div</div>
This div border color is #686961.
.myOpacity80 { color: #686961; opacity: 0.8; }
<p style="color:#686961;opacity:0.8;">80%</p>
Text with #686961 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #686961;}
<p style="text-shadow: 3px 3px 1px #686961">Text here.</p>
This text has shadow with #686961 color.
.textShadow {text-shadow: 3px 3px 1px #686961, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #686961, 5px 5px 20px red">Text here.</p>
This text has shadow with #686961 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#686961, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#686961, Direction=45, Strength=4)">Text</p>
This text has shadow with #686961 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #686961; -webkit-box-shadow: 1px 1px 3px 2px #686961; box-shadow: 1px 1px 3px 2px #686961; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #686961; -webkit-box-shadow: 1px 1px 3px 2px #686961; box-shadow:1px 1px 3px 2px #686961;">
Div content here</div>
This text has color #686961 on black background.
This text has color #686961 on white background.
This text has black color on #686961 background.
This text has white color on #686961 background.