HEX: #6EAD42
RGB: (110,173,66)
#6EAD42 contains mainly green color. Web safe color of #6EAD42 is #669933 (or #693).
#6EAD42 color RGB value is (110,173,66).
RGB: (110,173,66) (43%,68%,26%)
R 110 of 255 = 43%
G 173 of 255 = 68%
B 66 of 255 = 26%
R + G + B ~ 46%. #6EAD42 is middle color (not dark and not light).
R + G + B =
110 + 173 + 66 = 349 (100%)
R 110 of 349 ~ 31.52%
G 173 of 349 ~ 49.57%
B 66 of 349 ~ 18.91%
#6EAD42 color CMYK value is (36,0,62,32).
CMYK: (36,0,62,32) C36M0Y62K32 (36%,0%,62%,32%) (0.36/0.00/0.62/0.32)
6E | AD | 42 | |
---|---|---|---|
RGB | 110 | 173 | 66 |
HSL | 95° | 44.77% | 46.86% |
HSB/HSV | 95° | 61.85% | 67.84% |
CMYK | 36.42% | 0.00% | 61.85% |
32.16% |
HEX | 6E | AD | 42 |
Decimal | 110 | 173 | 66 |
Binary | 1101110 | 10101101 | 1000010 |
Octal | 156 | 255 | 102 |
Examples of css and html codes for elements with #6EAD42 color. Also use rgb(110,173,66) instead hex code.
.myTextColor { color: #6EAD42; }
<p style="color:#6EAD42">This sample text font color is #6EAD42.</p>
This text font color is #6EAD42.
.myBgColor { background-color: #6EAD42; }
<div style="background-color:#6EAD42">Inner text</div>
This div background color is #6EAD42.
.myBorderColor { border: 1px solid #6EAD42; }
<div style="border:3px solid #6EAD42">Div</div>
This div border color is #6EAD42.
.myOpacity80 { color: #6EAD42; opacity: 0.8; }
<p style="color:#6EAD42;opacity:0.8;">80%</p>
Text with #6EAD42 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EAD42;}
<p style="text-shadow: 3px 3px 1px #6EAD42">Text here.</p>
This text has shadow with #6EAD42 color.
.textShadow {text-shadow: 3px 3px 1px #6EAD42, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EAD42, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EAD42 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EAD42, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EAD42, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EAD42 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EAD42; -webkit-box-shadow: 1px 1px 3px 2px #6EAD42; box-shadow: 1px 1px 3px 2px #6EAD42; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EAD42; -webkit-box-shadow: 1px 1px 3px 2px #6EAD42; box-shadow:1px 1px 3px 2px #6EAD42;">
Div content here</div>
This text has color #6EAD42 on black background.
This text has color #6EAD42 on white background.
This text has black color on #6EAD42 background.
This text has white color on #6EAD42 background.