HEX: #6DB06F
RGB: (109,176,111)
#6DB06F contains mainly green color. Web safe color of #6DB06F is #669966 (or #696).
#6DB06F color RGB value is (109,176,111).
RGB: (109,176,111) (43%,69%,44%)
R 109 of 255 = 43%
G 176 of 255 = 69%
B 111 of 255 = 44%
R + G + B ~ 52%. #6DB06F is middle color (not dark and not light).
R + G + B =
109 + 176 + 111 = 396 (100%)
R 109 of 396 ~ 27.53%
G 176 of 396 ~ 44.44%
B 111 of 396 ~ 28.03%
#6DB06F color CMYK value is (38,0,37,31).
CMYK: (38,0,37,31) C38M0Y37K31 (38%,0%,37%,31%) (0.38/0.00/0.37/0.31)
6D | B0 | 6F | |
---|---|---|---|
RGB | 109 | 176 | 111 |
HSL | 122° | 29.78% | 55.88% |
HSB/HSV | 122° | 38.07% | 69.02% |
CMYK | 38.07% | 0.00% | 36.93% |
30.98% |
HEX | 6D | B0 | 6F |
Decimal | 109 | 176 | 111 |
Binary | 1101101 | 10110000 | 1101111 |
Octal | 155 | 260 | 157 |
Examples of css and html codes for elements with #6DB06F color. Also use rgb(109,176,111) instead hex code.
.myTextColor { color: #6DB06F; }
<p style="color:#6DB06F">This sample text font color is #6DB06F.</p>
This text font color is #6DB06F.
.myBgColor { background-color: #6DB06F; }
<div style="background-color:#6DB06F">Inner text</div>
This div background color is #6DB06F.
.myBorderColor { border: 1px solid #6DB06F; }
<div style="border:3px solid #6DB06F">Div</div>
This div border color is #6DB06F.
.myOpacity80 { color: #6DB06F; opacity: 0.8; }
<p style="color:#6DB06F;opacity:0.8;">80%</p>
Text with #6DB06F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DB06F;}
<p style="text-shadow: 3px 3px 1px #6DB06F">Text here.</p>
This text has shadow with #6DB06F color.
.textShadow {text-shadow: 3px 3px 1px #6DB06F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DB06F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DB06F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DB06F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DB06F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DB06F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DB06F; -webkit-box-shadow: 1px 1px 3px 2px #6DB06F; box-shadow: 1px 1px 3px 2px #6DB06F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DB06F; -webkit-box-shadow: 1px 1px 3px 2px #6DB06F; box-shadow:1px 1px 3px 2px #6DB06F;">
Div content here</div>
This text has color #6DB06F on black background.
This text has color #6DB06F on white background.
This text has black color on #6DB06F background.
This text has white color on #6DB06F background.