HEX: #6D7D35
RGB: (109,125,53)
#6D7D35 contains mainly red and green colors. Web safe color of #6D7D35 is #666633 (or #663).
#6D7D35 color RGB value is (109,125,53).
RGB: (109,125,53) (43%,49%,21%)
R 109 of 255 = 43%
G 125 of 255 = 49%
B 53 of 255 = 21%
R + G + B ~ 38%. #6D7D35 is quite dark color.
R + G + B =
109 + 125 + 53 = 287 (100%)
R 109 of 287 ~ 37.98%
G 125 of 287 ~ 43.55%
B 53 of 287 ~ 18.47%
#6D7D35 color CMYK value is (13,0,58,51).
CMYK: (13,0,58,51) C13M0Y58K51 (13%,0%,58%,51%) (0.13/0.00/0.58/0.51)
6D | 7D | 35 | |
---|---|---|---|
RGB | 109 | 125 | 53 |
HSL | 73° | 40.45% | 34.90% |
HSB/HSV | 73° | 57.60% | 49.02% |
CMYK | 12.80% | 0.00% | 57.60% |
50.98% |
HEX | 6D | 7D | 35 |
Decimal | 109 | 125 | 53 |
Binary | 1101101 | 1111101 | 110101 |
Octal | 155 | 175 | 65 |
Examples of css and html codes for elements with #6D7D35 color. Also use rgb(109,125,53) instead hex code.
.myTextColor { color: #6D7D35; }
<p style="color:#6D7D35">This sample text font color is #6D7D35.</p>
This text font color is #6D7D35.
.myBgColor { background-color: #6D7D35; }
<div style="background-color:#6D7D35">Inner text</div>
This div background color is #6D7D35.
.myBorderColor { border: 1px solid #6D7D35; }
<div style="border:3px solid #6D7D35">Div</div>
This div border color is #6D7D35.
.myOpacity80 { color: #6D7D35; opacity: 0.8; }
<p style="color:#6D7D35;opacity:0.8;">80%</p>
Text with #6D7D35 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D7D35;}
<p style="text-shadow: 3px 3px 1px #6D7D35">Text here.</p>
This text has shadow with #6D7D35 color.
.textShadow {text-shadow: 3px 3px 1px #6D7D35, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D7D35, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D7D35 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D7D35, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D7D35, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D7D35 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D7D35; -webkit-box-shadow: 1px 1px 3px 2px #6D7D35; box-shadow: 1px 1px 3px 2px #6D7D35; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D7D35; -webkit-box-shadow: 1px 1px 3px 2px #6D7D35; box-shadow:1px 1px 3px 2px #6D7D35;">
Div content here</div>
This text has color #6D7D35 on black background.
This text has color #6D7D35 on white background.
This text has black color on #6D7D35 background.
This text has white color on #6D7D35 background.