HEX: #6C724B
RGB: (108,114,75)
#6C724B contains red, green and blue colors in about the same proportion. Web safe color of #6C724B is #666633 (or #663).
#6C724B color RGB value is (108,114,75).
RGB: (108,114,75) (42%,45%,29%)
R 108 of 255 = 42%
G 114 of 255 = 45%
B 75 of 255 = 29%
R + G + B ~ 39%. #6C724B is quite dark color.
R + G + B =
108 + 114 + 75 = 297 (100%)
R 108 of 297 ~ 36.36%
G 114 of 297 ~ 38.38%
B 75 of 297 ~ 25.25%
#6C724B color CMYK value is (5,0,34,55).
CMYK: (5,0,34,55) C5M0Y34K55 (5%,0%,34%,55%) (0.05/0.00/0.34/0.55)
6C | 72 | 4B | |
---|---|---|---|
RGB | 108 | 114 | 75 |
HSL | 69° | 20.63% | 37.06% |
HSB/HSV | 69° | 34.21% | 44.71% |
CMYK | 5.26% | 0.00% | 34.21% |
55.29% |
HEX | 6C | 72 | 4B |
Decimal | 108 | 114 | 75 |
Binary | 1101100 | 1110010 | 1001011 |
Octal | 154 | 162 | 113 |
Examples of css and html codes for elements with #6C724B color. Also use rgb(108,114,75) instead hex code.
.myTextColor { color: #6C724B; }
<p style="color:#6C724B">This sample text font color is #6C724B.</p>
This text font color is #6C724B.
.myBgColor { background-color: #6C724B; }
<div style="background-color:#6C724B">Inner text</div>
This div background color is #6C724B.
.myBorderColor { border: 1px solid #6C724B; }
<div style="border:3px solid #6C724B">Div</div>
This div border color is #6C724B.
.myOpacity80 { color: #6C724B; opacity: 0.8; }
<p style="color:#6C724B;opacity:0.8;">80%</p>
Text with #6C724B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C724B;}
<p style="text-shadow: 3px 3px 1px #6C724B">Text here.</p>
This text has shadow with #6C724B color.
.textShadow {text-shadow: 3px 3px 1px #6C724B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C724B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C724B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C724B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C724B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C724B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C724B; -webkit-box-shadow: 1px 1px 3px 2px #6C724B; box-shadow: 1px 1px 3px 2px #6C724B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C724B; -webkit-box-shadow: 1px 1px 3px 2px #6C724B; box-shadow:1px 1px 3px 2px #6C724B;">
Div content here</div>
This text has color #6C724B on black background.
This text has color #6C724B on white background.
This text has black color on #6C724B background.
This text has white color on #6C724B background.