HEX: #C9C2DE
RGB: (201,194,222)
#C9C2DE contains red, green and blue colors in about the same proportion. Web safe color of #C9C2DE is #CCCCCC (or #CCC).
#C9C2DE color RGB value is (201,194,222).
RGB: (201,194,222) (79%,76%,87%)
R 201 of 255 = 79%
G 194 of 255 = 76%
B 222 of 255 = 87%
R + G + B ~ 81%. #C9C2DE is quite light color.
R + G + B =
201 + 194 + 222 = 617 (100%)
R 201 of 617 ~ 32.58%
G 194 of 617 ~ 31.44%
B 222 of 617 ~ 35.98%
#C9C2DE color CMYK value is (9,13,0,13).
CMYK: (9,13,0,13) C9M13Y0K13 (9%,13%,0%,13%) (0.09/0.13/0.00/0.13)
C9 | C2 | DE | |
---|---|---|---|
RGB | 201 | 194 | 222 |
HSL | 255° | 29.79% | 81.57% |
HSB/HSV | 255° | 12.61% | 87.06% |
CMYK | 9.46% | 12.61% | 0.00% |
12.94% |
HEX | C9 | C2 | DE |
Decimal | 201 | 194 | 222 |
Binary | 11001001 | 11000010 | 11011110 |
Octal | 311 | 302 | 336 |
Examples of css and html codes for elements with #C9C2DE color. Also use rgb(201,194,222) instead hex code.
.myTextColor { color: #C9C2DE; }
<p style="color:#C9C2DE">This sample text font color is #C9C2DE.</p>
This text font color is #C9C2DE.
.myBgColor { background-color: #C9C2DE; }
<div style="background-color:#C9C2DE">Inner text</div>
This div background color is #C9C2DE.
.myBorderColor { border: 1px solid #C9C2DE; }
<div style="border:3px solid #C9C2DE">Div</div>
This div border color is #C9C2DE.
.myOpacity80 { color: #C9C2DE; opacity: 0.8; }
<p style="color:#C9C2DE;opacity:0.8;">80%</p>
Text with #C9C2DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9C2DE;}
<p style="text-shadow: 3px 3px 1px #C9C2DE">Text here.</p>
This text has shadow with #C9C2DE color.
.textShadow {text-shadow: 3px 3px 1px #C9C2DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9C2DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9C2DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9C2DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9C2DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9C2DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9C2DE; -webkit-box-shadow: 1px 1px 3px 2px #C9C2DE; box-shadow: 1px 1px 3px 2px #C9C2DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9C2DE; -webkit-box-shadow: 1px 1px 3px 2px #C9C2DE; box-shadow:1px 1px 3px 2px #C9C2DE;">
Div content here</div>
This text has color #C9C2DE on black background.
This text has color #C9C2DE on white background.
This text has black color on #C9C2DE background.
This text has white color on #C9C2DE background.