HEX: #A5DD7C
RGB: (165,221,124)
#A5DD7C contains mainly red and green colors. Web safe color of #A5DD7C is #99CC66 (or #9C6).
#A5DD7C color RGB value is (165,221,124).
RGB: (165,221,124) (65%,87%,49%)
R 165 of 255 = 65%
G 221 of 255 = 87%
B 124 of 255 = 49%
R + G + B ~ 67%. #A5DD7C is quite light color.
R + G + B =
165 + 221 + 124 = 510 (100%)
R 165 of 510 ~ 32.35%
G 221 of 510 ~ 43.33%
B 124 of 510 ~ 24.31%
#A5DD7C color CMYK value is (25,0,44,13).
CMYK: (25,0,44,13) C25M0Y44K13 (25%,0%,44%,13%) (0.25/0.00/0.44/0.13)
A5 | DD | 7C | |
---|---|---|---|
RGB | 165 | 221 | 124 |
HSL | 95° | 58.79% | 67.65% |
HSB/HSV | 95° | 43.89% | 86.67% |
CMYK | 25.34% | 0.00% | 43.89% |
13.33% |
HEX | A5 | DD | 7C |
Decimal | 165 | 221 | 124 |
Binary | 10100101 | 11011101 | 1111100 |
Octal | 245 | 335 | 174 |
Examples of css and html codes for elements with #A5DD7C color. Also use rgb(165,221,124) instead hex code.
.myTextColor { color: #A5DD7C; }
<p style="color:#A5DD7C">This sample text font color is #A5DD7C.</p>
This text font color is #A5DD7C.
.myBgColor { background-color: #A5DD7C; }
<div style="background-color:#A5DD7C">Inner text</div>
This div background color is #A5DD7C.
.myBorderColor { border: 1px solid #A5DD7C; }
<div style="border:3px solid #A5DD7C">Div</div>
This div border color is #A5DD7C.
.myOpacity80 { color: #A5DD7C; opacity: 0.8; }
<p style="color:#A5DD7C;opacity:0.8;">80%</p>
Text with #A5DD7C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5DD7C;}
<p style="text-shadow: 3px 3px 1px #A5DD7C">Text here.</p>
This text has shadow with #A5DD7C color.
.textShadow {text-shadow: 3px 3px 1px #A5DD7C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5DD7C, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5DD7C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5DD7C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5DD7C, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5DD7C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5DD7C; -webkit-box-shadow: 1px 1px 3px 2px #A5DD7C; box-shadow: 1px 1px 3px 2px #A5DD7C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5DD7C; -webkit-box-shadow: 1px 1px 3px 2px #A5DD7C; box-shadow:1px 1px 3px 2px #A5DD7C;">
Div content here</div>
This text has color #A5DD7C on black background.
This text has color #A5DD7C on white background.
This text has black color on #A5DD7C background.
This text has white color on #A5DD7C background.