HEX: #6C714B
RGB: (108,113,75)
#6C714B contains red, green and blue colors in about the same proportion. Web safe color of #6C714B is #666633 (or #663).
#6C714B color RGB value is (108,113,75).
RGB: (108,113,75) (42%,44%,29%)
R 108 of 255 = 42%
G 113 of 255 = 44%
B 75 of 255 = 29%
R + G + B ~ 38%. #6C714B is quite dark color.
R + G + B =
108 + 113 + 75 = 296 (100%)
R 108 of 296 ~ 36.49%
G 113 of 296 ~ 38.18%
B 75 of 296 ~ 25.34%
#6C714B color CMYK value is (4,0,34,56).
CMYK: (4,0,34,56) C4M0Y34K56 (4%,0%,34%,56%) (0.04/0.00/0.34/0.56)
6C | 71 | 4B | |
---|---|---|---|
RGB | 108 | 113 | 75 |
HSL | 68° | 20.21% | 36.86% |
HSB/HSV | 68° | 33.63% | 44.31% |
CMYK | 4.42% | 0.00% | 33.63% |
55.69% |
HEX | 6C | 71 | 4B |
Decimal | 108 | 113 | 75 |
Binary | 1101100 | 1110001 | 1001011 |
Octal | 154 | 161 | 113 |
Examples of css and html codes for elements with #6C714B color. Also use rgb(108,113,75) instead hex code.
.myTextColor { color: #6C714B; }
<p style="color:#6C714B">This sample text font color is #6C714B.</p>
This text font color is #6C714B.
.myBgColor { background-color: #6C714B; }
<div style="background-color:#6C714B">Inner text</div>
This div background color is #6C714B.
.myBorderColor { border: 1px solid #6C714B; }
<div style="border:3px solid #6C714B">Div</div>
This div border color is #6C714B.
.myOpacity80 { color: #6C714B; opacity: 0.8; }
<p style="color:#6C714B;opacity:0.8;">80%</p>
Text with #6C714B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6C714B;}
<p style="text-shadow: 3px 3px 1px #6C714B">Text here.</p>
This text has shadow with #6C714B color.
.textShadow {text-shadow: 3px 3px 1px #6C714B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6C714B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6C714B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6C714B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6C714B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6C714B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6C714B; -webkit-box-shadow: 1px 1px 3px 2px #6C714B; box-shadow: 1px 1px 3px 2px #6C714B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6C714B; -webkit-box-shadow: 1px 1px 3px 2px #6C714B; box-shadow:1px 1px 3px 2px #6C714B;">
Div content here</div>
This text has color #6C714B on black background.
This text has color #6C714B on white background.
This text has black color on #6C714B background.
This text has white color on #6C714B background.