HEX: #A5EB57
RGB: (165,235,87)
#A5EB57 contains mainly green color. Web safe color of #A5EB57 is #99FF66 (or #9F6).
#A5EB57 color RGB value is (165,235,87).
RGB: (165,235,87) (65%,92%,34%)
R 165 of 255 = 65%
G 235 of 255 = 92%
B 87 of 255 = 34%
R + G + B ~ 64%. #A5EB57 is quite light color.
R + G + B =
165 + 235 + 87 = 487 (100%)
R 165 of 487 ~ 33.88%
G 235 of 487 ~ 48.25%
B 87 of 487 ~ 17.86%
#A5EB57 color CMYK value is (30,0,63,8).
CMYK: (30,0,63,8) C30M0Y63K8 (30%,0%,63%,8%) (0.30/0.00/0.63/0.08)
A5 | EB | 57 | |
---|---|---|---|
RGB | 165 | 235 | 87 |
HSL | 88° | 78.72% | 63.14% |
HSB/HSV | 88° | 62.98% | 92.16% |
CMYK | 29.79% | 0.00% | 62.98% |
7.84% |
HEX | A5 | EB | 57 |
Decimal | 165 | 235 | 87 |
Binary | 10100101 | 11101011 | 1010111 |
Octal | 245 | 353 | 127 |
Examples of css and html codes for elements with #A5EB57 color. Also use rgb(165,235,87) instead hex code.
.myTextColor { color: #A5EB57; }
<p style="color:#A5EB57">This sample text font color is #A5EB57.</p>
This text font color is #A5EB57.
.myBgColor { background-color: #A5EB57; }
<div style="background-color:#A5EB57">Inner text</div>
This div background color is #A5EB57.
.myBorderColor { border: 1px solid #A5EB57; }
<div style="border:3px solid #A5EB57">Div</div>
This div border color is #A5EB57.
.myOpacity80 { color: #A5EB57; opacity: 0.8; }
<p style="color:#A5EB57;opacity:0.8;">80%</p>
Text with #A5EB57 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5EB57;}
<p style="text-shadow: 3px 3px 1px #A5EB57">Text here.</p>
This text has shadow with #A5EB57 color.
.textShadow {text-shadow: 3px 3px 1px #A5EB57, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5EB57, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5EB57 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5EB57, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5EB57, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5EB57 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5EB57; -webkit-box-shadow: 1px 1px 3px 2px #A5EB57; box-shadow: 1px 1px 3px 2px #A5EB57; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5EB57; -webkit-box-shadow: 1px 1px 3px 2px #A5EB57; box-shadow:1px 1px 3px 2px #A5EB57;">
Div content here</div>
This text has color #A5EB57 on black background.
This text has color #A5EB57 on white background.
This text has black color on #A5EB57 background.
This text has white color on #A5EB57 background.