HEX: #C5DBCA
RGB: (197,219,202)
#C5DBCA contains red, green and blue colors in about the same proportion. Web safe color of #C5DBCA is #CCCCCC (or #CCC).
#C5DBCA color RGB value is (197,219,202).
RGB: (197,219,202) (77%,86%,79%)
R 197 of 255 = 77%
G 219 of 255 = 86%
B 202 of 255 = 79%
R + G + B ~ 81%. #C5DBCA is quite light color.
R + G + B =
197 + 219 + 202 = 618 (100%)
R 197 of 618 ~ 31.88%
G 219 of 618 ~ 35.44%
B 202 of 618 ~ 32.69%
#C5DBCA color CMYK value is (10,0,8,14).
CMYK: (10,0,8,14) C10M0Y8K14 (10%,0%,8%,14%) (0.10/0.00/0.08/0.14)
C5 | DB | CA | |
---|---|---|---|
RGB | 197 | 219 | 202 |
HSL | 134° | 23.40% | 81.57% |
HSB/HSV | 134° | 10.05% | 85.88% |
CMYK | 10.05% | 0.00% | 7.76% |
14.12% |
HEX | C5 | DB | CA |
Decimal | 197 | 219 | 202 |
Binary | 11000101 | 11011011 | 11001010 |
Octal | 305 | 333 | 312 |
Examples of css and html codes for elements with #C5DBCA color. Also use rgb(197,219,202) instead hex code.
.myTextColor { color: #C5DBCA; }
<p style="color:#C5DBCA">This sample text font color is #C5DBCA.</p>
This text font color is #C5DBCA.
.myBgColor { background-color: #C5DBCA; }
<div style="background-color:#C5DBCA">Inner text</div>
This div background color is #C5DBCA.
.myBorderColor { border: 1px solid #C5DBCA; }
<div style="border:3px solid #C5DBCA">Div</div>
This div border color is #C5DBCA.
.myOpacity80 { color: #C5DBCA; opacity: 0.8; }
<p style="color:#C5DBCA;opacity:0.8;">80%</p>
Text with #C5DBCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5DBCA;}
<p style="text-shadow: 3px 3px 1px #C5DBCA">Text here.</p>
This text has shadow with #C5DBCA color.
.textShadow {text-shadow: 3px 3px 1px #C5DBCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5DBCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5DBCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5DBCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5DBCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5DBCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5DBCA; -webkit-box-shadow: 1px 1px 3px 2px #C5DBCA; box-shadow: 1px 1px 3px 2px #C5DBCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5DBCA; -webkit-box-shadow: 1px 1px 3px 2px #C5DBCA; box-shadow:1px 1px 3px 2px #C5DBCA;">
Div content here</div>
This text has color #C5DBCA on black background.
This text has color #C5DBCA on white background.
This text has black color on #C5DBCA background.
This text has white color on #C5DBCA background.