HEX: #6DCB6E
RGB: (109,203,110)
#6DCB6E contains mainly green color. Web safe color of #6DCB6E is #66CC66 (or #6C6).
#6DCB6E color RGB value is (109,203,110).
RGB: (109,203,110) (43%,80%,43%)
R 109 of 255 = 43%
G 203 of 255 = 80%
B 110 of 255 = 43%
R + G + B ~ 55%. #6DCB6E is middle color (not dark and not light).
R + G + B =
109 + 203 + 110 = 422 (100%)
R 109 of 422 ~ 25.83%
G 203 of 422 ~ 48.1%
B 110 of 422 ~ 26.07%
#6DCB6E color CMYK value is (46,0,46,20).
CMYK: (46,0,46,20) C46M0Y46K20 (46%,0%,46%,20%) (0.46/0.00/0.46/0.20)
6D | CB | 6E | |
---|---|---|---|
RGB | 109 | 203 | 110 |
HSL | 121° | 47.47% | 61.18% |
HSB/HSV | 121° | 46.31% | 79.61% |
CMYK | 46.31% | 0.00% | 45.81% |
20.39% |
HEX | 6D | CB | 6E |
Decimal | 109 | 203 | 110 |
Binary | 1101101 | 11001011 | 1101110 |
Octal | 155 | 313 | 156 |
Examples of css and html codes for elements with #6DCB6E color. Also use rgb(109,203,110) instead hex code.
.myTextColor { color: #6DCB6E; }
<p style="color:#6DCB6E">This sample text font color is #6DCB6E.</p>
This text font color is #6DCB6E.
.myBgColor { background-color: #6DCB6E; }
<div style="background-color:#6DCB6E">Inner text</div>
This div background color is #6DCB6E.
.myBorderColor { border: 1px solid #6DCB6E; }
<div style="border:3px solid #6DCB6E">Div</div>
This div border color is #6DCB6E.
.myOpacity80 { color: #6DCB6E; opacity: 0.8; }
<p style="color:#6DCB6E;opacity:0.8;">80%</p>
Text with #6DCB6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DCB6E;}
<p style="text-shadow: 3px 3px 1px #6DCB6E">Text here.</p>
This text has shadow with #6DCB6E color.
.textShadow {text-shadow: 3px 3px 1px #6DCB6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DCB6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DCB6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DCB6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DCB6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DCB6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DCB6E; -webkit-box-shadow: 1px 1px 3px 2px #6DCB6E; box-shadow: 1px 1px 3px 2px #6DCB6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DCB6E; -webkit-box-shadow: 1px 1px 3px 2px #6DCB6E; box-shadow:1px 1px 3px 2px #6DCB6E;">
Div content here</div>
This text has color #6DCB6E on black background.
This text has color #6DCB6E on white background.
This text has black color on #6DCB6E background.
This text has white color on #6DCB6E background.