HEX: #A7CCDA
RGB: (167,204,218)
#A7CCDA contains red, green and blue colors in about the same proportion. Web safe color of #A7CCDA is #99CCCC (or #9CC).
#A7CCDA color RGB value is (167,204,218).
RGB: (167,204,218) (65%,80%,85%)
R 167 of 255 = 65%
G 204 of 255 = 80%
B 218 of 255 = 85%
R + G + B ~ 77%. #A7CCDA is quite light color.
R + G + B =
167 + 204 + 218 = 589 (100%)
R 167 of 589 ~ 28.35%
G 204 of 589 ~ 34.63%
B 218 of 589 ~ 37.01%
#A7CCDA color CMYK value is (23,6,0,15).
CMYK: (23,6,0,15) C23M6Y0K15 (23%,6%,0%,15%) (0.23/0.06/0.00/0.15)
A7 | CC | DA | |
---|---|---|---|
RGB | 167 | 204 | 218 |
HSL | 196° | 40.80% | 75.49% |
HSB/HSV | 196° | 23.39% | 85.49% |
CMYK | 23.39% | 6.42% | 0.00% |
14.51% |
HEX | A7 | CC | DA |
Decimal | 167 | 204 | 218 |
Binary | 10100111 | 11001100 | 11011010 |
Octal | 247 | 314 | 332 |
Examples of css and html codes for elements with #A7CCDA color. Also use rgb(167,204,218) instead hex code.
.myTextColor { color: #A7CCDA; }
<p style="color:#A7CCDA">This sample text font color is #A7CCDA.</p>
This text font color is #A7CCDA.
.myBgColor { background-color: #A7CCDA; }
<div style="background-color:#A7CCDA">Inner text</div>
This div background color is #A7CCDA.
.myBorderColor { border: 1px solid #A7CCDA; }
<div style="border:3px solid #A7CCDA">Div</div>
This div border color is #A7CCDA.
.myOpacity80 { color: #A7CCDA; opacity: 0.8; }
<p style="color:#A7CCDA;opacity:0.8;">80%</p>
Text with #A7CCDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7CCDA;}
<p style="text-shadow: 3px 3px 1px #A7CCDA">Text here.</p>
This text has shadow with #A7CCDA color.
.textShadow {text-shadow: 3px 3px 1px #A7CCDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7CCDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7CCDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7CCDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7CCDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7CCDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7CCDA; -webkit-box-shadow: 1px 1px 3px 2px #A7CCDA; box-shadow: 1px 1px 3px 2px #A7CCDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7CCDA; -webkit-box-shadow: 1px 1px 3px 2px #A7CCDA; box-shadow:1px 1px 3px 2px #A7CCDA;">
Div content here</div>
This text has color #A7CCDA on black background.
This text has color #A7CCDA on white background.
This text has black color on #A7CCDA background.
This text has white color on #A7CCDA background.