HEX: #6E762F
RGB: (110,118,47)
#6E762F contains mainly red and green colors. Web safe color of #6E762F is #666633 (or #663).
#6E762F color RGB value is (110,118,47).
RGB: (110,118,47) (43%,46%,18%)
R 110 of 255 = 43%
G 118 of 255 = 46%
B 47 of 255 = 18%
R + G + B ~ 36%. #6E762F is quite dark color.
R + G + B =
110 + 118 + 47 = 275 (100%)
R 110 of 275 ~ 40%
G 118 of 275 ~ 42.91%
B 47 of 275 ~ 17.09%
#6E762F color CMYK value is (7,0,60,54).
CMYK: (7,0,60,54) C7M0Y60K54 (7%,0%,60%,54%) (0.07/0.00/0.60/0.54)
6E | 76 | 2F | |
---|---|---|---|
RGB | 110 | 118 | 47 |
HSL | 67° | 43.03% | 32.35% |
HSB/HSV | 67° | 60.17% | 46.27% |
CMYK | 6.78% | 0.00% | 60.17% |
53.73% |
HEX | 6E | 76 | 2F |
Decimal | 110 | 118 | 47 |
Binary | 1101110 | 1110110 | 101111 |
Octal | 156 | 166 | 57 |
Examples of css and html codes for elements with #6E762F color. Also use rgb(110,118,47) instead hex code.
.myTextColor { color: #6E762F; }
<p style="color:#6E762F">This sample text font color is #6E762F.</p>
This text font color is #6E762F.
.myBgColor { background-color: #6E762F; }
<div style="background-color:#6E762F">Inner text</div>
This div background color is #6E762F.
.myBorderColor { border: 1px solid #6E762F; }
<div style="border:3px solid #6E762F">Div</div>
This div border color is #6E762F.
.myOpacity80 { color: #6E762F; opacity: 0.8; }
<p style="color:#6E762F;opacity:0.8;">80%</p>
Text with #6E762F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E762F;}
<p style="text-shadow: 3px 3px 1px #6E762F">Text here.</p>
This text has shadow with #6E762F color.
.textShadow {text-shadow: 3px 3px 1px #6E762F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E762F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E762F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E762F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E762F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E762F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E762F; -webkit-box-shadow: 1px 1px 3px 2px #6E762F; box-shadow: 1px 1px 3px 2px #6E762F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E762F; -webkit-box-shadow: 1px 1px 3px 2px #6E762F; box-shadow:1px 1px 3px 2px #6E762F;">
Div content here</div>
This text has color #6E762F on black background.
This text has color #6E762F on white background.
This text has black color on #6E762F background.
This text has white color on #6E762F background.