HEX: #6D505C
RGB: (109,80,92)
#6D505C contains red, green and blue colors in about the same proportion. Web safe color of #6D505C is #666666 (or #666).
#6D505C color RGB value is (109,80,92).
RGB: (109,80,92) (43%,31%,36%)
R 109 of 255 = 43%
G 80 of 255 = 31%
B 92 of 255 = 36%
R + G + B ~ 37%. #6D505C is quite dark color.
R + G + B =
109 + 80 + 92 = 281 (100%)
R 109 of 281 ~ 38.79%
G 80 of 281 ~ 28.47%
B 92 of 281 ~ 32.74%
#6D505C color CMYK value is (0,27,16,57).
CMYK: (0,27,16,57) C0M27Y16K57 (0%,27%,16%,57%) (0.00/0.27/0.16/0.57)
6D | 50 | 5C | |
---|---|---|---|
RGB | 109 | 80 | 92 |
HSL | 335° | 15.34% | 37.06% |
HSB/HSV | 335° | 26.61% | 42.75% |
CMYK | 0.00% | 26.61% | 15.60% |
57.25% |
HEX | 6D | 50 | 5C |
Decimal | 109 | 80 | 92 |
Binary | 1101101 | 1010000 | 1011100 |
Octal | 155 | 120 | 134 |
Examples of css and html codes for elements with #6D505C color. Also use rgb(109,80,92) instead hex code.
.myTextColor { color: #6D505C; }
<p style="color:#6D505C">This sample text font color is #6D505C.</p>
This text font color is #6D505C.
.myBgColor { background-color: #6D505C; }
<div style="background-color:#6D505C">Inner text</div>
This div background color is #6D505C.
.myBorderColor { border: 1px solid #6D505C; }
<div style="border:3px solid #6D505C">Div</div>
This div border color is #6D505C.
.myOpacity80 { color: #6D505C; opacity: 0.8; }
<p style="color:#6D505C;opacity:0.8;">80%</p>
Text with #6D505C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D505C;}
<p style="text-shadow: 3px 3px 1px #6D505C">Text here.</p>
This text has shadow with #6D505C color.
.textShadow {text-shadow: 3px 3px 1px #6D505C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D505C, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D505C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D505C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D505C, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D505C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D505C; -webkit-box-shadow: 1px 1px 3px 2px #6D505C; box-shadow: 1px 1px 3px 2px #6D505C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D505C; -webkit-box-shadow: 1px 1px 3px 2px #6D505C; box-shadow:1px 1px 3px 2px #6D505C;">
Div content here</div>
This text has color #6D505C on black background.
This text has color #6D505C on white background.
This text has black color on #6D505C background.
This text has white color on #6D505C background.