HEX: #6B806C
RGB: (107,128,108)
#6B806C contains red, green and blue colors in about the same proportion. Web safe color of #6B806C is #666666 (or #666).
#6B806C color RGB value is (107,128,108).
RGB: (107,128,108) (42%,50%,42%)
R 107 of 255 = 42%
G 128 of 255 = 50%
B 108 of 255 = 42%
R + G + B ~ 45%. #6B806C is middle color (not dark and not light).
R + G + B =
107 + 128 + 108 = 343 (100%)
R 107 of 343 ~ 31.2%
G 128 of 343 ~ 37.32%
B 108 of 343 ~ 31.49%
#6B806C color CMYK value is (16,0,16,50).
CMYK: (16,0,16,50) C16M0Y16K50 (16%,0%,16%,50%) (0.16/0.00/0.16/0.50)
6B | 80 | 6C | |
---|---|---|---|
RGB | 107 | 128 | 108 |
HSL | 123° | 8.94% | 46.08% |
HSB/HSV | 123° | 16.41% | 50.20% |
CMYK | 16.41% | 0.00% | 15.63% |
49.80% |
HEX | 6B | 80 | 6C |
Decimal | 107 | 128 | 108 |
Binary | 1101011 | 10000000 | 1101100 |
Octal | 153 | 200 | 154 |
Examples of css and html codes for elements with #6B806C color. Also use rgb(107,128,108) instead hex code.
.myTextColor { color: #6B806C; }
<p style="color:#6B806C">This sample text font color is #6B806C.</p>
This text font color is #6B806C.
.myBgColor { background-color: #6B806C; }
<div style="background-color:#6B806C">Inner text</div>
This div background color is #6B806C.
.myBorderColor { border: 1px solid #6B806C; }
<div style="border:3px solid #6B806C">Div</div>
This div border color is #6B806C.
.myOpacity80 { color: #6B806C; opacity: 0.8; }
<p style="color:#6B806C;opacity:0.8;">80%</p>
Text with #6B806C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B806C;}
<p style="text-shadow: 3px 3px 1px #6B806C">Text here.</p>
This text has shadow with #6B806C color.
.textShadow {text-shadow: 3px 3px 1px #6B806C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B806C, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B806C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B806C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B806C, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B806C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B806C; -webkit-box-shadow: 1px 1px 3px 2px #6B806C; box-shadow: 1px 1px 3px 2px #6B806C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B806C; -webkit-box-shadow: 1px 1px 3px 2px #6B806C; box-shadow:1px 1px 3px 2px #6B806C;">
Div content here</div>
This text has color #6B806C on black background.
This text has color #6B806C on white background.
This text has black color on #6B806C background.
This text has white color on #6B806C background.