HEX: #C5B9DB
RGB: (197,185,219)
#C5B9DB contains red, green and blue colors in about the same proportion. Web safe color of #C5B9DB is #CCCCCC (or #CCC).
#C5B9DB color RGB value is (197,185,219).
RGB: (197,185,219) (77%,73%,86%)
R 197 of 255 = 77%
G 185 of 255 = 73%
B 219 of 255 = 86%
R + G + B ~ 79%. #C5B9DB is quite light color.
R + G + B =
197 + 185 + 219 = 601 (100%)
R 197 of 601 ~ 32.78%
G 185 of 601 ~ 30.78%
B 219 of 601 ~ 36.44%
#C5B9DB color CMYK value is (10,16,0,14).
CMYK: (10,16,0,14) C10M16Y0K14 (10%,16%,0%,14%) (0.10/0.16/0.00/0.14)
C5 | B9 | DB | |
---|---|---|---|
RGB | 197 | 185 | 219 |
HSL | 261° | 32.08% | 79.22% |
HSB/HSV | 261° | 15.53% | 85.88% |
CMYK | 10.05% | 15.53% | 0.00% |
14.12% |
HEX | C5 | B9 | DB |
Decimal | 197 | 185 | 219 |
Binary | 11000101 | 10111001 | 11011011 |
Octal | 305 | 271 | 333 |
Examples of css and html codes for elements with #C5B9DB color. Also use rgb(197,185,219) instead hex code.
.myTextColor { color: #C5B9DB; }
<p style="color:#C5B9DB">This sample text font color is #C5B9DB.</p>
This text font color is #C5B9DB.
.myBgColor { background-color: #C5B9DB; }
<div style="background-color:#C5B9DB">Inner text</div>
This div background color is #C5B9DB.
.myBorderColor { border: 1px solid #C5B9DB; }
<div style="border:3px solid #C5B9DB">Div</div>
This div border color is #C5B9DB.
.myOpacity80 { color: #C5B9DB; opacity: 0.8; }
<p style="color:#C5B9DB;opacity:0.8;">80%</p>
Text with #C5B9DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5B9DB;}
<p style="text-shadow: 3px 3px 1px #C5B9DB">Text here.</p>
This text has shadow with #C5B9DB color.
.textShadow {text-shadow: 3px 3px 1px #C5B9DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5B9DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5B9DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5B9DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5B9DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5B9DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5B9DB; -webkit-box-shadow: 1px 1px 3px 2px #C5B9DB; box-shadow: 1px 1px 3px 2px #C5B9DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5B9DB; -webkit-box-shadow: 1px 1px 3px 2px #C5B9DB; box-shadow:1px 1px 3px 2px #C5B9DB;">
Div content here</div>
This text has color #C5B9DB on black background.
This text has color #C5B9DB on white background.
This text has black color on #C5B9DB background.
This text has white color on #C5B9DB background.