HEX: #C7D3EB
RGB: (199,211,235)
#C7D3EB contains red, green and blue colors in about the same proportion. Web safe color of #C7D3EB is #CCCCFF (or #CCF).
#C7D3EB color RGB value is (199,211,235).
RGB: (199,211,235) (78%,83%,92%)
R 199 of 255 = 78%
G 211 of 255 = 83%
B 235 of 255 = 92%
R + G + B ~ 84%. #C7D3EB is quite light color.
R + G + B =
199 + 211 + 235 = 645 (100%)
R 199 of 645 ~ 30.85%
G 211 of 645 ~ 32.71%
B 235 of 645 ~ 36.43%
#C7D3EB color CMYK value is (15,10,0,8).
CMYK: (15,10,0,8) C15M10Y0K8 (15%,10%,0%,8%) (0.15/0.10/0.00/0.08)
C7 | D3 | EB | |
---|---|---|---|
RGB | 199 | 211 | 235 |
HSL | 220° | 47.37% | 85.10% |
HSB/HSV | 220° | 15.32% | 92.16% |
CMYK | 15.32% | 10.21% | 0.00% |
7.84% |
HEX | C7 | D3 | EB |
Decimal | 199 | 211 | 235 |
Binary | 11000111 | 11010011 | 11101011 |
Octal | 307 | 323 | 353 |
Examples of css and html codes for elements with #C7D3EB color. Also use rgb(199,211,235) instead hex code.
.myTextColor { color: #C7D3EB; }
<p style="color:#C7D3EB">This sample text font color is #C7D3EB.</p>
This text font color is #C7D3EB.
.myBgColor { background-color: #C7D3EB; }
<div style="background-color:#C7D3EB">Inner text</div>
This div background color is #C7D3EB.
.myBorderColor { border: 1px solid #C7D3EB; }
<div style="border:3px solid #C7D3EB">Div</div>
This div border color is #C7D3EB.
.myOpacity80 { color: #C7D3EB; opacity: 0.8; }
<p style="color:#C7D3EB;opacity:0.8;">80%</p>
Text with #C7D3EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7D3EB;}
<p style="text-shadow: 3px 3px 1px #C7D3EB">Text here.</p>
This text has shadow with #C7D3EB color.
.textShadow {text-shadow: 3px 3px 1px #C7D3EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7D3EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7D3EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7D3EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7D3EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7D3EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7D3EB; -webkit-box-shadow: 1px 1px 3px 2px #C7D3EB; box-shadow: 1px 1px 3px 2px #C7D3EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7D3EB; -webkit-box-shadow: 1px 1px 3px 2px #C7D3EB; box-shadow:1px 1px 3px 2px #C7D3EB;">
Div content here</div>
This text has color #C7D3EB on black background.
This text has color #C7D3EB on white background.
This text has black color on #C7D3EB background.
This text has white color on #C7D3EB background.