HEX: #C5CBCA
RGB: (197,203,202)
#C5CBCA contains red, green and blue colors in about the same proportion. Web safe color of #C5CBCA is #CCCCCC (or #CCC).
#C5CBCA color RGB value is (197,203,202).
RGB: (197,203,202) (77%,80%,79%)
R 197 of 255 = 77%
G 203 of 255 = 80%
B 202 of 255 = 79%
R + G + B ~ 79%. #C5CBCA is quite light color.
R + G + B =
197 + 203 + 202 = 602 (100%)
R 197 of 602 ~ 32.72%
G 203 of 602 ~ 33.72%
B 202 of 602 ~ 33.55%
#C5CBCA color CMYK value is (3,0,0,20).
CMYK: (3,0,0,20) C3M0Y0K20 (3%,0%,0%,20%) (0.03/0.00/0.00/0.20)
C5 | CB | CA | |
---|---|---|---|
RGB | 197 | 203 | 202 |
HSL | 170° | 5.45% | 78.43% |
HSB/HSV | 170° | 2.96% | 79.61% |
CMYK | 2.96% | 0.00% | 0.49% |
20.39% |
HEX | C5 | CB | CA |
Decimal | 197 | 203 | 202 |
Binary | 11000101 | 11001011 | 11001010 |
Octal | 305 | 313 | 312 |
Examples of css and html codes for elements with #C5CBCA color. Also use rgb(197,203,202) instead hex code.
.myTextColor { color: #C5CBCA; }
<p style="color:#C5CBCA">This sample text font color is #C5CBCA.</p>
This text font color is #C5CBCA.
.myBgColor { background-color: #C5CBCA; }
<div style="background-color:#C5CBCA">Inner text</div>
This div background color is #C5CBCA.
.myBorderColor { border: 1px solid #C5CBCA; }
<div style="border:3px solid #C5CBCA">Div</div>
This div border color is #C5CBCA.
.myOpacity80 { color: #C5CBCA; opacity: 0.8; }
<p style="color:#C5CBCA;opacity:0.8;">80%</p>
Text with #C5CBCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5CBCA;}
<p style="text-shadow: 3px 3px 1px #C5CBCA">Text here.</p>
This text has shadow with #C5CBCA color.
.textShadow {text-shadow: 3px 3px 1px #C5CBCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5CBCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5CBCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5CBCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5CBCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5CBCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5CBCA; -webkit-box-shadow: 1px 1px 3px 2px #C5CBCA; box-shadow: 1px 1px 3px 2px #C5CBCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5CBCA; -webkit-box-shadow: 1px 1px 3px 2px #C5CBCA; box-shadow:1px 1px 3px 2px #C5CBCA;">
Div content here</div>
This text has color #C5CBCA on black background.
This text has color #C5CBCA on white background.
This text has black color on #C5CBCA background.
This text has white color on #C5CBCA background.