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