HEX: #6D506F
RGB: (109,80,111)
#6D506F contains red, green and blue colors in about the same proportion. Web safe color of #6D506F is #666666 (or #666).
#6D506F color RGB value is (109,80,111).
RGB: (109,80,111) (43%,31%,44%)
R 109 of 255 = 43%
G 80 of 255 = 31%
B 111 of 255 = 44%
R + G + B ~ 39%. #6D506F is quite dark color.
R + G + B =
109 + 80 + 111 = 300 (100%)
R 109 of 300 ~ 36.33%
G 80 of 300 ~ 26.67%
B 111 of 300 ~ 37%
#6D506F color CMYK value is (2,28,0,56).
CMYK: (2,28,0,56) C2M28Y0K56 (2%,28%,0%,56%) (0.02/0.28/0.00/0.56)
6D | 50 | 6F | |
---|---|---|---|
RGB | 109 | 80 | 111 |
HSL | 296° | 16.23% | 37.45% |
HSB/HSV | 296° | 27.93% | 43.53% |
CMYK | 1.80% | 27.93% | 0.00% |
56.47% |
HEX | 6D | 50 | 6F |
Decimal | 109 | 80 | 111 |
Binary | 1101101 | 1010000 | 1101111 |
Octal | 155 | 120 | 157 |
Examples of css and html codes for elements with #6D506F color. Also use rgb(109,80,111) instead hex code.
.myTextColor { color: #6D506F; }
<p style="color:#6D506F">This sample text font color is #6D506F.</p>
This text font color is #6D506F.
.myBgColor { background-color: #6D506F; }
<div style="background-color:#6D506F">Inner text</div>
This div background color is #6D506F.
.myBorderColor { border: 1px solid #6D506F; }
<div style="border:3px solid #6D506F">Div</div>
This div border color is #6D506F.
.myOpacity80 { color: #6D506F; opacity: 0.8; }
<p style="color:#6D506F;opacity:0.8;">80%</p>
Text with #6D506F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D506F;}
<p style="text-shadow: 3px 3px 1px #6D506F">Text here.</p>
This text has shadow with #6D506F color.
.textShadow {text-shadow: 3px 3px 1px #6D506F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D506F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D506F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D506F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D506F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D506F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D506F; -webkit-box-shadow: 1px 1px 3px 2px #6D506F; box-shadow: 1px 1px 3px 2px #6D506F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D506F; -webkit-box-shadow: 1px 1px 3px 2px #6D506F; box-shadow:1px 1px 3px 2px #6D506F;">
Div content here</div>
This text has color #6D506F on black background.
This text has color #6D506F on white background.
This text has black color on #6D506F background.
This text has white color on #6D506F background.