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