HEX: #A0EE5D
RGB: (160,238,93)
#A0EE5D contains mainly green color. Web safe color of #A0EE5D is #99FF66 (or #9F6).
#A0EE5D color RGB value is (160,238,93).
RGB: (160,238,93) (63%,93%,36%)
R 160 of 255 = 63%
G 238 of 255 = 93%
B 93 of 255 = 36%
R + G + B ~ 64%. #A0EE5D is quite light color.
R + G + B =
160 + 238 + 93 = 491 (100%)
R 160 of 491 ~ 32.59%
G 238 of 491 ~ 48.47%
B 93 of 491 ~ 18.94%
#A0EE5D color CMYK value is (33,0,61,7).
CMYK: (33,0,61,7) C33M0Y61K7 (33%,0%,61%,7%) (0.33/0.00/0.61/0.07)
A0 | EE | 5D | |
---|---|---|---|
RGB | 160 | 238 | 93 |
HSL | 92° | 81.01% | 64.90% |
HSB/HSV | 92° | 60.92% | 93.33% |
CMYK | 32.77% | 0.00% | 60.92% |
6.67% |
HEX | A0 | EE | 5D |
Decimal | 160 | 238 | 93 |
Binary | 10100000 | 11101110 | 1011101 |
Octal | 240 | 356 | 135 |
Examples of css and html codes for elements with #A0EE5D color. Also use rgb(160,238,93) instead hex code.
.myTextColor { color: #A0EE5D; }
<p style="color:#A0EE5D">This sample text font color is #A0EE5D.</p>
This text font color is #A0EE5D.
.myBgColor { background-color: #A0EE5D; }
<div style="background-color:#A0EE5D">Inner text</div>
This div background color is #A0EE5D.
.myBorderColor { border: 1px solid #A0EE5D; }
<div style="border:3px solid #A0EE5D">Div</div>
This div border color is #A0EE5D.
.myOpacity80 { color: #A0EE5D; opacity: 0.8; }
<p style="color:#A0EE5D;opacity:0.8;">80%</p>
Text with #A0EE5D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A0EE5D;}
<p style="text-shadow: 3px 3px 1px #A0EE5D">Text here.</p>
This text has shadow with #A0EE5D color.
.textShadow {text-shadow: 3px 3px 1px #A0EE5D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A0EE5D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A0EE5D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A0EE5D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A0EE5D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A0EE5D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A0EE5D; -webkit-box-shadow: 1px 1px 3px 2px #A0EE5D; box-shadow: 1px 1px 3px 2px #A0EE5D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A0EE5D; -webkit-box-shadow: 1px 1px 3px 2px #A0EE5D; box-shadow:1px 1px 3px 2px #A0EE5D;">
Div content here</div>
This text has color #A0EE5D on black background.
This text has color #A0EE5D on white background.
This text has black color on #A0EE5D background.
This text has white color on #A0EE5D background.