HEX: #6EDCC2
RGB: (110,220,194)
#6EDCC2 contains mainly green and blue colors. Web safe color of #6EDCC2 is #66CCCC (or #6CC).
#6EDCC2 color RGB value is (110,220,194).
RGB: (110,220,194) (43%,86%,76%)
R 110 of 255 = 43%
G 220 of 255 = 86%
B 194 of 255 = 76%
R + G + B ~ 68%. #6EDCC2 is quite light color.
R + G + B =
110 + 220 + 194 = 524 (100%)
R 110 of 524 ~ 20.99%
G 220 of 524 ~ 41.98%
B 194 of 524 ~ 37.02%
#6EDCC2 color CMYK value is (50,0,12,14).
CMYK: (50,0,12,14) C50M0Y12K14 (50%,0%,12%,14%) (0.50/0.00/0.12/0.14)
6E | DC | C2 | |
---|---|---|---|
RGB | 110 | 220 | 194 |
HSL | 166° | 61.11% | 64.71% |
HSB/HSV | 166° | 50.00% | 86.27% |
CMYK | 50.00% | 0.00% | 11.82% |
13.73% |
HEX | 6E | DC | C2 |
Decimal | 110 | 220 | 194 |
Binary | 1101110 | 11011100 | 11000010 |
Octal | 156 | 334 | 302 |
Examples of css and html codes for elements with #6EDCC2 color. Also use rgb(110,220,194) instead hex code.
.myTextColor { color: #6EDCC2; }
<p style="color:#6EDCC2">This sample text font color is #6EDCC2.</p>
This text font color is #6EDCC2.
.myBgColor { background-color: #6EDCC2; }
<div style="background-color:#6EDCC2">Inner text</div>
This div background color is #6EDCC2.
.myBorderColor { border: 1px solid #6EDCC2; }
<div style="border:3px solid #6EDCC2">Div</div>
This div border color is #6EDCC2.
.myOpacity80 { color: #6EDCC2; opacity: 0.8; }
<p style="color:#6EDCC2;opacity:0.8;">80%</p>
Text with #6EDCC2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EDCC2;}
<p style="text-shadow: 3px 3px 1px #6EDCC2">Text here.</p>
This text has shadow with #6EDCC2 color.
.textShadow {text-shadow: 3px 3px 1px #6EDCC2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EDCC2, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EDCC2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EDCC2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EDCC2, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EDCC2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EDCC2; -webkit-box-shadow: 1px 1px 3px 2px #6EDCC2; box-shadow: 1px 1px 3px 2px #6EDCC2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EDCC2; -webkit-box-shadow: 1px 1px 3px 2px #6EDCC2; box-shadow:1px 1px 3px 2px #6EDCC2;">
Div content here</div>
This text has color #6EDCC2 on black background.
This text has color #6EDCC2 on white background.
This text has black color on #6EDCC2 background.
This text has white color on #6EDCC2 background.