HEX: #A7D3EC
RGB: (167,211,236)
#A7D3EC contains mainly green and blue colors. Web safe color of #A7D3EC is #99CCFF (or #9CF).
#A7D3EC color RGB value is (167,211,236).
RGB: (167,211,236) (65%,83%,93%)
R 167 of 255 = 65%
G 211 of 255 = 83%
B 236 of 255 = 93%
R + G + B ~ 80%. #A7D3EC is quite light color.
R + G + B =
167 + 211 + 236 = 614 (100%)
R 167 of 614 ~ 27.2%
G 211 of 614 ~ 34.36%
B 236 of 614 ~ 38.44%
#A7D3EC color CMYK value is (29,11,0,7).
CMYK: (29,11,0,7) C29M11Y0K7 (29%,11%,0%,7%) (0.29/0.11/0.00/0.07)
A7 | D3 | EC | |
---|---|---|---|
RGB | 167 | 211 | 236 |
HSL | 202° | 64.49% | 79.02% |
HSB/HSV | 202° | 29.24% | 92.55% |
CMYK | 29.24% | 10.59% | 0.00% |
7.45% |
HEX | A7 | D3 | EC |
Decimal | 167 | 211 | 236 |
Binary | 10100111 | 11010011 | 11101100 |
Octal | 247 | 323 | 354 |
Examples of css and html codes for elements with #A7D3EC color. Also use rgb(167,211,236) instead hex code.
.myTextColor { color: #A7D3EC; }
<p style="color:#A7D3EC">This sample text font color is #A7D3EC.</p>
This text font color is #A7D3EC.
.myBgColor { background-color: #A7D3EC; }
<div style="background-color:#A7D3EC">Inner text</div>
This div background color is #A7D3EC.
.myBorderColor { border: 1px solid #A7D3EC; }
<div style="border:3px solid #A7D3EC">Div</div>
This div border color is #A7D3EC.
.myOpacity80 { color: #A7D3EC; opacity: 0.8; }
<p style="color:#A7D3EC;opacity:0.8;">80%</p>
Text with #A7D3EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7D3EC;}
<p style="text-shadow: 3px 3px 1px #A7D3EC">Text here.</p>
This text has shadow with #A7D3EC color.
.textShadow {text-shadow: 3px 3px 1px #A7D3EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7D3EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7D3EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7D3EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7D3EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7D3EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7D3EC; -webkit-box-shadow: 1px 1px 3px 2px #A7D3EC; box-shadow: 1px 1px 3px 2px #A7D3EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7D3EC; -webkit-box-shadow: 1px 1px 3px 2px #A7D3EC; box-shadow:1px 1px 3px 2px #A7D3EC;">
Div content here</div>
This text has color #A7D3EC on black background.
This text has color #A7D3EC on white background.
This text has black color on #A7D3EC background.
This text has white color on #A7D3EC background.