HEX: #6DB699
RGB: (109,182,153)
#6DB699 contains mainly green and blue colors. Web safe color of #6DB699 is #66CC99 (or #6C9).
#6DB699 color RGB value is (109,182,153).
RGB: (109,182,153) (43%,71%,60%)
R 109 of 255 = 43%
G 182 of 255 = 71%
B 153 of 255 = 60%
R + G + B ~ 58%. #6DB699 is middle color (not dark and not light).
R + G + B =
109 + 182 + 153 = 444 (100%)
R 109 of 444 ~ 24.55%
G 182 of 444 ~ 40.99%
B 153 of 444 ~ 34.46%
#6DB699 color CMYK value is (40,0,16,29).
CMYK: (40,0,16,29) C40M0Y16K29 (40%,0%,16%,29%) (0.40/0.00/0.16/0.29)
6D | B6 | 99 | |
---|---|---|---|
RGB | 109 | 182 | 153 |
HSL | 156° | 33.33% | 57.06% |
HSB/HSV | 156° | 40.11% | 71.37% |
CMYK | 40.11% | 0.00% | 15.93% |
28.63% |
HEX | 6D | B6 | 99 |
Decimal | 109 | 182 | 153 |
Binary | 1101101 | 10110110 | 10011001 |
Octal | 155 | 266 | 231 |
Examples of css and html codes for elements with #6DB699 color. Also use rgb(109,182,153) instead hex code.
.myTextColor { color: #6DB699; }
<p style="color:#6DB699">This sample text font color is #6DB699.</p>
This text font color is #6DB699.
.myBgColor { background-color: #6DB699; }
<div style="background-color:#6DB699">Inner text</div>
This div background color is #6DB699.
.myBorderColor { border: 1px solid #6DB699; }
<div style="border:3px solid #6DB699">Div</div>
This div border color is #6DB699.
.myOpacity80 { color: #6DB699; opacity: 0.8; }
<p style="color:#6DB699;opacity:0.8;">80%</p>
Text with #6DB699 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DB699;}
<p style="text-shadow: 3px 3px 1px #6DB699">Text here.</p>
This text has shadow with #6DB699 color.
.textShadow {text-shadow: 3px 3px 1px #6DB699, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DB699, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DB699 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DB699, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DB699, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DB699 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DB699; -webkit-box-shadow: 1px 1px 3px 2px #6DB699; box-shadow: 1px 1px 3px 2px #6DB699; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DB699; -webkit-box-shadow: 1px 1px 3px 2px #6DB699; box-shadow:1px 1px 3px 2px #6DB699;">
Div content here</div>
This text has color #6DB699 on black background.
This text has color #6DB699 on white background.
This text has black color on #6DB699 background.
This text has white color on #6DB699 background.