HEX: #6D858E
RGB: (109,133,142)
#6D858E contains red, green and blue colors in about the same proportion. Web safe color of #6D858E is #669999 (or #699).
#6D858E color RGB value is (109,133,142).
RGB: (109,133,142) (43%,52%,56%)
R 109 of 255 = 43%
G 133 of 255 = 52%
B 142 of 255 = 56%
R + G + B ~ 50%. #6D858E is middle color (not dark and not light).
R + G + B =
109 + 133 + 142 = 384 (100%)
R 109 of 384 ~ 28.39%
G 133 of 384 ~ 34.64%
B 142 of 384 ~ 36.98%
#6D858E color CMYK value is (23,6,0,44).
CMYK: (23,6,0,44) C23M6Y0K44 (23%,6%,0%,44%) (0.23/0.06/0.00/0.44)
6D | 85 | 8E | |
---|---|---|---|
RGB | 109 | 133 | 142 |
HSL | 196° | 13.15% | 49.22% |
HSB/HSV | 196° | 23.24% | 55.69% |
CMYK | 23.24% | 6.34% | 0.00% |
44.31% |
HEX | 6D | 85 | 8E |
Decimal | 109 | 133 | 142 |
Binary | 1101101 | 10000101 | 10001110 |
Octal | 155 | 205 | 216 |
Examples of css and html codes for elements with #6D858E color. Also use rgb(109,133,142) instead hex code.
.myTextColor { color: #6D858E; }
<p style="color:#6D858E">This sample text font color is #6D858E.</p>
This text font color is #6D858E.
.myBgColor { background-color: #6D858E; }
<div style="background-color:#6D858E">Inner text</div>
This div background color is #6D858E.
.myBorderColor { border: 1px solid #6D858E; }
<div style="border:3px solid #6D858E">Div</div>
This div border color is #6D858E.
.myOpacity80 { color: #6D858E; opacity: 0.8; }
<p style="color:#6D858E;opacity:0.8;">80%</p>
Text with #6D858E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D858E;}
<p style="text-shadow: 3px 3px 1px #6D858E">Text here.</p>
This text has shadow with #6D858E color.
.textShadow {text-shadow: 3px 3px 1px #6D858E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D858E, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D858E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D858E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D858E, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D858E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D858E; -webkit-box-shadow: 1px 1px 3px 2px #6D858E; box-shadow: 1px 1px 3px 2px #6D858E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D858E; -webkit-box-shadow: 1px 1px 3px 2px #6D858E; box-shadow:1px 1px 3px 2px #6D858E;">
Div content here</div>
This text has color #6D858E on black background.
This text has color #6D858E on white background.
This text has black color on #6D858E background.
This text has white color on #6D858E background.