HEX: #A2E99E
RGB: (162,233,158)
#A2E99E contains mainly green color. Web safe color of #A2E99E is #99FF99 (or #9F9).
#A2E99E color RGB value is (162,233,158).
RGB: (162,233,158) (64%,91%,62%)
R 162 of 255 = 64%
G 233 of 255 = 91%
B 158 of 255 = 62%
R + G + B ~ 72%. #A2E99E is quite light color.
R + G + B =
162 + 233 + 158 = 553 (100%)
R 162 of 553 ~ 29.29%
G 233 of 553 ~ 42.13%
B 158 of 553 ~ 28.57%
#A2E99E color CMYK value is (30,0,32,9).
CMYK: (30,0,32,9) C30M0Y32K9 (30%,0%,32%,9%) (0.30/0.00/0.32/0.09)
A2 | E9 | 9E | |
---|---|---|---|
RGB | 162 | 233 | 158 |
HSL | 117° | 63.03% | 76.67% |
HSB/HSV | 117° | 32.19% | 91.37% |
CMYK | 30.47% | 0.00% | 32.19% |
8.63% |
HEX | A2 | E9 | 9E |
Decimal | 162 | 233 | 158 |
Binary | 10100010 | 11101001 | 10011110 |
Octal | 242 | 351 | 236 |
Examples of css and html codes for elements with #A2E99E color. Also use rgb(162,233,158) instead hex code.
.myTextColor { color: #A2E99E; }
<p style="color:#A2E99E">This sample text font color is #A2E99E.</p>
This text font color is #A2E99E.
.myBgColor { background-color: #A2E99E; }
<div style="background-color:#A2E99E">Inner text</div>
This div background color is #A2E99E.
.myBorderColor { border: 1px solid #A2E99E; }
<div style="border:3px solid #A2E99E">Div</div>
This div border color is #A2E99E.
.myOpacity80 { color: #A2E99E; opacity: 0.8; }
<p style="color:#A2E99E;opacity:0.8;">80%</p>
Text with #A2E99E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A2E99E;}
<p style="text-shadow: 3px 3px 1px #A2E99E">Text here.</p>
This text has shadow with #A2E99E color.
.textShadow {text-shadow: 3px 3px 1px #A2E99E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A2E99E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A2E99E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A2E99E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A2E99E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A2E99E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A2E99E; -webkit-box-shadow: 1px 1px 3px 2px #A2E99E; box-shadow: 1px 1px 3px 2px #A2E99E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A2E99E; -webkit-box-shadow: 1px 1px 3px 2px #A2E99E; box-shadow:1px 1px 3px 2px #A2E99E;">
Div content here</div>
This text has color #A2E99E on black background.
This text has color #A2E99E on white background.
This text has black color on #A2E99E background.
This text has white color on #A2E99E background.