HEX: #06C171
RGB: (6,193,113)
#06C171 contains mainly green color. Web safe color of #06C171 is #00CC66 (or #0C6).
#06C171 color RGB value is (6,193,113).
RGB: (6,193,113) (2%,76%,44%)
R 6 of 255 = 2%
G 193 of 255 = 76%
B 113 of 255 = 44%
R + G + B ~ 41%. #06C171 is middle color (not dark and not light).
R + G + B =
6 + 193 + 113 = 312 (100%)
R 6 of 312 ~ 1.92%
G 193 of 312 ~ 61.86%
B 113 of 312 ~ 36.22%
#06C171 color CMYK value is (97,0,41,24).
CMYK: (97,0,41,24) C97M0Y41K24 (97%,0%,41%,24%) (0.97/0.00/0.41/0.24)
06 | C1 | 71 | |
---|---|---|---|
RGB | 6 | 193 | 113 |
HSL | 154° | 93.97% | 39.02% |
HSB/HSV | 154° | 96.89% | 75.69% |
CMYK | 96.89% | 0.00% | 41.45% |
24.31% |
HEX | 06 | C1 | 71 |
Decimal | 6 | 193 | 113 |
Binary | 110 | 11000001 | 1110001 |
Octal | 6 | 301 | 161 |
Examples of css and html codes for elements with #06C171 color. Also use rgb(6,193,113) instead hex code.
.myTextColor { color: #06C171; }
<p style="color:#06C171">This sample text font color is #06C171.</p>
This text font color is #06C171.
.myBgColor { background-color: #06C171; }
<div style="background-color:#06C171">Inner text</div>
This div background color is #06C171.
.myBorderColor { border: 1px solid #06C171; }
<div style="border:3px solid #06C171">Div</div>
This div border color is #06C171.
.myOpacity80 { color: #06C171; opacity: 0.8; }
<p style="color:#06C171;opacity:0.8;">80%</p>
Text with #06C171 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #06C171;}
<p style="text-shadow: 3px 3px 1px #06C171">Text here.</p>
This text has shadow with #06C171 color.
.textShadow {text-shadow: 3px 3px 1px #06C171, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #06C171, 5px 5px 20px red">Text here.</p>
This text has shadow with #06C171 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#06C171, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#06C171, Direction=45, Strength=4)">Text</p>
This text has shadow with #06C171 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #06C171; -webkit-box-shadow: 1px 1px 3px 2px #06C171; box-shadow: 1px 1px 3px 2px #06C171; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #06C171; -webkit-box-shadow: 1px 1px 3px 2px #06C171; box-shadow:1px 1px 3px 2px #06C171;">
Div content here</div>
This text has color #06C171 on black background.
This text has color #06C171 on white background.
This text has black color on #06C171 background.
This text has white color on #06C171 background.