HEX: #686665
RGB: (104,102,101)
#686665 contains red, green and blue colors in about the same proportion. Web safe color of #686665 is #666666 (or #666).
#686665 color RGB value is (104,102,101).
RGB: (104,102,101) (41%,40%,40%)
R 104 of 255 = 41%
G 102 of 255 = 40%
B 101 of 255 = 40%
R + G + B ~ 40%. #686665 is middle color (not dark and not light).
R + G + B =
104 + 102 + 101 = 307 (100%)
R 104 of 307 ~ 33.88%
G 102 of 307 ~ 33.22%
B 101 of 307 ~ 32.9%
#686665 color CMYK value is (0,2,3,59).
CMYK: (0,2,3,59) C0M2Y3K59 (0%,2%,3%,59%) (0.00/0.02/0.03/0.59)
68 | 66 | 65 | |
---|---|---|---|
RGB | 104 | 102 | 101 |
HSL | 20° | 1.46% | 40.20% |
HSB/HSV | 20° | 2.88% | 40.78% |
CMYK | 0.00% | 1.92% | 2.88% |
59.22% |
HEX | 68 | 66 | 65 |
Decimal | 104 | 102 | 101 |
Binary | 1101000 | 1100110 | 1100101 |
Octal | 150 | 146 | 145 |
Examples of css and html codes for elements with #686665 color. Also use rgb(104,102,101) instead hex code.
.myTextColor { color: #686665; }
<p style="color:#686665">This sample text font color is #686665.</p>
This text font color is #686665.
.myBgColor { background-color: #686665; }
<div style="background-color:#686665">Inner text</div>
This div background color is #686665.
.myBorderColor { border: 1px solid #686665; }
<div style="border:3px solid #686665">Div</div>
This div border color is #686665.
.myOpacity80 { color: #686665; opacity: 0.8; }
<p style="color:#686665;opacity:0.8;">80%</p>
Text with #686665 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #686665;}
<p style="text-shadow: 3px 3px 1px #686665">Text here.</p>
This text has shadow with #686665 color.
.textShadow {text-shadow: 3px 3px 1px #686665, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #686665, 5px 5px 20px red">Text here.</p>
This text has shadow with #686665 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#686665, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#686665, Direction=45, Strength=4)">Text</p>
This text has shadow with #686665 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #686665; -webkit-box-shadow: 1px 1px 3px 2px #686665; box-shadow: 1px 1px 3px 2px #686665; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #686665; -webkit-box-shadow: 1px 1px 3px 2px #686665; box-shadow:1px 1px 3px 2px #686665;">
Div content here</div>
This text has color #686665 on black background.
This text has color #686665 on white background.
This text has black color on #686665 background.
This text has white color on #686665 background.