HEX: #6DB575
RGB: (109,181,117)
#6DB575 contains mainly green color. Web safe color of #6DB575 is #66CC66 (or #6C6).
#6DB575 color RGB value is (109,181,117).
RGB: (109,181,117) (43%,71%,46%)
R 109 of 255 = 43%
G 181 of 255 = 71%
B 117 of 255 = 46%
R + G + B ~ 53%. #6DB575 is middle color (not dark and not light).
R + G + B =
109 + 181 + 117 = 407 (100%)
R 109 of 407 ~ 26.78%
G 181 of 407 ~ 44.47%
B 117 of 407 ~ 28.75%
#6DB575 color CMYK value is (40,0,35,29).
CMYK: (40,0,35,29) C40M0Y35K29 (40%,0%,35%,29%) (0.40/0.00/0.35/0.29)
6D | B5 | 75 | |
---|---|---|---|
RGB | 109 | 181 | 117 |
HSL | 127° | 32.73% | 56.86% |
HSB/HSV | 127° | 39.78% | 70.98% |
CMYK | 39.78% | 0.00% | 35.36% |
29.02% |
HEX | 6D | B5 | 75 |
Decimal | 109 | 181 | 117 |
Binary | 1101101 | 10110101 | 1110101 |
Octal | 155 | 265 | 165 |
Examples of css and html codes for elements with #6DB575 color. Also use rgb(109,181,117) instead hex code.
.myTextColor { color: #6DB575; }
<p style="color:#6DB575">This sample text font color is #6DB575.</p>
This text font color is #6DB575.
.myBgColor { background-color: #6DB575; }
<div style="background-color:#6DB575">Inner text</div>
This div background color is #6DB575.
.myBorderColor { border: 1px solid #6DB575; }
<div style="border:3px solid #6DB575">Div</div>
This div border color is #6DB575.
.myOpacity80 { color: #6DB575; opacity: 0.8; }
<p style="color:#6DB575;opacity:0.8;">80%</p>
Text with #6DB575 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DB575;}
<p style="text-shadow: 3px 3px 1px #6DB575">Text here.</p>
This text has shadow with #6DB575 color.
.textShadow {text-shadow: 3px 3px 1px #6DB575, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DB575, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DB575 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DB575, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DB575, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DB575 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DB575; -webkit-box-shadow: 1px 1px 3px 2px #6DB575; box-shadow: 1px 1px 3px 2px #6DB575; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DB575; -webkit-box-shadow: 1px 1px 3px 2px #6DB575; box-shadow:1px 1px 3px 2px #6DB575;">
Div content here</div>
This text has color #6DB575 on black background.
This text has color #6DB575 on white background.
This text has black color on #6DB575 background.
This text has white color on #6DB575 background.