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