HEX: #C3CDEC
RGB: (195,205,236)
#C3CDEC contains red, green and blue colors in about the same proportion. Web safe color of #C3CDEC is #CCCCFF (or #CCF).
#C3CDEC color RGB value is (195,205,236).
RGB: (195,205,236) (76%,80%,93%)
R 195 of 255 = 76%
G 205 of 255 = 80%
B 236 of 255 = 93%
R + G + B ~ 83%. #C3CDEC is quite light color.
R + G + B =
195 + 205 + 236 = 636 (100%)
R 195 of 636 ~ 30.66%
G 205 of 636 ~ 32.23%
B 236 of 636 ~ 37.11%
#C3CDEC color CMYK value is (17,13,0,7).
CMYK: (17,13,0,7) C17M13Y0K7 (17%,13%,0%,7%) (0.17/0.13/0.00/0.07)
C3 | CD | EC | |
---|---|---|---|
RGB | 195 | 205 | 236 |
HSL | 225° | 51.90% | 84.51% |
HSB/HSV | 225° | 17.37% | 92.55% |
CMYK | 17.37% | 13.14% | 0.00% |
7.45% |
HEX | C3 | CD | EC |
Decimal | 195 | 205 | 236 |
Binary | 11000011 | 11001101 | 11101100 |
Octal | 303 | 315 | 354 |
Examples of css and html codes for elements with #C3CDEC color. Also use rgb(195,205,236) instead hex code.
.myTextColor { color: #C3CDEC; }
<p style="color:#C3CDEC">This sample text font color is #C3CDEC.</p>
This text font color is #C3CDEC.
.myBgColor { background-color: #C3CDEC; }
<div style="background-color:#C3CDEC">Inner text</div>
This div background color is #C3CDEC.
.myBorderColor { border: 1px solid #C3CDEC; }
<div style="border:3px solid #C3CDEC">Div</div>
This div border color is #C3CDEC.
.myOpacity80 { color: #C3CDEC; opacity: 0.8; }
<p style="color:#C3CDEC;opacity:0.8;">80%</p>
Text with #C3CDEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3CDEC;}
<p style="text-shadow: 3px 3px 1px #C3CDEC">Text here.</p>
This text has shadow with #C3CDEC color.
.textShadow {text-shadow: 3px 3px 1px #C3CDEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3CDEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3CDEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3CDEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3CDEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3CDEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3CDEC; -webkit-box-shadow: 1px 1px 3px 2px #C3CDEC; box-shadow: 1px 1px 3px 2px #C3CDEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3CDEC; -webkit-box-shadow: 1px 1px 3px 2px #C3CDEC; box-shadow:1px 1px 3px 2px #C3CDEC;">
Div content here</div>
This text has color #C3CDEC on black background.
This text has color #C3CDEC on white background.
This text has black color on #C3CDEC background.
This text has white color on #C3CDEC background.