HEX: #6F786D
RGB: (111,120,109)
#6F786D contains red, green and blue colors in about the same proportion. Web safe color of #6F786D is #666666 (or #666).
#6F786D color RGB value is (111,120,109).
RGB: (111,120,109) (44%,47%,43%)
R 111 of 255 = 44%
G 120 of 255 = 47%
B 109 of 255 = 43%
R + G + B ~ 45%. #6F786D is middle color (not dark and not light).
R + G + B =
111 + 120 + 109 = 340 (100%)
R 111 of 340 ~ 32.65%
G 120 of 340 ~ 35.29%
B 109 of 340 ~ 32.06%
#6F786D color CMYK value is (8,0,9,53).
CMYK: (8,0,9,53) C8M0Y9K53 (8%,0%,9%,53%) (0.08/0.00/0.09/0.53)
6F | 78 | 6D | |
---|---|---|---|
RGB | 111 | 120 | 109 |
HSL | 109° | 4.80% | 44.90% |
HSB/HSV | 109° | 9.17% | 47.06% |
CMYK | 7.50% | 0.00% | 9.17% |
52.94% |
HEX | 6F | 78 | 6D |
Decimal | 111 | 120 | 109 |
Binary | 1101111 | 1111000 | 1101101 |
Octal | 157 | 170 | 155 |
Examples of css and html codes for elements with #6F786D color. Also use rgb(111,120,109) instead hex code.
.myTextColor { color: #6F786D; }
<p style="color:#6F786D">This sample text font color is #6F786D.</p>
This text font color is #6F786D.
.myBgColor { background-color: #6F786D; }
<div style="background-color:#6F786D">Inner text</div>
This div background color is #6F786D.
.myBorderColor { border: 1px solid #6F786D; }
<div style="border:3px solid #6F786D">Div</div>
This div border color is #6F786D.
.myOpacity80 { color: #6F786D; opacity: 0.8; }
<p style="color:#6F786D;opacity:0.8;">80%</p>
Text with #6F786D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6F786D;}
<p style="text-shadow: 3px 3px 1px #6F786D">Text here.</p>
This text has shadow with #6F786D color.
.textShadow {text-shadow: 3px 3px 1px #6F786D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6F786D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6F786D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6F786D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6F786D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6F786D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6F786D; -webkit-box-shadow: 1px 1px 3px 2px #6F786D; box-shadow: 1px 1px 3px 2px #6F786D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6F786D; -webkit-box-shadow: 1px 1px 3px 2px #6F786D; box-shadow:1px 1px 3px 2px #6F786D;">
Div content here</div>
This text has color #6F786D on black background.
This text has color #6F786D on white background.
This text has black color on #6F786D background.
This text has white color on #6F786D background.