HEX: #A5D56F
RGB: (165,213,111)
#A5D56F contains mainly red and green colors. Web safe color of #A5D56F is #99CC66 (or #9C6).
#A5D56F color RGB value is (165,213,111).
RGB: (165,213,111) (65%,84%,44%)
R 165 of 255 = 65%
G 213 of 255 = 84%
B 111 of 255 = 44%
R + G + B ~ 64%. #A5D56F is quite light color.
R + G + B =
165 + 213 + 111 = 489 (100%)
R 165 of 489 ~ 33.74%
G 213 of 489 ~ 43.56%
B 111 of 489 ~ 22.7%
#A5D56F color CMYK value is (23,0,48,16).
CMYK: (23,0,48,16) C23M0Y48K16 (23%,0%,48%,16%) (0.23/0.00/0.48/0.16)
A5 | D5 | 6F | |
---|---|---|---|
RGB | 165 | 213 | 111 |
HSL | 88° | 54.84% | 63.53% |
HSB/HSV | 88° | 47.89% | 83.53% |
CMYK | 22.54% | 0.00% | 47.89% |
16.47% |
HEX | A5 | D5 | 6F |
Decimal | 165 | 213 | 111 |
Binary | 10100101 | 11010101 | 1101111 |
Octal | 245 | 325 | 157 |
Examples of css and html codes for elements with #A5D56F color. Also use rgb(165,213,111) instead hex code.
.myTextColor { color: #A5D56F; }
<p style="color:#A5D56F">This sample text font color is #A5D56F.</p>
This text font color is #A5D56F.
.myBgColor { background-color: #A5D56F; }
<div style="background-color:#A5D56F">Inner text</div>
This div background color is #A5D56F.
.myBorderColor { border: 1px solid #A5D56F; }
<div style="border:3px solid #A5D56F">Div</div>
This div border color is #A5D56F.
.myOpacity80 { color: #A5D56F; opacity: 0.8; }
<p style="color:#A5D56F;opacity:0.8;">80%</p>
Text with #A5D56F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D56F;}
<p style="text-shadow: 3px 3px 1px #A5D56F">Text here.</p>
This text has shadow with #A5D56F color.
.textShadow {text-shadow: 3px 3px 1px #A5D56F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D56F, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D56F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D56F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D56F, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D56F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D56F; -webkit-box-shadow: 1px 1px 3px 2px #A5D56F; box-shadow: 1px 1px 3px 2px #A5D56F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D56F; -webkit-box-shadow: 1px 1px 3px 2px #A5D56F; box-shadow:1px 1px 3px 2px #A5D56F;">
Div content here</div>
This text has color #A5D56F on black background.
This text has color #A5D56F on white background.
This text has black color on #A5D56F background.
This text has white color on #A5D56F background.