HEX: #C7EDEC
RGB: (199,237,236)
#C7EDEC contains red, green and blue colors in about the same proportion. Web safe color of #C7EDEC is #CCFFFF (or #CFF).
#C7EDEC color RGB value is (199,237,236).
RGB: (199,237,236) (78%,93%,93%)
R 199 of 255 = 78%
G 237 of 255 = 93%
B 236 of 255 = 93%
R + G + B ~ 88%. #C7EDEC is light color.
R + G + B =
199 + 237 + 236 = 672 (100%)
R 199 of 672 ~ 29.61%
G 237 of 672 ~ 35.27%
B 236 of 672 ~ 35.12%
#C7EDEC color CMYK value is (16,0,0,7).
CMYK: (16,0,0,7) C16M0Y0K7 (16%,0%,0%,7%) (0.16/0.00/0.00/0.07)
C7 | ED | EC | |
---|---|---|---|
RGB | 199 | 237 | 236 |
HSL | 178° | 51.35% | 85.49% |
HSB/HSV | 178° | 16.03% | 92.94% |
CMYK | 16.03% | 0.00% | 0.42% |
7.06% |
HEX | C7 | ED | EC |
Decimal | 199 | 237 | 236 |
Binary | 11000111 | 11101101 | 11101100 |
Octal | 307 | 355 | 354 |
Examples of css and html codes for elements with #C7EDEC color. Also use rgb(199,237,236) instead hex code.
.myTextColor { color: #C7EDEC; }
<p style="color:#C7EDEC">This sample text font color is #C7EDEC.</p>
This text font color is #C7EDEC.
.myBgColor { background-color: #C7EDEC; }
<div style="background-color:#C7EDEC">Inner text</div>
This div background color is #C7EDEC.
.myBorderColor { border: 1px solid #C7EDEC; }
<div style="border:3px solid #C7EDEC">Div</div>
This div border color is #C7EDEC.
.myOpacity80 { color: #C7EDEC; opacity: 0.8; }
<p style="color:#C7EDEC;opacity:0.8;">80%</p>
Text with #C7EDEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7EDEC;}
<p style="text-shadow: 3px 3px 1px #C7EDEC">Text here.</p>
This text has shadow with #C7EDEC color.
.textShadow {text-shadow: 3px 3px 1px #C7EDEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7EDEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7EDEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7EDEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7EDEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7EDEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7EDEC; -webkit-box-shadow: 1px 1px 3px 2px #C7EDEC; box-shadow: 1px 1px 3px 2px #C7EDEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7EDEC; -webkit-box-shadow: 1px 1px 3px 2px #C7EDEC; box-shadow:1px 1px 3px 2px #C7EDEC;">
Div content here</div>
This text has color #C7EDEC on black background.
This text has color #C7EDEC on white background.
This text has black color on #C7EDEC background.
This text has white color on #C7EDEC background.