HEX: #6C5519
RGB: (108,85,25)
#6C5519 contains mainly red and green colors. Web safe color of #6C5519 is #666600 (or #660).
#6C5519 color RGB value is (108,85,25).
RGB: (108,85,25) (42%,33%,10%)
R 108 of 255 = 42%
G 85 of 255 = 33%
B 25 of 255 = 10%
R + G + B ~ 28%. #6C5519 is quite dark color.
R + G + B =
108 + 85 + 25 = 218 (100%)
R 108 of 218 ~ 49.54%
G 85 of 218 ~ 38.99%
B 25 of 218 ~ 11.47%
#6C5519 color CMYK value is (0,21,77,58).
CMYK: (0,21,77,58) C0M21Y77K58 (0%,21%,77%,58%) (0.00/0.21/0.77/0.58)
6C | 55 | 19 | |
---|---|---|---|
RGB | 108 | 85 | 25 |
HSL | 43° | 62.41% | 26.08% |
HSB/HSV | 43° | 76.85% | 42.35% |
CMYK | 0.00% | 21.30% | 76.85% |
57.65% |
HEX | 6C | 55 | 19 |
Decimal | 108 | 85 | 25 |
Binary | 1101100 | 1010101 | 11001 |
Octal | 154 | 125 | 31 |
Examples of css and html codes for elements with #6C5519 color. Also use rgb(108,85,25) instead hex code.
.myTextColor { color: #6C5519; }
<p style="color:#6C5519">This sample text font color is #6C5519.</p>
This text font color is #6C5519.
.myBgColor { background-color: #6C5519; }
<div style="background-color:#6C5519">Inner text</div>
This div background color is #6C5519.
.myBorderColor { border: 1px solid #6C5519; }
<div style="border:3px solid #6C5519">Div</div>
This div border color is #6C5519.
.myOpacity80 { color: #6C5519; opacity: 0.8; }
<p style="color:#6C5519;opacity:0.8;">80%</p>
Text with #6C5519 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C5519;}
<p style="text-shadow: 3px 3px 1px #6C5519">Text here.</p>
This text has shadow with #6C5519 color.
.textShadow {text-shadow: 3px 3px 1px #6C5519, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C5519, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C5519 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C5519, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C5519, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C5519 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C5519; -webkit-box-shadow: 1px 1px 3px 2px #6C5519; box-shadow: 1px 1px 3px 2px #6C5519; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C5519; -webkit-box-shadow: 1px 1px 3px 2px #6C5519; box-shadow:1px 1px 3px 2px #6C5519;">
Div content here</div>
This text has color #6C5519 on black background.
This text has color #6C5519 on white background.
This text has black color on #6C5519 background.
This text has white color on #6C5519 background.