HEX: #6DA66B
RGB: (109,166,107)
#6DA66B contains red, green and blue colors in about the same proportion. Web safe color of #6DA66B is #669966 (or #696).
#6DA66B color RGB value is (109,166,107).
RGB: (109,166,107) (43%,65%,42%)
R 109 of 255 = 43%
G 166 of 255 = 65%
B 107 of 255 = 42%
R + G + B ~ 50%. #6DA66B is middle color (not dark and not light).
R + G + B =
109 + 166 + 107 = 382 (100%)
R 109 of 382 ~ 28.53%
G 166 of 382 ~ 43.46%
B 107 of 382 ~ 28.01%
#6DA66B color CMYK value is (34,0,36,35).
CMYK: (34,0,36,35) C34M0Y36K35 (34%,0%,36%,35%) (0.34/0.00/0.36/0.35)
6D | A6 | 6B | |
---|---|---|---|
RGB | 109 | 166 | 107 |
HSL | 118° | 24.89% | 53.53% |
HSB/HSV | 118° | 35.54% | 65.10% |
CMYK | 34.34% | 0.00% | 35.54% |
34.90% |
HEX | 6D | A6 | 6B |
Decimal | 109 | 166 | 107 |
Binary | 1101101 | 10100110 | 1101011 |
Octal | 155 | 246 | 153 |
Examples of css and html codes for elements with #6DA66B color. Also use rgb(109,166,107) instead hex code.
.myTextColor { color: #6DA66B; }
<p style="color:#6DA66B">This sample text font color is #6DA66B.</p>
This text font color is #6DA66B.
.myBgColor { background-color: #6DA66B; }
<div style="background-color:#6DA66B">Inner text</div>
This div background color is #6DA66B.
.myBorderColor { border: 1px solid #6DA66B; }
<div style="border:3px solid #6DA66B">Div</div>
This div border color is #6DA66B.
.myOpacity80 { color: #6DA66B; opacity: 0.8; }
<p style="color:#6DA66B;opacity:0.8;">80%</p>
Text with #6DA66B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DA66B;}
<p style="text-shadow: 3px 3px 1px #6DA66B">Text here.</p>
This text has shadow with #6DA66B color.
.textShadow {text-shadow: 3px 3px 1px #6DA66B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DA66B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DA66B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DA66B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DA66B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DA66B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DA66B; -webkit-box-shadow: 1px 1px 3px 2px #6DA66B; box-shadow: 1px 1px 3px 2px #6DA66B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DA66B; -webkit-box-shadow: 1px 1px 3px 2px #6DA66B; box-shadow:1px 1px 3px 2px #6DA66B;">
Div content here</div>
This text has color #6DA66B on black background.
This text has color #6DA66B on white background.
This text has black color on #6DA66B background.
This text has white color on #6DA66B background.