HEX: #ADCCEC
RGB: (173,204,236)
#ADCCEC contains mainly green and blue colors. Web safe color of #ADCCEC is #99CCFF (or #9CF).
#ADCCEC color RGB value is (173,204,236).
RGB: (173,204,236) (68%,80%,93%)
R 173 of 255 = 68%
G 204 of 255 = 80%
B 236 of 255 = 93%
R + G + B ~ 80%. #ADCCEC is quite light color.
R + G + B =
173 + 204 + 236 = 613 (100%)
R 173 of 613 ~ 28.22%
G 204 of 613 ~ 33.28%
B 236 of 613 ~ 38.5%
#ADCCEC color CMYK value is (27,14,0,7).
CMYK: (27,14,0,7) C27M14Y0K7 (27%,14%,0%,7%) (0.27/0.14/0.00/0.07)
AD | CC | EC | |
---|---|---|---|
RGB | 173 | 204 | 236 |
HSL | 210° | 62.38% | 80.20% |
HSB/HSV | 210° | 26.69% | 92.55% |
CMYK | 26.69% | 13.56% | 0.00% |
7.45% |
HEX | AD | CC | EC |
Decimal | 173 | 204 | 236 |
Binary | 10101101 | 11001100 | 11101100 |
Octal | 255 | 314 | 354 |
Examples of css and html codes for elements with #ADCCEC color. Also use rgb(173,204,236) instead hex code.
.myTextColor { color: #ADCCEC; }
<p style="color:#ADCCEC">This sample text font color is #ADCCEC.</p>
This text font color is #ADCCEC.
.myBgColor { background-color: #ADCCEC; }
<div style="background-color:#ADCCEC">Inner text</div>
This div background color is #ADCCEC.
.myBorderColor { border: 1px solid #ADCCEC; }
<div style="border:3px solid #ADCCEC">Div</div>
This div border color is #ADCCEC.
.myOpacity80 { color: #ADCCEC; opacity: 0.8; }
<p style="color:#ADCCEC;opacity:0.8;">80%</p>
Text with #ADCCEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCCEC;}
<p style="text-shadow: 3px 3px 1px #ADCCEC">Text here.</p>
This text has shadow with #ADCCEC color.
.textShadow {text-shadow: 3px 3px 1px #ADCCEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCCEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCCEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCCEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCCEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCCEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCCEC; -webkit-box-shadow: 1px 1px 3px 2px #ADCCEC; box-shadow: 1px 1px 3px 2px #ADCCEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCCEC; -webkit-box-shadow: 1px 1px 3px 2px #ADCCEC; box-shadow:1px 1px 3px 2px #ADCCEC;">
Div content here</div>
This text has color #ADCCEC on black background.
This text has color #ADCCEC on white background.
This text has black color on #ADCCEC background.
This text has white color on #ADCCEC background.