HEX: #C7DBDB
RGB: (199,219,219)
#C7DBDB contains red, green and blue colors in about the same proportion. Web safe color of #C7DBDB is #CCCCCC (or #CCC).
#C7DBDB color RGB value is (199,219,219).
RGB: (199,219,219) (78%,86%,86%)
R 199 of 255 = 78%
G 219 of 255 = 86%
B 219 of 255 = 86%
R + G + B ~ 83%. #C7DBDB is quite light color.
R + G + B =
199 + 219 + 219 = 637 (100%)
R 199 of 637 ~ 31.24%
G 219 of 637 ~ 34.38%
B 219 of 637 ~ 34.38%
#C7DBDB color CMYK value is (9,0,0,14).
CMYK: (9,0,0,14) C9M0Y0K14 (9%,0%,0%,14%) (0.09/0.00/0.00/0.14)
C7 | DB | DB | |
---|---|---|---|
RGB | 199 | 219 | 219 |
HSL | 180° | 21.74% | 81.96% |
HSB/HSV | 180° | 9.13% | 85.88% |
CMYK | 9.13% | 0.00% | 0.00% |
14.12% |
HEX | C7 | DB | DB |
Decimal | 199 | 219 | 219 |
Binary | 11000111 | 11011011 | 11011011 |
Octal | 307 | 333 | 333 |
Examples of css and html codes for elements with #C7DBDB color. Also use rgb(199,219,219) instead hex code.
.myTextColor { color: #C7DBDB; }
<p style="color:#C7DBDB">This sample text font color is #C7DBDB.</p>
This text font color is #C7DBDB.
.myBgColor { background-color: #C7DBDB; }
<div style="background-color:#C7DBDB">Inner text</div>
This div background color is #C7DBDB.
.myBorderColor { border: 1px solid #C7DBDB; }
<div style="border:3px solid #C7DBDB">Div</div>
This div border color is #C7DBDB.
.myOpacity80 { color: #C7DBDB; opacity: 0.8; }
<p style="color:#C7DBDB;opacity:0.8;">80%</p>
Text with #C7DBDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7DBDB;}
<p style="text-shadow: 3px 3px 1px #C7DBDB">Text here.</p>
This text has shadow with #C7DBDB color.
.textShadow {text-shadow: 3px 3px 1px #C7DBDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7DBDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7DBDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7DBDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7DBDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7DBDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7DBDB; -webkit-box-shadow: 1px 1px 3px 2px #C7DBDB; box-shadow: 1px 1px 3px 2px #C7DBDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7DBDB; -webkit-box-shadow: 1px 1px 3px 2px #C7DBDB; box-shadow:1px 1px 3px 2px #C7DBDB;">
Div content here</div>
This text has color #C7DBDB on black background.
This text has color #C7DBDB on white background.
This text has black color on #C7DBDB background.
This text has white color on #C7DBDB background.