HEX: #A5EEDA
RGB: (165,238,218)
#A5EEDA contains mainly green and blue colors. Web safe color of #A5EEDA is #99FFCC (or #9FC).
#A5EEDA color RGB value is (165,238,218).
RGB: (165,238,218) (65%,93%,85%)
R 165 of 255 = 65%
G 238 of 255 = 93%
B 218 of 255 = 85%
R + G + B ~ 81%. #A5EEDA is quite light color.
R + G + B =
165 + 238 + 218 = 621 (100%)
R 165 of 621 ~ 26.57%
G 238 of 621 ~ 38.33%
B 218 of 621 ~ 35.1%
#A5EEDA color CMYK value is (31,0,8,7).
CMYK: (31,0,8,7) C31M0Y8K7 (31%,0%,8%,7%) (0.31/0.00/0.08/0.07)
A5 | EE | DA | |
---|---|---|---|
RGB | 165 | 238 | 218 |
HSL | 164° | 68.22% | 79.02% |
HSB/HSV | 164° | 30.67% | 93.33% |
CMYK | 30.67% | 0.00% | 8.40% |
6.67% |
HEX | A5 | EE | DA |
Decimal | 165 | 238 | 218 |
Binary | 10100101 | 11101110 | 11011010 |
Octal | 245 | 356 | 332 |
Examples of css and html codes for elements with #A5EEDA color. Also use rgb(165,238,218) instead hex code.
.myTextColor { color: #A5EEDA; }
<p style="color:#A5EEDA">This sample text font color is #A5EEDA.</p>
This text font color is #A5EEDA.
.myBgColor { background-color: #A5EEDA; }
<div style="background-color:#A5EEDA">Inner text</div>
This div background color is #A5EEDA.
.myBorderColor { border: 1px solid #A5EEDA; }
<div style="border:3px solid #A5EEDA">Div</div>
This div border color is #A5EEDA.
.myOpacity80 { color: #A5EEDA; opacity: 0.8; }
<p style="color:#A5EEDA;opacity:0.8;">80%</p>
Text with #A5EEDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5EEDA;}
<p style="text-shadow: 3px 3px 1px #A5EEDA">Text here.</p>
This text has shadow with #A5EEDA color.
.textShadow {text-shadow: 3px 3px 1px #A5EEDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5EEDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5EEDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5EEDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5EEDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5EEDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5EEDA; -webkit-box-shadow: 1px 1px 3px 2px #A5EEDA; box-shadow: 1px 1px 3px 2px #A5EEDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5EEDA; -webkit-box-shadow: 1px 1px 3px 2px #A5EEDA; box-shadow:1px 1px 3px 2px #A5EEDA;">
Div content here</div>
This text has color #A5EEDA on black background.
This text has color #A5EEDA on white background.
This text has black color on #A5EEDA background.
This text has white color on #A5EEDA background.