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