HEX: #A9EED1
RGB: (169,238,209)
#A9EED1 contains mainly green and blue colors. Web safe color of #A9EED1 is #99FFCC (or #9FC).
#A9EED1 color RGB value is (169,238,209).
RGB: (169,238,209) (66%,93%,82%)
R 169 of 255 = 66%
G 238 of 255 = 93%
B 209 of 255 = 82%
R + G + B ~ 80%. #A9EED1 is quite light color.
R + G + B =
169 + 238 + 209 = 616 (100%)
R 169 of 616 ~ 27.44%
G 238 of 616 ~ 38.64%
B 209 of 616 ~ 33.93%
#A9EED1 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 | EE | D1 | |
---|---|---|---|
RGB | 169 | 238 | 209 |
HSL | 155° | 66.99% | 79.80% |
HSB/HSV | 155° | 28.99% | 93.33% |
CMYK | 28.99% | 0.00% | 12.18% |
6.67% |
HEX | A9 | EE | D1 |
Decimal | 169 | 238 | 209 |
Binary | 10101001 | 11101110 | 11010001 |
Octal | 251 | 356 | 321 |
Examples of css and html codes for elements with #A9EED1 color. Also use rgb(169,238,209) instead hex code.
.myTextColor { color: #A9EED1; }
<p style="color:#A9EED1">This sample text font color is #A9EED1.</p>
This text font color is #A9EED1.
.myBgColor { background-color: #A9EED1; }
<div style="background-color:#A9EED1">Inner text</div>
This div background color is #A9EED1.
.myBorderColor { border: 1px solid #A9EED1; }
<div style="border:3px solid #A9EED1">Div</div>
This div border color is #A9EED1.
.myOpacity80 { color: #A9EED1; opacity: 0.8; }
<p style="color:#A9EED1;opacity:0.8;">80%</p>
Text with #A9EED1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9EED1;}
<p style="text-shadow: 3px 3px 1px #A9EED1">Text here.</p>
This text has shadow with #A9EED1 color.
.textShadow {text-shadow: 3px 3px 1px #A9EED1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9EED1, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9EED1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9EED1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9EED1, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9EED1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9EED1; -webkit-box-shadow: 1px 1px 3px 2px #A9EED1; box-shadow: 1px 1px 3px 2px #A9EED1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9EED1; -webkit-box-shadow: 1px 1px 3px 2px #A9EED1; box-shadow:1px 1px 3px 2px #A9EED1;">
Div content here</div>
This text has color #A9EED1 on black background.
This text has color #A9EED1 on white background.
This text has black color on #A9EED1 background.
This text has white color on #A9EED1 background.