HEX: #ADCCE9
RGB: (173,204,233)
#ADCCE9 contains mainly green and blue colors. Web safe color of #ADCCE9 is #99CCFF (or #9CF).
#ADCCE9 color RGB value is (173,204,233).
RGB: (173,204,233) (68%,80%,91%)
R 173 of 255 = 68%
G 204 of 255 = 80%
B 233 of 255 = 91%
R + G + B ~ 80%. #ADCCE9 is quite light color.
R + G + B =
173 + 204 + 233 = 610 (100%)
R 173 of 610 ~ 28.36%
G 204 of 610 ~ 33.44%
B 233 of 610 ~ 38.2%
#ADCCE9 color CMYK value is (26,12,0,9).
CMYK: (26,12,0,9) C26M12Y0K9 (26%,12%,0%,9%) (0.26/0.12/0.00/0.09)
AD | CC | E9 | |
---|---|---|---|
RGB | 173 | 204 | 233 |
HSL | 209° | 57.69% | 79.61% |
HSB/HSV | 209° | 25.75% | 91.37% |
CMYK | 25.75% | 12.45% | 0.00% |
8.63% |
HEX | AD | CC | E9 |
Decimal | 173 | 204 | 233 |
Binary | 10101101 | 11001100 | 11101001 |
Octal | 255 | 314 | 351 |
Examples of css and html codes for elements with #ADCCE9 color. Also use rgb(173,204,233) instead hex code.
.myTextColor { color: #ADCCE9; }
<p style="color:#ADCCE9">This sample text font color is #ADCCE9.</p>
This text font color is #ADCCE9.
.myBgColor { background-color: #ADCCE9; }
<div style="background-color:#ADCCE9">Inner text</div>
This div background color is #ADCCE9.
.myBorderColor { border: 1px solid #ADCCE9; }
<div style="border:3px solid #ADCCE9">Div</div>
This div border color is #ADCCE9.
.myOpacity80 { color: #ADCCE9; opacity: 0.8; }
<p style="color:#ADCCE9;opacity:0.8;">80%</p>
Text with #ADCCE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADCCE9;}
<p style="text-shadow: 3px 3px 1px #ADCCE9">Text here.</p>
This text has shadow with #ADCCE9 color.
.textShadow {text-shadow: 3px 3px 1px #ADCCE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADCCE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADCCE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADCCE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADCCE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADCCE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADCCE9; -webkit-box-shadow: 1px 1px 3px 2px #ADCCE9; box-shadow: 1px 1px 3px 2px #ADCCE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADCCE9; -webkit-box-shadow: 1px 1px 3px 2px #ADCCE9; box-shadow:1px 1px 3px 2px #ADCCE9;">
Div content here</div>
This text has color #ADCCE9 on black background.
This text has color #ADCCE9 on white background.
This text has black color on #ADCCE9 background.
This text has white color on #ADCCE9 background.