HEX: #686880
RGB: (104,104,128)
#686880 contains red, green and blue colors in about the same proportion. Web safe color of #686880 is #666666 (or #666).
#686880 color RGB value is (104,104,128).
RGB: (104,104,128) (41%,41%,50%)
R 104 of 255 = 41%
G 104 of 255 = 41%
B 128 of 255 = 50%
R + G + B ~ 44%. #686880 is middle color (not dark and not light).
R + G + B =
104 + 104 + 128 = 336 (100%)
R 104 of 336 ~ 30.95%
G 104 of 336 ~ 30.95%
B 128 of 336 ~ 38.1%
#686880 color CMYK value is (19,19,0,50).
CMYK: (19,19,0,50) C19M19Y0K50 (19%,19%,0%,50%) (0.19/0.19/0.00/0.50)
68 | 68 | 80 | |
---|---|---|---|
RGB | 104 | 104 | 128 |
HSL | 240° | 10.34% | 45.49% |
HSB/HSV | 240° | 18.75% | 50.20% |
CMYK | 18.75% | 18.75% | 0.00% |
49.80% |
HEX | 68 | 68 | 80 |
Decimal | 104 | 104 | 128 |
Binary | 1101000 | 1101000 | 10000000 |
Octal | 150 | 150 | 200 |
Examples of css and html codes for elements with #686880 color. Also use rgb(104,104,128) instead hex code.
.myTextColor { color: #686880; }
<p style="color:#686880">This sample text font color is #686880.</p>
This text font color is #686880.
.myBgColor { background-color: #686880; }
<div style="background-color:#686880">Inner text</div>
This div background color is #686880.
.myBorderColor { border: 1px solid #686880; }
<div style="border:3px solid #686880">Div</div>
This div border color is #686880.
.myOpacity80 { color: #686880; opacity: 0.8; }
<p style="color:#686880;opacity:0.8;">80%</p>
Text with #686880 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #686880;}
<p style="text-shadow: 3px 3px 1px #686880">Text here.</p>
This text has shadow with #686880 color.
.textShadow {text-shadow: 3px 3px 1px #686880, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #686880, 5px 5px 20px red">Text here.</p>
This text has shadow with #686880 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#686880, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#686880, Direction=45, Strength=4)">Text</p>
This text has shadow with #686880 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #686880; -webkit-box-shadow: 1px 1px 3px 2px #686880; box-shadow: 1px 1px 3px 2px #686880; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #686880; -webkit-box-shadow: 1px 1px 3px 2px #686880; box-shadow:1px 1px 3px 2px #686880;">
Div content here</div>
This text has color #686880 on black background.
This text has color #686880 on white background.
This text has black color on #686880 background.
This text has white color on #686880 background.