HEX: #A5D387
RGB: (165,211,135)
#A5D387 contains mainly red and green colors. Web safe color of #A5D387 is #99CC99 (or #9C9).
#A5D387 color RGB value is (165,211,135).
RGB: (165,211,135) (65%,83%,53%)
R 165 of 255 = 65%
G 211 of 255 = 83%
B 135 of 255 = 53%
R + G + B ~ 67%. #A5D387 is quite light color.
R + G + B =
165 + 211 + 135 = 511 (100%)
R 165 of 511 ~ 32.29%
G 211 of 511 ~ 41.29%
B 135 of 511 ~ 26.42%
#A5D387 color CMYK value is (22,0,36,17).
CMYK: (22,0,36,17) C22M0Y36K17 (22%,0%,36%,17%) (0.22/0.00/0.36/0.17)
A5 | D3 | 87 | |
---|---|---|---|
RGB | 165 | 211 | 135 |
HSL | 96° | 46.34% | 67.84% |
HSB/HSV | 96° | 36.02% | 82.75% |
CMYK | 21.80% | 0.00% | 36.02% |
17.25% |
HEX | A5 | D3 | 87 |
Decimal | 165 | 211 | 135 |
Binary | 10100101 | 11010011 | 10000111 |
Octal | 245 | 323 | 207 |
Examples of css and html codes for elements with #A5D387 color. Also use rgb(165,211,135) instead hex code.
.myTextColor { color: #A5D387; }
<p style="color:#A5D387">This sample text font color is #A5D387.</p>
This text font color is #A5D387.
.myBgColor { background-color: #A5D387; }
<div style="background-color:#A5D387">Inner text</div>
This div background color is #A5D387.
.myBorderColor { border: 1px solid #A5D387; }
<div style="border:3px solid #A5D387">Div</div>
This div border color is #A5D387.
.myOpacity80 { color: #A5D387; opacity: 0.8; }
<p style="color:#A5D387;opacity:0.8;">80%</p>
Text with #A5D387 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D387;}
<p style="text-shadow: 3px 3px 1px #A5D387">Text here.</p>
This text has shadow with #A5D387 color.
.textShadow {text-shadow: 3px 3px 1px #A5D387, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D387, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D387 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D387, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D387, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D387 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D387; -webkit-box-shadow: 1px 1px 3px 2px #A5D387; box-shadow: 1px 1px 3px 2px #A5D387; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D387; -webkit-box-shadow: 1px 1px 3px 2px #A5D387; box-shadow:1px 1px 3px 2px #A5D387;">
Div content here</div>
This text has color #A5D387 on black background.
This text has color #A5D387 on white background.
This text has black color on #A5D387 background.
This text has white color on #A5D387 background.