HEX: #A5D86B
RGB: (165,216,107)
#A5D86B contains mainly red and green colors. Web safe color of #A5D86B is #99CC66 (or #9C6).
#A5D86B color RGB value is (165,216,107).
RGB: (165,216,107) (65%,85%,42%)
R 165 of 255 = 65%
G 216 of 255 = 85%
B 107 of 255 = 42%
R + G + B ~ 64%. #A5D86B is quite light color.
R + G + B =
165 + 216 + 107 = 488 (100%)
R 165 of 488 ~ 33.81%
G 216 of 488 ~ 44.26%
B 107 of 488 ~ 21.93%
#A5D86B color CMYK value is (24,0,50,15).
CMYK: (24,0,50,15) C24M0Y50K15 (24%,0%,50%,15%) (0.24/0.00/0.50/0.15)
A5 | D8 | 6B | |
---|---|---|---|
RGB | 165 | 216 | 107 |
HSL | 88° | 58.29% | 63.33% |
HSB/HSV | 88° | 50.46% | 84.71% |
CMYK | 23.61% | 0.00% | 50.46% |
15.29% |
HEX | A5 | D8 | 6B |
Decimal | 165 | 216 | 107 |
Binary | 10100101 | 11011000 | 1101011 |
Octal | 245 | 330 | 153 |
Examples of css and html codes for elements with #A5D86B color. Also use rgb(165,216,107) instead hex code.
.myTextColor { color: #A5D86B; }
<p style="color:#A5D86B">This sample text font color is #A5D86B.</p>
This text font color is #A5D86B.
.myBgColor { background-color: #A5D86B; }
<div style="background-color:#A5D86B">Inner text</div>
This div background color is #A5D86B.
.myBorderColor { border: 1px solid #A5D86B; }
<div style="border:3px solid #A5D86B">Div</div>
This div border color is #A5D86B.
.myOpacity80 { color: #A5D86B; opacity: 0.8; }
<p style="color:#A5D86B;opacity:0.8;">80%</p>
Text with #A5D86B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D86B;}
<p style="text-shadow: 3px 3px 1px #A5D86B">Text here.</p>
This text has shadow with #A5D86B color.
.textShadow {text-shadow: 3px 3px 1px #A5D86B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D86B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D86B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D86B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D86B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D86B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D86B; -webkit-box-shadow: 1px 1px 3px 2px #A5D86B; box-shadow: 1px 1px 3px 2px #A5D86B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D86B; -webkit-box-shadow: 1px 1px 3px 2px #A5D86B; box-shadow:1px 1px 3px 2px #A5D86B;">
Div content here</div>
This text has color #A5D86B on black background.
This text has color #A5D86B on white background.
This text has black color on #A5D86B background.
This text has white color on #A5D86B background.