HEX: #C5ECCD
RGB: (197,236,205)
#C5ECCD contains red, green and blue colors in about the same proportion. Web safe color of #C5ECCD is #CCFFCC (or #CFC).
#C5ECCD color RGB value is (197,236,205).
RGB: (197,236,205) (77%,93%,80%)
R 197 of 255 = 77%
G 236 of 255 = 93%
B 205 of 255 = 80%
R + G + B ~ 83%. #C5ECCD is quite light color.
R + G + B =
197 + 236 + 205 = 638 (100%)
R 197 of 638 ~ 30.88%
G 236 of 638 ~ 36.99%
B 205 of 638 ~ 32.13%
#C5ECCD color CMYK value is (17,0,13,7).
CMYK: (17,0,13,7) C17M0Y13K7 (17%,0%,13%,7%) (0.17/0.00/0.13/0.07)
C5 | EC | CD | |
---|---|---|---|
RGB | 197 | 236 | 205 |
HSL | 132° | 50.65% | 84.90% |
HSB/HSV | 132° | 16.53% | 92.55% |
CMYK | 16.53% | 0.00% | 13.14% |
7.45% |
HEX | C5 | EC | CD |
Decimal | 197 | 236 | 205 |
Binary | 11000101 | 11101100 | 11001101 |
Octal | 305 | 354 | 315 |
Examples of css and html codes for elements with #C5ECCD color. Also use rgb(197,236,205) instead hex code.
.myTextColor { color: #C5ECCD; }
<p style="color:#C5ECCD">This sample text font color is #C5ECCD.</p>
This text font color is #C5ECCD.
.myBgColor { background-color: #C5ECCD; }
<div style="background-color:#C5ECCD">Inner text</div>
This div background color is #C5ECCD.
.myBorderColor { border: 1px solid #C5ECCD; }
<div style="border:3px solid #C5ECCD">Div</div>
This div border color is #C5ECCD.
.myOpacity80 { color: #C5ECCD; opacity: 0.8; }
<p style="color:#C5ECCD;opacity:0.8;">80%</p>
Text with #C5ECCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5ECCD;}
<p style="text-shadow: 3px 3px 1px #C5ECCD">Text here.</p>
This text has shadow with #C5ECCD color.
.textShadow {text-shadow: 3px 3px 1px #C5ECCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5ECCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5ECCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5ECCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5ECCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5ECCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5ECCD; -webkit-box-shadow: 1px 1px 3px 2px #C5ECCD; box-shadow: 1px 1px 3px 2px #C5ECCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5ECCD; -webkit-box-shadow: 1px 1px 3px 2px #C5ECCD; box-shadow:1px 1px 3px 2px #C5ECCD;">
Div content here</div>
This text has color #C5ECCD on black background.
This text has color #C5ECCD on white background.
This text has black color on #C5ECCD background.
This text has white color on #C5ECCD background.