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