HEX: #A9EDD1
RGB: (169,237,209)
#A9EDD1 contains mainly green and blue colors. Web safe color of #A9EDD1 is #99FFCC (or #9FC).
#A9EDD1 color RGB value is (169,237,209).
RGB: (169,237,209) (66%,93%,82%)
R 169 of 255 = 66%
G 237 of 255 = 93%
B 209 of 255 = 82%
R + G + B ~ 80%. #A9EDD1 is quite light color.
R + G + B =
169 + 237 + 209 = 615 (100%)
R 169 of 615 ~ 27.48%
G 237 of 615 ~ 38.54%
B 209 of 615 ~ 33.98%
#A9EDD1 color CMYK value is (29,0,12,7).
CMYK: (29,0,12,7) C29M0Y12K7 (29%,0%,12%,7%) (0.29/0.00/0.12/0.07)
A9 | ED | D1 | |
---|---|---|---|
RGB | 169 | 237 | 209 |
HSL | 155° | 65.38% | 79.61% |
HSB/HSV | 155° | 28.69% | 92.94% |
CMYK | 28.69% | 0.00% | 11.81% |
7.06% |
HEX | A9 | ED | D1 |
Decimal | 169 | 237 | 209 |
Binary | 10101001 | 11101101 | 11010001 |
Octal | 251 | 355 | 321 |
Examples of css and html codes for elements with #A9EDD1 color. Also use rgb(169,237,209) instead hex code.
.myTextColor { color: #A9EDD1; }
<p style="color:#A9EDD1">This sample text font color is #A9EDD1.</p>
This text font color is #A9EDD1.
.myBgColor { background-color: #A9EDD1; }
<div style="background-color:#A9EDD1">Inner text</div>
This div background color is #A9EDD1.
.myBorderColor { border: 1px solid #A9EDD1; }
<div style="border:3px solid #A9EDD1">Div</div>
This div border color is #A9EDD1.
.myOpacity80 { color: #A9EDD1; opacity: 0.8; }
<p style="color:#A9EDD1;opacity:0.8;">80%</p>
Text with #A9EDD1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9EDD1;}
<p style="text-shadow: 3px 3px 1px #A9EDD1">Text here.</p>
This text has shadow with #A9EDD1 color.
.textShadow {text-shadow: 3px 3px 1px #A9EDD1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9EDD1, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9EDD1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9EDD1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9EDD1, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9EDD1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9EDD1; -webkit-box-shadow: 1px 1px 3px 2px #A9EDD1; box-shadow: 1px 1px 3px 2px #A9EDD1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9EDD1; -webkit-box-shadow: 1px 1px 3px 2px #A9EDD1; box-shadow:1px 1px 3px 2px #A9EDD1;">
Div content here</div>
This text has color #A9EDD1 on black background.
This text has color #A9EDD1 on white background.
This text has black color on #A9EDD1 background.
This text has white color on #A9EDD1 background.