HEX: #6EFDCC
RGB: (110,253,204)
#6EFDCC contains mainly green and blue colors. Web safe color of #6EFDCC is #66FFCC (or #6FC).
#6EFDCC color RGB value is (110,253,204).
RGB: (110,253,204) (43%,99%,80%)
R 110 of 255 = 43%
G 253 of 255 = 99%
B 204 of 255 = 80%
R + G + B ~ 74%. #6EFDCC is quite light color.
R + G + B =
110 + 253 + 204 = 567 (100%)
R 110 of 567 ~ 19.4%
G 253 of 567 ~ 44.62%
B 204 of 567 ~ 35.98%
#6EFDCC color CMYK value is (57,0,19,1).
CMYK: (57,0,19,1) C57M0Y19K1 (57%,0%,19%,1%) (0.57/0.00/0.19/0.01)
6E | FD | CC | |
---|---|---|---|
RGB | 110 | 253 | 204 |
HSL | 159° | 97.28% | 71.18% |
HSB/HSV | 159° | 56.52% | 99.22% |
CMYK | 56.52% | 0.00% | 19.37% |
0.78% |
HEX | 6E | FD | CC |
Decimal | 110 | 253 | 204 |
Binary | 1101110 | 11111101 | 11001100 |
Octal | 156 | 375 | 314 |
Examples of css and html codes for elements with #6EFDCC color. Also use rgb(110,253,204) instead hex code.
.myTextColor { color: #6EFDCC; }
<p style="color:#6EFDCC">This sample text font color is #6EFDCC.</p>
This text font color is #6EFDCC.
.myBgColor { background-color: #6EFDCC; }
<div style="background-color:#6EFDCC">Inner text</div>
This div background color is #6EFDCC.
.myBorderColor { border: 1px solid #6EFDCC; }
<div style="border:3px solid #6EFDCC">Div</div>
This div border color is #6EFDCC.
.myOpacity80 { color: #6EFDCC; opacity: 0.8; }
<p style="color:#6EFDCC;opacity:0.8;">80%</p>
Text with #6EFDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EFDCC;}
<p style="text-shadow: 3px 3px 1px #6EFDCC">Text here.</p>
This text has shadow with #6EFDCC color.
.textShadow {text-shadow: 3px 3px 1px #6EFDCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EFDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EFDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EFDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EFDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EFDCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EFDCC; -webkit-box-shadow: 1px 1px 3px 2px #6EFDCC; box-shadow: 1px 1px 3px 2px #6EFDCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EFDCC; -webkit-box-shadow: 1px 1px 3px 2px #6EFDCC; box-shadow:1px 1px 3px 2px #6EFDCC;">
Div content here</div>
This text has color #6EFDCC on black background.
This text has color #6EFDCC on white background.
This text has black color on #6EFDCC background.
This text has white color on #6EFDCC background.