HEX: #C5CDDC
RGB: (197,205,220)
#C5CDDC contains red, green and blue colors in about the same proportion. Web safe color of #C5CDDC is #CCCCCC (or #CCC).
#C5CDDC color RGB value is (197,205,220).
RGB: (197,205,220) (77%,80%,86%)
R 197 of 255 = 77%
G 205 of 255 = 80%
B 220 of 255 = 86%
R + G + B ~ 81%. #C5CDDC is quite light color.
R + G + B =
197 + 205 + 220 = 622 (100%)
R 197 of 622 ~ 31.67%
G 205 of 622 ~ 32.96%
B 220 of 622 ~ 35.37%
#C5CDDC color CMYK value is (10,7,0,14).
CMYK: (10,7,0,14) C10M7Y0K14 (10%,7%,0%,14%) (0.10/0.07/0.00/0.14)
C5 | CD | DC | |
---|---|---|---|
RGB | 197 | 205 | 220 |
HSL | 219° | 24.73% | 81.76% |
HSB/HSV | 219° | 10.45% | 86.27% |
CMYK | 10.45% | 6.82% | 0.00% |
13.73% |
HEX | C5 | CD | DC |
Decimal | 197 | 205 | 220 |
Binary | 11000101 | 11001101 | 11011100 |
Octal | 305 | 315 | 334 |
Examples of css and html codes for elements with #C5CDDC color. Also use rgb(197,205,220) instead hex code.
.myTextColor { color: #C5CDDC; }
<p style="color:#C5CDDC">This sample text font color is #C5CDDC.</p>
This text font color is #C5CDDC.
.myBgColor { background-color: #C5CDDC; }
<div style="background-color:#C5CDDC">Inner text</div>
This div background color is #C5CDDC.
.myBorderColor { border: 1px solid #C5CDDC; }
<div style="border:3px solid #C5CDDC">Div</div>
This div border color is #C5CDDC.
.myOpacity80 { color: #C5CDDC; opacity: 0.8; }
<p style="color:#C5CDDC;opacity:0.8;">80%</p>
Text with #C5CDDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5CDDC;}
<p style="text-shadow: 3px 3px 1px #C5CDDC">Text here.</p>
This text has shadow with #C5CDDC color.
.textShadow {text-shadow: 3px 3px 1px #C5CDDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5CDDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5CDDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5CDDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5CDDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5CDDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5CDDC; -webkit-box-shadow: 1px 1px 3px 2px #C5CDDC; box-shadow: 1px 1px 3px 2px #C5CDDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5CDDC; -webkit-box-shadow: 1px 1px 3px 2px #C5CDDC; box-shadow:1px 1px 3px 2px #C5CDDC;">
Div content here</div>
This text has color #C5CDDC on black background.
This text has color #C5CDDC on white background.
This text has black color on #C5CDDC background.
This text has white color on #C5CDDC background.