HEX: #6D4813
RGB: (109,72,19)
#6D4813 contains mainly red and green colors. Web safe color of #6D4813 is #663300 (or #630).
#6D4813 color RGB value is (109,72,19).
RGB: (109,72,19) (43%,28%,7%)
R 109 of 255 = 43%
G 72 of 255 = 28%
B 19 of 255 = 7%
R + G + B ~ 26%. #6D4813 is quite dark color.
R + G + B =
109 + 72 + 19 = 200 (100%)
R 109 of 200 ~ 54.5%
G 72 of 200 ~ 36%
B 19 of 200 ~ 9.5%
#6D4813 color CMYK value is (0,34,83,57).
CMYK: (0,34,83,57) C0M34Y83K57 (0%,34%,83%,57%) (0.00/0.34/0.83/0.57)
6D | 48 | 13 | |
---|---|---|---|
RGB | 109 | 72 | 19 |
HSL | 35° | 70.31% | 25.10% |
HSB/HSV | 35° | 82.57% | 42.75% |
CMYK | 0.00% | 33.94% | 82.57% |
57.25% |
HEX | 6D | 48 | 13 |
Decimal | 109 | 72 | 19 |
Binary | 1101101 | 1001000 | 10011 |
Octal | 155 | 110 | 23 |
Examples of css and html codes for elements with #6D4813 color. Also use rgb(109,72,19) instead hex code.
.myTextColor { color: #6D4813; }
<p style="color:#6D4813">This sample text font color is #6D4813.</p>
This text font color is #6D4813.
.myBgColor { background-color: #6D4813; }
<div style="background-color:#6D4813">Inner text</div>
This div background color is #6D4813.
.myBorderColor { border: 1px solid #6D4813; }
<div style="border:3px solid #6D4813">Div</div>
This div border color is #6D4813.
.myOpacity80 { color: #6D4813; opacity: 0.8; }
<p style="color:#6D4813;opacity:0.8;">80%</p>
Text with #6D4813 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D4813;}
<p style="text-shadow: 3px 3px 1px #6D4813">Text here.</p>
This text has shadow with #6D4813 color.
.textShadow {text-shadow: 3px 3px 1px #6D4813, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D4813, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D4813 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D4813, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D4813, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D4813 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D4813; -webkit-box-shadow: 1px 1px 3px 2px #6D4813; box-shadow: 1px 1px 3px 2px #6D4813; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D4813; -webkit-box-shadow: 1px 1px 3px 2px #6D4813; box-shadow:1px 1px 3px 2px #6D4813;">
Div content here</div>
This text has color #6D4813 on black background.
This text has color #6D4813 on white background.
This text has black color on #6D4813 background.
This text has white color on #6D4813 background.