HEX: #A5DBAA
RGB: (165,219,170)
#A5DBAA contains red, green and blue colors in about the same proportion. Web safe color of #A5DBAA is #99CC99 (or #9C9).
#A5DBAA color RGB value is (165,219,170).
RGB: (165,219,170) (65%,86%,67%)
R 165 of 255 = 65%
G 219 of 255 = 86%
B 170 of 255 = 67%
R + G + B ~ 73%. #A5DBAA is quite light color.
R + G + B =
165 + 219 + 170 = 554 (100%)
R 165 of 554 ~ 29.78%
G 219 of 554 ~ 39.53%
B 170 of 554 ~ 30.69%
#A5DBAA color CMYK value is (25,0,22,14).
CMYK: (25,0,22,14) C25M0Y22K14 (25%,0%,22%,14%) (0.25/0.00/0.22/0.14)
A5 | DB | AA | |
---|---|---|---|
RGB | 165 | 219 | 170 |
HSL | 126° | 42.86% | 75.29% |
HSB/HSV | 126° | 24.66% | 85.88% |
CMYK | 24.66% | 0.00% | 22.37% |
14.12% |
HEX | A5 | DB | AA |
Decimal | 165 | 219 | 170 |
Binary | 10100101 | 11011011 | 10101010 |
Octal | 245 | 333 | 252 |
Examples of css and html codes for elements with #A5DBAA color. Also use rgb(165,219,170) instead hex code.
.myTextColor { color: #A5DBAA; }
<p style="color:#A5DBAA">This sample text font color is #A5DBAA.</p>
This text font color is #A5DBAA.
.myBgColor { background-color: #A5DBAA; }
<div style="background-color:#A5DBAA">Inner text</div>
This div background color is #A5DBAA.
.myBorderColor { border: 1px solid #A5DBAA; }
<div style="border:3px solid #A5DBAA">Div</div>
This div border color is #A5DBAA.
.myOpacity80 { color: #A5DBAA; opacity: 0.8; }
<p style="color:#A5DBAA;opacity:0.8;">80%</p>
Text with #A5DBAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5DBAA;}
<p style="text-shadow: 3px 3px 1px #A5DBAA">Text here.</p>
This text has shadow with #A5DBAA color.
.textShadow {text-shadow: 3px 3px 1px #A5DBAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5DBAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5DBAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5DBAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5DBAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5DBAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5DBAA; -webkit-box-shadow: 1px 1px 3px 2px #A5DBAA; box-shadow: 1px 1px 3px 2px #A5DBAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5DBAA; -webkit-box-shadow: 1px 1px 3px 2px #A5DBAA; box-shadow:1px 1px 3px 2px #A5DBAA;">
Div content here</div>
This text has color #A5DBAA on black background.
This text has color #A5DBAA on white background.
This text has black color on #A5DBAA background.
This text has white color on #A5DBAA background.