HEX: #6E866C
RGB: (110,134,108)
#6E866C contains red, green and blue colors in about the same proportion. Web safe color of #6E866C is #669966 (or #696).
#6E866C color RGB value is (110,134,108).
RGB: (110,134,108) (43%,53%,42%)
R 110 of 255 = 43%
G 134 of 255 = 53%
B 108 of 255 = 42%
R + G + B ~ 46%. #6E866C is middle color (not dark and not light).
R + G + B =
110 + 134 + 108 = 352 (100%)
R 110 of 352 ~ 31.25%
G 134 of 352 ~ 38.07%
B 108 of 352 ~ 30.68%
#6E866C color CMYK value is (18,0,19,47).
CMYK: (18,0,19,47) C18M0Y19K47 (18%,0%,19%,47%) (0.18/0.00/0.19/0.47)
6E | 86 | 6C | |
---|---|---|---|
RGB | 110 | 134 | 108 |
HSL | 115° | 10.74% | 47.45% |
HSB/HSV | 115° | 19.40% | 52.55% |
CMYK | 17.91% | 0.00% | 19.40% |
47.45% |
HEX | 6E | 86 | 6C |
Decimal | 110 | 134 | 108 |
Binary | 1101110 | 10000110 | 1101100 |
Octal | 156 | 206 | 154 |
Examples of css and html codes for elements with #6E866C color. Also use rgb(110,134,108) instead hex code.
.myTextColor { color: #6E866C; }
<p style="color:#6E866C">This sample text font color is #6E866C.</p>
This text font color is #6E866C.
.myBgColor { background-color: #6E866C; }
<div style="background-color:#6E866C">Inner text</div>
This div background color is #6E866C.
.myBorderColor { border: 1px solid #6E866C; }
<div style="border:3px solid #6E866C">Div</div>
This div border color is #6E866C.
.myOpacity80 { color: #6E866C; opacity: 0.8; }
<p style="color:#6E866C;opacity:0.8;">80%</p>
Text with #6E866C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E866C;}
<p style="text-shadow: 3px 3px 1px #6E866C">Text here.</p>
This text has shadow with #6E866C color.
.textShadow {text-shadow: 3px 3px 1px #6E866C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E866C, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E866C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E866C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E866C, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E866C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E866C; -webkit-box-shadow: 1px 1px 3px 2px #6E866C; box-shadow: 1px 1px 3px 2px #6E866C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E866C; -webkit-box-shadow: 1px 1px 3px 2px #6E866C; box-shadow:1px 1px 3px 2px #6E866C;">
Div content here</div>
This text has color #6E866C on black background.
This text has color #6E866C on white background.
This text has black color on #6E866C background.
This text has white color on #6E866C background.