HEX: #6DC990
RGB: (109,201,144)
#6DC990 contains mainly green and blue colors. Web safe color of #6DC990 is #66CC99 (or #6C9).
#6DC990 color RGB value is (109,201,144).
RGB: (109,201,144) (43%,79%,56%)
R 109 of 255 = 43%
G 201 of 255 = 79%
B 144 of 255 = 56%
R + G + B ~ 59%. #6DC990 is middle color (not dark and not light).
R + G + B =
109 + 201 + 144 = 454 (100%)
R 109 of 454 ~ 24.01%
G 201 of 454 ~ 44.27%
B 144 of 454 ~ 31.72%
#6DC990 color CMYK value is (46,0,28,21).
CMYK: (46,0,28,21) C46M0Y28K21 (46%,0%,28%,21%) (0.46/0.00/0.28/0.21)
6D | C9 | 90 | |
---|---|---|---|
RGB | 109 | 201 | 144 |
HSL | 143° | 46.00% | 60.78% |
HSB/HSV | 143° | 45.77% | 78.82% |
CMYK | 45.77% | 0.00% | 28.36% |
21.18% |
HEX | 6D | C9 | 90 |
Decimal | 109 | 201 | 144 |
Binary | 1101101 | 11001001 | 10010000 |
Octal | 155 | 311 | 220 |
Examples of css and html codes for elements with #6DC990 color. Also use rgb(109,201,144) instead hex code.
.myTextColor { color: #6DC990; }
<p style="color:#6DC990">This sample text font color is #6DC990.</p>
This text font color is #6DC990.
.myBgColor { background-color: #6DC990; }
<div style="background-color:#6DC990">Inner text</div>
This div background color is #6DC990.
.myBorderColor { border: 1px solid #6DC990; }
<div style="border:3px solid #6DC990">Div</div>
This div border color is #6DC990.
.myOpacity80 { color: #6DC990; opacity: 0.8; }
<p style="color:#6DC990;opacity:0.8;">80%</p>
Text with #6DC990 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6DC990;}
<p style="text-shadow: 3px 3px 1px #6DC990">Text here.</p>
This text has shadow with #6DC990 color.
.textShadow {text-shadow: 3px 3px 1px #6DC990, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6DC990, 5px 5px 20px red">Text here.</p>
This text has shadow with #6DC990 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6DC990, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6DC990, Direction=45, Strength=4)">Text</p>
This text has shadow with #6DC990 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6DC990; -webkit-box-shadow: 1px 1px 3px 2px #6DC990; box-shadow: 1px 1px 3px 2px #6DC990; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6DC990; -webkit-box-shadow: 1px 1px 3px 2px #6DC990; box-shadow:1px 1px 3px 2px #6DC990;">
Div content here</div>
This text has color #6DC990 on black background.
This text has color #6DC990 on white background.
This text has black color on #6DC990 background.
This text has white color on #6DC990 background.