HEX: #A9CCDE
RGB: (169,204,222)
#A9CCDE contains red, green and blue colors in about the same proportion. Web safe color of #A9CCDE is #99CCCC (or #9CC).
#A9CCDE color RGB value is (169,204,222).
RGB: (169,204,222) (66%,80%,87%)
R 169 of 255 = 66%
G 204 of 255 = 80%
B 222 of 255 = 87%
R + G + B ~ 78%. #A9CCDE is quite light color.
R + G + B =
169 + 204 + 222 = 595 (100%)
R 169 of 595 ~ 28.4%
G 204 of 595 ~ 34.29%
B 222 of 595 ~ 37.31%
#A9CCDE color CMYK value is (24,8,0,13).
CMYK: (24,8,0,13) C24M8Y0K13 (24%,8%,0%,13%) (0.24/0.08/0.00/0.13)
A9 | CC | DE | |
---|---|---|---|
RGB | 169 | 204 | 222 |
HSL | 200° | 44.54% | 76.67% |
HSB/HSV | 200° | 23.87% | 87.06% |
CMYK | 23.87% | 8.11% | 0.00% |
12.94% |
HEX | A9 | CC | DE |
Decimal | 169 | 204 | 222 |
Binary | 10101001 | 11001100 | 11011110 |
Octal | 251 | 314 | 336 |
Examples of css and html codes for elements with #A9CCDE color. Also use rgb(169,204,222) instead hex code.
.myTextColor { color: #A9CCDE; }
<p style="color:#A9CCDE">This sample text font color is #A9CCDE.</p>
This text font color is #A9CCDE.
.myBgColor { background-color: #A9CCDE; }
<div style="background-color:#A9CCDE">Inner text</div>
This div background color is #A9CCDE.
.myBorderColor { border: 1px solid #A9CCDE; }
<div style="border:3px solid #A9CCDE">Div</div>
This div border color is #A9CCDE.
.myOpacity80 { color: #A9CCDE; opacity: 0.8; }
<p style="color:#A9CCDE;opacity:0.8;">80%</p>
Text with #A9CCDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9CCDE;}
<p style="text-shadow: 3px 3px 1px #A9CCDE">Text here.</p>
This text has shadow with #A9CCDE color.
.textShadow {text-shadow: 3px 3px 1px #A9CCDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9CCDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9CCDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9CCDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9CCDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9CCDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9CCDE; -webkit-box-shadow: 1px 1px 3px 2px #A9CCDE; box-shadow: 1px 1px 3px 2px #A9CCDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9CCDE; -webkit-box-shadow: 1px 1px 3px 2px #A9CCDE; box-shadow:1px 1px 3px 2px #A9CCDE;">
Div content here</div>
This text has color #A9CCDE on black background.
This text has color #A9CCDE on white background.
This text has black color on #A9CCDE background.
This text has white color on #A9CCDE background.