HEX: #C5FCDB
RGB: (197,252,219)
#C5FCDB contains red, green and blue colors in about the same proportion. Web safe color of #C5FCDB is #CCFFCC (or #CFC).
#C5FCDB color RGB value is (197,252,219).
RGB: (197,252,219) (77%,99%,86%)
R 197 of 255 = 77%
G 252 of 255 = 99%
B 219 of 255 = 86%
R + G + B ~ 87%. #C5FCDB is light color.
R + G + B =
197 + 252 + 219 = 668 (100%)
R 197 of 668 ~ 29.49%
G 252 of 668 ~ 37.72%
B 219 of 668 ~ 32.78%
#C5FCDB color CMYK value is (22,0,13,1).
CMYK: (22,0,13,1) C22M0Y13K1 (22%,0%,13%,1%) (0.22/0.00/0.13/0.01)
C5 | FC | DB | |
---|---|---|---|
RGB | 197 | 252 | 219 |
HSL | 144° | 90.16% | 88.04% |
HSB/HSV | 144° | 21.83% | 98.82% |
CMYK | 21.83% | 0.00% | 13.10% |
1.18% |
HEX | C5 | FC | DB |
Decimal | 197 | 252 | 219 |
Binary | 11000101 | 11111100 | 11011011 |
Octal | 305 | 374 | 333 |
Examples of css and html codes for elements with #C5FCDB color. Also use rgb(197,252,219) instead hex code.
.myTextColor { color: #C5FCDB; }
<p style="color:#C5FCDB">This sample text font color is #C5FCDB.</p>
This text font color is #C5FCDB.
.myBgColor { background-color: #C5FCDB; }
<div style="background-color:#C5FCDB">Inner text</div>
This div background color is #C5FCDB.
.myBorderColor { border: 1px solid #C5FCDB; }
<div style="border:3px solid #C5FCDB">Div</div>
This div border color is #C5FCDB.
.myOpacity80 { color: #C5FCDB; opacity: 0.8; }
<p style="color:#C5FCDB;opacity:0.8;">80%</p>
Text with #C5FCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5FCDB;}
<p style="text-shadow: 3px 3px 1px #C5FCDB">Text here.</p>
This text has shadow with #C5FCDB color.
.textShadow {text-shadow: 3px 3px 1px #C5FCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5FCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5FCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5FCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5FCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5FCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5FCDB; -webkit-box-shadow: 1px 1px 3px 2px #C5FCDB; box-shadow: 1px 1px 3px 2px #C5FCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5FCDB; -webkit-box-shadow: 1px 1px 3px 2px #C5FCDB; box-shadow:1px 1px 3px 2px #C5FCDB;">
Div content here</div>
This text has color #C5FCDB on black background.
This text has color #C5FCDB on white background.
This text has black color on #C5FCDB background.
This text has white color on #C5FCDB background.