HEX: #6D574D
RGB: (109,87,77)
#6D574D contains red, green and blue colors in about the same proportion. Web safe color of #6D574D is #666633 (or #663).
#6D574D color RGB value is (109,87,77).
RGB: (109,87,77) (43%,34%,30%)
R 109 of 255 = 43%
G 87 of 255 = 34%
B 77 of 255 = 30%
R + G + B ~ 36%. #6D574D is quite dark color.
R + G + B =
109 + 87 + 77 = 273 (100%)
R 109 of 273 ~ 39.93%
G 87 of 273 ~ 31.87%
B 77 of 273 ~ 28.21%
#6D574D color CMYK value is (0,20,29,57).
CMYK: (0,20,29,57) C0M20Y29K57 (0%,20%,29%,57%) (0.00/0.20/0.29/0.57)
6D | 57 | 4D | |
---|---|---|---|
RGB | 109 | 87 | 77 |
HSL | 19° | 17.20% | 36.47% |
HSB/HSV | 19° | 29.36% | 42.75% |
CMYK | 0.00% | 20.18% | 29.36% |
57.25% |
HEX | 6D | 57 | 4D |
Decimal | 109 | 87 | 77 |
Binary | 1101101 | 1010111 | 1001101 |
Octal | 155 | 127 | 115 |
Examples of css and html codes for elements with #6D574D color. Also use rgb(109,87,77) instead hex code.
.myTextColor { color: #6D574D; }
<p style="color:#6D574D">This sample text font color is #6D574D.</p>
This text font color is #6D574D.
.myBgColor { background-color: #6D574D; }
<div style="background-color:#6D574D">Inner text</div>
This div background color is #6D574D.
.myBorderColor { border: 1px solid #6D574D; }
<div style="border:3px solid #6D574D">Div</div>
This div border color is #6D574D.
.myOpacity80 { color: #6D574D; opacity: 0.8; }
<p style="color:#6D574D;opacity:0.8;">80%</p>
Text with #6D574D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D574D;}
<p style="text-shadow: 3px 3px 1px #6D574D">Text here.</p>
This text has shadow with #6D574D color.
.textShadow {text-shadow: 3px 3px 1px #6D574D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D574D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D574D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D574D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D574D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D574D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D574D; -webkit-box-shadow: 1px 1px 3px 2px #6D574D; box-shadow: 1px 1px 3px 2px #6D574D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D574D; -webkit-box-shadow: 1px 1px 3px 2px #6D574D; box-shadow:1px 1px 3px 2px #6D574D;">
Div content here</div>
This text has color #6D574D on black background.
This text has color #6D574D on white background.
This text has black color on #6D574D background.
This text has white color on #6D574D background.