HEX: #C6CADD
RGB: (198,202,221)
#C6CADD contains red, green and blue colors in about the same proportion. Web safe color of #C6CADD is #CCCCCC (or #CCC).
#C6CADD color RGB value is (198,202,221).
RGB: (198,202,221) (78%,79%,87%)
R 198 of 255 = 78%
G 202 of 255 = 79%
B 221 of 255 = 87%
R + G + B ~ 81%. #C6CADD is quite light color.
R + G + B =
198 + 202 + 221 = 621 (100%)
R 198 of 621 ~ 31.88%
G 202 of 621 ~ 32.53%
B 221 of 621 ~ 35.59%
#C6CADD color CMYK value is (10,9,0,13).
CMYK: (10,9,0,13) C10M9Y0K13 (10%,9%,0%,13%) (0.10/0.09/0.00/0.13)
C6 | CA | DD | |
---|---|---|---|
RGB | 198 | 202 | 221 |
HSL | 230° | 25.27% | 82.16% |
HSB/HSV | 230° | 10.41% | 86.67% |
CMYK | 10.41% | 8.60% | 0.00% |
13.33% |
HEX | C6 | CA | DD |
Decimal | 198 | 202 | 221 |
Binary | 11000110 | 11001010 | 11011101 |
Octal | 306 | 312 | 335 |
Examples of css and html codes for elements with #C6CADD color. Also use rgb(198,202,221) instead hex code.
.myTextColor { color: #C6CADD; }
<p style="color:#C6CADD">This sample text font color is #C6CADD.</p>
This text font color is #C6CADD.
.myBgColor { background-color: #C6CADD; }
<div style="background-color:#C6CADD">Inner text</div>
This div background color is #C6CADD.
.myBorderColor { border: 1px solid #C6CADD; }
<div style="border:3px solid #C6CADD">Div</div>
This div border color is #C6CADD.
.myOpacity80 { color: #C6CADD; opacity: 0.8; }
<p style="color:#C6CADD;opacity:0.8;">80%</p>
Text with #C6CADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6CADD;}
<p style="text-shadow: 3px 3px 1px #C6CADD">Text here.</p>
This text has shadow with #C6CADD color.
.textShadow {text-shadow: 3px 3px 1px #C6CADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6CADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6CADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6CADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6CADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6CADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6CADD; -webkit-box-shadow: 1px 1px 3px 2px #C6CADD; box-shadow: 1px 1px 3px 2px #C6CADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6CADD; -webkit-box-shadow: 1px 1px 3px 2px #C6CADD; box-shadow:1px 1px 3px 2px #C6CADD;">
Div content here</div>
This text has color #C6CADD on black background.
This text has color #C6CADD on white background.
This text has black color on #C6CADD background.
This text has white color on #C6CADD background.