HEX: #A9DADD
RGB: (169,218,221)
#A9DADD contains red, green and blue colors in about the same proportion. Web safe color of #A9DADD is #99CCCC (or #9CC).
#A9DADD color RGB value is (169,218,221).
RGB: (169,218,221) (66%,85%,87%)
R 169 of 255 = 66%
G 218 of 255 = 85%
B 221 of 255 = 87%
R + G + B ~ 79%. #A9DADD is quite light color.
R + G + B =
169 + 218 + 221 = 608 (100%)
R 169 of 608 ~ 27.8%
G 218 of 608 ~ 35.86%
B 221 of 608 ~ 36.35%
#A9DADD color CMYK value is (24,1,0,13).
CMYK: (24,1,0,13) C24M1Y0K13 (24%,1%,0%,13%) (0.24/0.01/0.00/0.13)
A9 | DA | DD | |
---|---|---|---|
RGB | 169 | 218 | 221 |
HSL | 183° | 43.33% | 76.47% |
HSB/HSV | 183° | 23.53% | 86.67% |
CMYK | 23.53% | 1.36% | 0.00% |
13.33% |
HEX | A9 | DA | DD |
Decimal | 169 | 218 | 221 |
Binary | 10101001 | 11011010 | 11011101 |
Octal | 251 | 332 | 335 |
Examples of css and html codes for elements with #A9DADD color. Also use rgb(169,218,221) instead hex code.
.myTextColor { color: #A9DADD; }
<p style="color:#A9DADD">This sample text font color is #A9DADD.</p>
This text font color is #A9DADD.
.myBgColor { background-color: #A9DADD; }
<div style="background-color:#A9DADD">Inner text</div>
This div background color is #A9DADD.
.myBorderColor { border: 1px solid #A9DADD; }
<div style="border:3px solid #A9DADD">Div</div>
This div border color is #A9DADD.
.myOpacity80 { color: #A9DADD; opacity: 0.8; }
<p style="color:#A9DADD;opacity:0.8;">80%</p>
Text with #A9DADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9DADD;}
<p style="text-shadow: 3px 3px 1px #A9DADD">Text here.</p>
This text has shadow with #A9DADD color.
.textShadow {text-shadow: 3px 3px 1px #A9DADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9DADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9DADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9DADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9DADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9DADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9DADD; -webkit-box-shadow: 1px 1px 3px 2px #A9DADD; box-shadow: 1px 1px 3px 2px #A9DADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9DADD; -webkit-box-shadow: 1px 1px 3px 2px #A9DADD; box-shadow:1px 1px 3px 2px #A9DADD;">
Div content here</div>
This text has color #A9DADD on black background.
This text has color #A9DADD on white background.
This text has black color on #A9DADD background.
This text has white color on #A9DADD background.