HEX: #C5EDCF
RGB: (197,237,207)
#C5EDCF contains red, green and blue colors in about the same proportion. Web safe color of #C5EDCF is #CCFFCC (or #CFC).
#C5EDCF color RGB value is (197,237,207).
RGB: (197,237,207) (77%,93%,81%)
R 197 of 255 = 77%
G 237 of 255 = 93%
B 207 of 255 = 81%
R + G + B ~ 84%. #C5EDCF is quite light color.
R + G + B =
197 + 237 + 207 = 641 (100%)
R 197 of 641 ~ 30.73%
G 237 of 641 ~ 36.97%
B 207 of 641 ~ 32.29%
#C5EDCF 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 | ED | CF | |
---|---|---|---|
RGB | 197 | 237 | 207 |
HSL | 135° | 52.63% | 85.10% |
HSB/HSV | 135° | 16.88% | 92.94% |
CMYK | 16.88% | 0.00% | 12.66% |
7.06% |
HEX | C5 | ED | CF |
Decimal | 197 | 237 | 207 |
Binary | 11000101 | 11101101 | 11001111 |
Octal | 305 | 355 | 317 |
Examples of css and html codes for elements with #C5EDCF color. Also use rgb(197,237,207) instead hex code.
.myTextColor { color: #C5EDCF; }
<p style="color:#C5EDCF">This sample text font color is #C5EDCF.</p>
This text font color is #C5EDCF.
.myBgColor { background-color: #C5EDCF; }
<div style="background-color:#C5EDCF">Inner text</div>
This div background color is #C5EDCF.
.myBorderColor { border: 1px solid #C5EDCF; }
<div style="border:3px solid #C5EDCF">Div</div>
This div border color is #C5EDCF.
.myOpacity80 { color: #C5EDCF; opacity: 0.8; }
<p style="color:#C5EDCF;opacity:0.8;">80%</p>
Text with #C5EDCF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5EDCF;}
<p style="text-shadow: 3px 3px 1px #C5EDCF">Text here.</p>
This text has shadow with #C5EDCF color.
.textShadow {text-shadow: 3px 3px 1px #C5EDCF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5EDCF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5EDCF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5EDCF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5EDCF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5EDCF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5EDCF; -webkit-box-shadow: 1px 1px 3px 2px #C5EDCF; box-shadow: 1px 1px 3px 2px #C5EDCF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5EDCF; -webkit-box-shadow: 1px 1px 3px 2px #C5EDCF; box-shadow:1px 1px 3px 2px #C5EDCF;">
Div content here</div>
This text has color #C5EDCF on black background.
This text has color #C5EDCF on white background.
This text has black color on #C5EDCF background.
This text has white color on #C5EDCF background.