HEX: #6D584F
RGB: (109,88,79)
#6D584F contains red, green and blue colors in about the same proportion. Web safe color of #6D584F is #666666 (or #666).
#6D584F color RGB value is (109,88,79).
RGB: (109,88,79) (43%,35%,31%)
R 109 of 255 = 43%
G 88 of 255 = 35%
B 79 of 255 = 31%
R + G + B ~ 36%. #6D584F is quite dark color.
R + G + B =
109 + 88 + 79 = 276 (100%)
R 109 of 276 ~ 39.49%
G 88 of 276 ~ 31.88%
B 79 of 276 ~ 28.62%
#6D584F color CMYK value is (0,19,28,57).
CMYK: (0,19,28,57) C0M19Y28K57 (0%,19%,28%,57%) (0.00/0.19/0.28/0.57)
6D | 58 | 4F | |
---|---|---|---|
RGB | 109 | 88 | 79 |
HSL | 18° | 15.96% | 36.86% |
HSB/HSV | 18° | 27.52% | 42.75% |
CMYK | 0.00% | 19.27% | 27.52% |
57.25% |
HEX | 6D | 58 | 4F |
Decimal | 109 | 88 | 79 |
Binary | 1101101 | 1011000 | 1001111 |
Octal | 155 | 130 | 117 |
Examples of css and html codes for elements with #6D584F color. Also use rgb(109,88,79) instead hex code.
.myTextColor { color: #6D584F; }
<p style="color:#6D584F">This sample text font color is #6D584F.</p>
This text font color is #6D584F.
.myBgColor { background-color: #6D584F; }
<div style="background-color:#6D584F">Inner text</div>
This div background color is #6D584F.
.myBorderColor { border: 1px solid #6D584F; }
<div style="border:3px solid #6D584F">Div</div>
This div border color is #6D584F.
.myOpacity80 { color: #6D584F; opacity: 0.8; }
<p style="color:#6D584F;opacity:0.8;">80%</p>
Text with #6D584F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D584F;}
<p style="text-shadow: 3px 3px 1px #6D584F">Text here.</p>
This text has shadow with #6D584F color.
.textShadow {text-shadow: 3px 3px 1px #6D584F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D584F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D584F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D584F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D584F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D584F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D584F; -webkit-box-shadow: 1px 1px 3px 2px #6D584F; box-shadow: 1px 1px 3px 2px #6D584F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D584F; -webkit-box-shadow: 1px 1px 3px 2px #6D584F; box-shadow:1px 1px 3px 2px #6D584F;">
Div content here</div>
This text has color #6D584F on black background.
This text has color #6D584F on white background.
This text has black color on #6D584F background.
This text has white color on #6D584F background.