HEX: #A5D293
RGB: (165,210,147)
#A5D293 contains mainly red and green colors. Web safe color of #A5D293 is #99CC99 (or #9C9).
#A5D293 color RGB value is (165,210,147).
RGB: (165,210,147) (65%,82%,58%)
R 165 of 255 = 65%
G 210 of 255 = 82%
B 147 of 255 = 58%
R + G + B ~ 68%. #A5D293 is quite light color.
R + G + B =
165 + 210 + 147 = 522 (100%)
R 165 of 522 ~ 31.61%
G 210 of 522 ~ 40.23%
B 147 of 522 ~ 28.16%
#A5D293 color CMYK value is (21,0,30,18).
CMYK: (21,0,30,18) C21M0Y30K18 (21%,0%,30%,18%) (0.21/0.00/0.30/0.18)
A5 | D2 | 93 | |
---|---|---|---|
RGB | 165 | 210 | 147 |
HSL | 103° | 41.18% | 70.00% |
HSB/HSV | 103° | 30.00% | 82.35% |
CMYK | 21.43% | 0.00% | 30.00% |
17.65% |
HEX | A5 | D2 | 93 |
Decimal | 165 | 210 | 147 |
Binary | 10100101 | 11010010 | 10010011 |
Octal | 245 | 322 | 223 |
Examples of css and html codes for elements with #A5D293 color. Also use rgb(165,210,147) instead hex code.
.myTextColor { color: #A5D293; }
<p style="color:#A5D293">This sample text font color is #A5D293.</p>
This text font color is #A5D293.
.myBgColor { background-color: #A5D293; }
<div style="background-color:#A5D293">Inner text</div>
This div background color is #A5D293.
.myBorderColor { border: 1px solid #A5D293; }
<div style="border:3px solid #A5D293">Div</div>
This div border color is #A5D293.
.myOpacity80 { color: #A5D293; opacity: 0.8; }
<p style="color:#A5D293;opacity:0.8;">80%</p>
Text with #A5D293 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5D293;}
<p style="text-shadow: 3px 3px 1px #A5D293">Text here.</p>
This text has shadow with #A5D293 color.
.textShadow {text-shadow: 3px 3px 1px #A5D293, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5D293, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5D293 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5D293, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5D293, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5D293 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5D293; -webkit-box-shadow: 1px 1px 3px 2px #A5D293; box-shadow: 1px 1px 3px 2px #A5D293; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5D293; -webkit-box-shadow: 1px 1px 3px 2px #A5D293; box-shadow:1px 1px 3px 2px #A5D293;">
Div content here</div>
This text has color #A5D293 on black background.
This text has color #A5D293 on white background.
This text has black color on #A5D293 background.
This text has white color on #A5D293 background.