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