HEX: #6DC906
RGB: (109,201,6)
#6DC906 contains mainly green color. Web safe color of #6DC906 is #66CC00 (or #6C0).
#6DC906 color RGB value is (109,201,6).
RGB: (109,201,6) (43%,79%,2%)
R 109 of 255 = 43%
G 201 of 255 = 79%
B 6 of 255 = 2%
R + G + B ~ 41%. #6DC906 is middle color (not dark and not light).
R + G + B =
109 + 201 + 6 = 316 (100%)
R 109 of 316 ~ 34.49%
G 201 of 316 ~ 63.61%
B 6 of 316 ~ 1.9%
#6DC906 color CMYK value is (46,0,97,21).
CMYK: (46,0,97,21) C46M0Y97K21 (46%,0%,97%,21%) (0.46/0.00/0.97/0.21)
6D | C9 | 06 | |
---|---|---|---|
RGB | 109 | 201 | 6 |
HSL | 88° | 94.20% | 40.59% |
HSB/HSV | 88° | 97.01% | 78.82% |
CMYK | 45.77% | 0.00% | 97.01% |
21.18% |
HEX | 6D | C9 | 06 |
Decimal | 109 | 201 | 6 |
Binary | 1101101 | 11001001 | 110 |
Octal | 155 | 311 | 6 |
Examples of css and html codes for elements with #6DC906 color. Also use rgb(109,201,6) instead hex code.
.myTextColor { color: #6DC906; }
<p style="color:#6DC906">This sample text font color is #6DC906.</p>
This text font color is #6DC906.
.myBgColor { background-color: #6DC906; }
<div style="background-color:#6DC906">Inner text</div>
This div background color is #6DC906.
.myBorderColor { border: 1px solid #6DC906; }
<div style="border:3px solid #6DC906">Div</div>
This div border color is #6DC906.
.myOpacity80 { color: #6DC906; opacity: 0.8; }
<p style="color:#6DC906;opacity:0.8;">80%</p>
Text with #6DC906 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DC906;}
<p style="text-shadow: 3px 3px 1px #6DC906">Text here.</p>
This text has shadow with #6DC906 color.
.textShadow {text-shadow: 3px 3px 1px #6DC906, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DC906, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DC906 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DC906, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DC906, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DC906 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DC906; -webkit-box-shadow: 1px 1px 3px 2px #6DC906; box-shadow: 1px 1px 3px 2px #6DC906; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DC906; -webkit-box-shadow: 1px 1px 3px 2px #6DC906; box-shadow:1px 1px 3px 2px #6DC906;">
Div content here</div>
This text has color #6DC906 on black background.
This text has color #6DC906 on white background.
This text has black color on #6DC906 background.
This text has white color on #6DC906 background.