HEX: #6CC49C
RGB: (108,196,156)
#6CC49C contains mainly green and blue colors. Web safe color of #6CC49C is #66CC99 (or #6C9).
#6CC49C color RGB value is (108,196,156).
RGB: (108,196,156) (42%,77%,61%)
R 108 of 255 = 42%
G 196 of 255 = 77%
B 156 of 255 = 61%
R + G + B ~ 60%. #6CC49C is middle color (not dark and not light).
R + G + B =
108 + 196 + 156 = 460 (100%)
R 108 of 460 ~ 23.48%
G 196 of 460 ~ 42.61%
B 156 of 460 ~ 33.91%
#6CC49C color CMYK value is (45,0,20,23).
CMYK: (45,0,20,23) C45M0Y20K23 (45%,0%,20%,23%) (0.45/0.00/0.20/0.23)
6C | C4 | 9C | |
---|---|---|---|
RGB | 108 | 196 | 156 |
HSL | 153° | 42.72% | 59.61% |
HSB/HSV | 153° | 44.90% | 76.86% |
CMYK | 44.90% | 0.00% | 20.41% |
23.14% |
HEX | 6C | C4 | 9C |
Decimal | 108 | 196 | 156 |
Binary | 1101100 | 11000100 | 10011100 |
Octal | 154 | 304 | 234 |
Examples of css and html codes for elements with #6CC49C color. Also use rgb(108,196,156) instead hex code.
.myTextColor { color: #6CC49C; }
<p style="color:#6CC49C">This sample text font color is #6CC49C.</p>
This text font color is #6CC49C.
.myBgColor { background-color: #6CC49C; }
<div style="background-color:#6CC49C">Inner text</div>
This div background color is #6CC49C.
.myBorderColor { border: 1px solid #6CC49C; }
<div style="border:3px solid #6CC49C">Div</div>
This div border color is #6CC49C.
.myOpacity80 { color: #6CC49C; opacity: 0.8; }
<p style="color:#6CC49C;opacity:0.8;">80%</p>
Text with #6CC49C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6CC49C;}
<p style="text-shadow: 3px 3px 1px #6CC49C">Text here.</p>
This text has shadow with #6CC49C color.
.textShadow {text-shadow: 3px 3px 1px #6CC49C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6CC49C, 5px 5px 20px red">Text here.</p>
This text has shadow with #6CC49C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6CC49C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6CC49C, Direction=45, Strength=4)">Text</p>
This text has shadow with #6CC49C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6CC49C; -webkit-box-shadow: 1px 1px 3px 2px #6CC49C; box-shadow: 1px 1px 3px 2px #6CC49C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6CC49C; -webkit-box-shadow: 1px 1px 3px 2px #6CC49C; box-shadow:1px 1px 3px 2px #6CC49C;">
Div content here</div>
This text has color #6CC49C on black background.
This text has color #6CC49C on white background.
This text has black color on #6CC49C background.
This text has white color on #6CC49C background.