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