HEX: #A4D15D
RGB: (164,209,93)
#A4D15D contains mainly red and green colors. Web safe color of #A4D15D is #99CC66 (or #9C6).
#A4D15D color RGB value is (164,209,93).
RGB: (164,209,93) (64%,82%,36%)
R 164 of 255 = 64%
G 209 of 255 = 82%
B 93 of 255 = 36%
R + G + B ~ 61%. #A4D15D is quite light color.
R + G + B =
164 + 209 + 93 = 466 (100%)
R 164 of 466 ~ 35.19%
G 209 of 466 ~ 44.85%
B 93 of 466 ~ 19.96%
#A4D15D color CMYK value is (22,0,56,18).
CMYK: (22,0,56,18) C22M0Y56K18 (22%,0%,56%,18%) (0.22/0.00/0.56/0.18)
A4 | D1 | 5D | |
---|---|---|---|
RGB | 164 | 209 | 93 |
HSL | 83° | 55.77% | 59.22% |
HSB/HSV | 83° | 55.50% | 81.96% |
CMYK | 21.53% | 0.00% | 55.50% |
18.04% |
HEX | A4 | D1 | 5D |
Decimal | 164 | 209 | 93 |
Binary | 10100100 | 11010001 | 1011101 |
Octal | 244 | 321 | 135 |
Examples of css and html codes for elements with #A4D15D color. Also use rgb(164,209,93) instead hex code.
.myTextColor { color: #A4D15D; }
<p style="color:#A4D15D">This sample text font color is #A4D15D.</p>
This text font color is #A4D15D.
.myBgColor { background-color: #A4D15D; }
<div style="background-color:#A4D15D">Inner text</div>
This div background color is #A4D15D.
.myBorderColor { border: 1px solid #A4D15D; }
<div style="border:3px solid #A4D15D">Div</div>
This div border color is #A4D15D.
.myOpacity80 { color: #A4D15D; opacity: 0.8; }
<p style="color:#A4D15D;opacity:0.8;">80%</p>
Text with #A4D15D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4D15D;}
<p style="text-shadow: 3px 3px 1px #A4D15D">Text here.</p>
This text has shadow with #A4D15D color.
.textShadow {text-shadow: 3px 3px 1px #A4D15D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4D15D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4D15D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4D15D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4D15D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4D15D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4D15D; -webkit-box-shadow: 1px 1px 3px 2px #A4D15D; box-shadow: 1px 1px 3px 2px #A4D15D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4D15D; -webkit-box-shadow: 1px 1px 3px 2px #A4D15D; box-shadow:1px 1px 3px 2px #A4D15D;">
Div content here</div>
This text has color #A4D15D on black background.
This text has color #A4D15D on white background.
This text has black color on #A4D15D background.
This text has white color on #A4D15D background.