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