HEX: #C7DCDD
RGB: (199,220,221)
#C7DCDD contains red, green and blue colors in about the same proportion. Web safe color of #C7DCDD is #CCCCCC (or #CCC).
#C7DCDD color RGB value is (199,220,221).
RGB: (199,220,221) (78%,86%,87%)
R 199 of 255 = 78%
G 220 of 255 = 86%
B 221 of 255 = 87%
R + G + B ~ 84%. #C7DCDD is quite light color.
R + G + B =
199 + 220 + 221 = 640 (100%)
R 199 of 640 ~ 31.09%
G 220 of 640 ~ 34.38%
B 221 of 640 ~ 34.53%
#C7DCDD color CMYK value is (10,0,0,13).
CMYK: (10,0,0,13) C10M0Y0K13 (10%,0%,0%,13%) (0.10/0.00/0.00/0.13)
C7 | DC | DD | |
---|---|---|---|
RGB | 199 | 220 | 221 |
HSL | 183° | 24.44% | 82.35% |
HSB/HSV | 183° | 9.95% | 86.67% |
CMYK | 9.95% | 0.45% | 0.00% |
13.33% |
HEX | C7 | DC | DD |
Decimal | 199 | 220 | 221 |
Binary | 11000111 | 11011100 | 11011101 |
Octal | 307 | 334 | 335 |
Examples of css and html codes for elements with #C7DCDD color. Also use rgb(199,220,221) instead hex code.
.myTextColor { color: #C7DCDD; }
<p style="color:#C7DCDD">This sample text font color is #C7DCDD.</p>
This text font color is #C7DCDD.
.myBgColor { background-color: #C7DCDD; }
<div style="background-color:#C7DCDD">Inner text</div>
This div background color is #C7DCDD.
.myBorderColor { border: 1px solid #C7DCDD; }
<div style="border:3px solid #C7DCDD">Div</div>
This div border color is #C7DCDD.
.myOpacity80 { color: #C7DCDD; opacity: 0.8; }
<p style="color:#C7DCDD;opacity:0.8;">80%</p>
Text with #C7DCDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7DCDD;}
<p style="text-shadow: 3px 3px 1px #C7DCDD">Text here.</p>
This text has shadow with #C7DCDD color.
.textShadow {text-shadow: 3px 3px 1px #C7DCDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7DCDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7DCDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7DCDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7DCDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7DCDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7DCDD; -webkit-box-shadow: 1px 1px 3px 2px #C7DCDD; box-shadow: 1px 1px 3px 2px #C7DCDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7DCDD; -webkit-box-shadow: 1px 1px 3px 2px #C7DCDD; box-shadow:1px 1px 3px 2px #C7DCDD;">
Div content here</div>
This text has color #C7DCDD on black background.
This text has color #C7DCDD on white background.
This text has black color on #C7DCDD background.
This text has white color on #C7DCDD background.