HEX: #A2E5DC
RGB: (162,229,220)
#A2E5DC contains mainly green and blue colors. Web safe color of #A2E5DC is #99CCCC (or #9CC).
#A2E5DC color RGB value is (162,229,220).
RGB: (162,229,220) (64%,90%,86%)
R 162 of 255 = 64%
G 229 of 255 = 90%
B 220 of 255 = 86%
R + G + B ~ 80%. #A2E5DC is quite light color.
R + G + B =
162 + 229 + 220 = 611 (100%)
R 162 of 611 ~ 26.51%
G 229 of 611 ~ 37.48%
B 220 of 611 ~ 36.01%
#A2E5DC color CMYK value is (29,0,4,10).
CMYK: (29,0,4,10) C29M0Y4K10 (29%,0%,4%,10%) (0.29/0.00/0.04/0.10)
A2 | E5 | DC | |
---|---|---|---|
RGB | 162 | 229 | 220 |
HSL | 172° | 56.30% | 76.67% |
HSB/HSV | 172° | 29.26% | 89.80% |
CMYK | 29.26% | 0.00% | 3.93% |
10.20% |
HEX | A2 | E5 | DC |
Decimal | 162 | 229 | 220 |
Binary | 10100010 | 11100101 | 11011100 |
Octal | 242 | 345 | 334 |
Examples of css and html codes for elements with #A2E5DC color. Also use rgb(162,229,220) instead hex code.
.myTextColor { color: #A2E5DC; }
<p style="color:#A2E5DC">This sample text font color is #A2E5DC.</p>
This text font color is #A2E5DC.
.myBgColor { background-color: #A2E5DC; }
<div style="background-color:#A2E5DC">Inner text</div>
This div background color is #A2E5DC.
.myBorderColor { border: 1px solid #A2E5DC; }
<div style="border:3px solid #A2E5DC">Div</div>
This div border color is #A2E5DC.
.myOpacity80 { color: #A2E5DC; opacity: 0.8; }
<p style="color:#A2E5DC;opacity:0.8;">80%</p>
Text with #A2E5DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A2E5DC;}
<p style="text-shadow: 3px 3px 1px #A2E5DC">Text here.</p>
This text has shadow with #A2E5DC color.
.textShadow {text-shadow: 3px 3px 1px #A2E5DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A2E5DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A2E5DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A2E5DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A2E5DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A2E5DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A2E5DC; -webkit-box-shadow: 1px 1px 3px 2px #A2E5DC; box-shadow: 1px 1px 3px 2px #A2E5DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A2E5DC; -webkit-box-shadow: 1px 1px 3px 2px #A2E5DC; box-shadow:1px 1px 3px 2px #A2E5DC;">
Div content here</div>
This text has color #A2E5DC on black background.
This text has color #A2E5DC on white background.
This text has black color on #A2E5DC background.
This text has white color on #A2E5DC background.