HEX: #C9BBDA
RGB: (201,187,218)
#C9BBDA contains red, green and blue colors in about the same proportion. Web safe color of #C9BBDA is #CCCCCC (or #CCC).
#C9BBDA color RGB value is (201,187,218).
RGB: (201,187,218) (79%,73%,85%)
R 201 of 255 = 79%
G 187 of 255 = 73%
B 218 of 255 = 85%
R + G + B ~ 79%. #C9BBDA is quite light color.
R + G + B =
201 + 187 + 218 = 606 (100%)
R 201 of 606 ~ 33.17%
G 187 of 606 ~ 30.86%
B 218 of 606 ~ 35.97%
#C9BBDA color CMYK value is (8,14,0,15).
CMYK: (8,14,0,15) C8M14Y0K15 (8%,14%,0%,15%) (0.08/0.14/0.00/0.15)
C9 | BB | DA | |
---|---|---|---|
RGB | 201 | 187 | 218 |
HSL | 267° | 29.52% | 79.41% |
HSB/HSV | 267° | 14.22% | 85.49% |
CMYK | 7.80% | 14.22% | 0.00% |
14.51% |
HEX | C9 | BB | DA |
Decimal | 201 | 187 | 218 |
Binary | 11001001 | 10111011 | 11011010 |
Octal | 311 | 273 | 332 |
Examples of css and html codes for elements with #C9BBDA color. Also use rgb(201,187,218) instead hex code.
.myTextColor { color: #C9BBDA; }
<p style="color:#C9BBDA">This sample text font color is #C9BBDA.</p>
This text font color is #C9BBDA.
.myBgColor { background-color: #C9BBDA; }
<div style="background-color:#C9BBDA">Inner text</div>
This div background color is #C9BBDA.
.myBorderColor { border: 1px solid #C9BBDA; }
<div style="border:3px solid #C9BBDA">Div</div>
This div border color is #C9BBDA.
.myOpacity80 { color: #C9BBDA; opacity: 0.8; }
<p style="color:#C9BBDA;opacity:0.8;">80%</p>
Text with #C9BBDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C9BBDA;}
<p style="text-shadow: 3px 3px 1px #C9BBDA">Text here.</p>
This text has shadow with #C9BBDA color.
.textShadow {text-shadow: 3px 3px 1px #C9BBDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C9BBDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C9BBDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C9BBDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C9BBDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C9BBDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C9BBDA; -webkit-box-shadow: 1px 1px 3px 2px #C9BBDA; box-shadow: 1px 1px 3px 2px #C9BBDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C9BBDA; -webkit-box-shadow: 1px 1px 3px 2px #C9BBDA; box-shadow:1px 1px 3px 2px #C9BBDA;">
Div content here</div>
This text has color #C9BBDA on black background.
This text has color #C9BBDA on white background.
This text has black color on #C9BBDA background.
This text has white color on #C9BBDA background.