HEX: #AADDCE
RGB: (170,221,206)
#AADDCE contains red, green and blue colors in about the same proportion. Web safe color of #AADDCE is #99CCCC (or #9CC).
#AADDCE color RGB value is (170,221,206).
RGB: (170,221,206) (67%,87%,81%)
R 170 of 255 = 67%
G 221 of 255 = 87%
B 206 of 255 = 81%
R + G + B ~ 78%. #AADDCE is quite light color.
R + G + B =
170 + 221 + 206 = 597 (100%)
R 170 of 597 ~ 28.48%
G 221 of 597 ~ 37.02%
B 206 of 597 ~ 34.51%
#AADDCE color CMYK value is (23,0,7,13).
CMYK: (23,0,7,13) C23M0Y7K13 (23%,0%,7%,13%) (0.23/0.00/0.07/0.13)
AA | DD | CE | |
---|---|---|---|
RGB | 170 | 221 | 206 |
HSL | 162° | 42.86% | 76.67% |
HSB/HSV | 162° | 23.08% | 86.67% |
CMYK | 23.08% | 0.00% | 6.79% |
13.33% |
HEX | AA | DD | CE |
Decimal | 170 | 221 | 206 |
Binary | 10101010 | 11011101 | 11001110 |
Octal | 252 | 335 | 316 |
Examples of css and html codes for elements with #AADDCE color. Also use rgb(170,221,206) instead hex code.
.myTextColor { color: #AADDCE; }
<p style="color:#AADDCE">This sample text font color is #AADDCE.</p>
This text font color is #AADDCE.
.myBgColor { background-color: #AADDCE; }
<div style="background-color:#AADDCE">Inner text</div>
This div background color is #AADDCE.
.myBorderColor { border: 1px solid #AADDCE; }
<div style="border:3px solid #AADDCE">Div</div>
This div border color is #AADDCE.
.myOpacity80 { color: #AADDCE; opacity: 0.8; }
<p style="color:#AADDCE;opacity:0.8;">80%</p>
Text with #AADDCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AADDCE;}
<p style="text-shadow: 3px 3px 1px #AADDCE">Text here.</p>
This text has shadow with #AADDCE color.
.textShadow {text-shadow: 3px 3px 1px #AADDCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AADDCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AADDCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AADDCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AADDCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AADDCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AADDCE; -webkit-box-shadow: 1px 1px 3px 2px #AADDCE; box-shadow: 1px 1px 3px 2px #AADDCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AADDCE; -webkit-box-shadow: 1px 1px 3px 2px #AADDCE; box-shadow:1px 1px 3px 2px #AADDCE;">
Div content here</div>
This text has color #AADDCE on black background.
This text has color #AADDCE on white background.
This text has black color on #AADDCE background.
This text has white color on #AADDCE background.