HEX: #A0D376
RGB: (160,211,118)
#A0D376 contains mainly red and green colors. Web safe color of #A0D376 is #99CC66 (or #9C6).
#A0D376 color RGB value is (160,211,118).
RGB: (160,211,118) (63%,83%,46%)
R 160 of 255 = 63%
G 211 of 255 = 83%
B 118 of 255 = 46%
R + G + B ~ 64%. #A0D376 is quite light color.
R + G + B =
160 + 211 + 118 = 489 (100%)
R 160 of 489 ~ 32.72%
G 211 of 489 ~ 43.15%
B 118 of 489 ~ 24.13%
#A0D376 color CMYK value is (24,0,44,17).
CMYK: (24,0,44,17) C24M0Y44K17 (24%,0%,44%,17%) (0.24/0.00/0.44/0.17)
A0 | D3 | 76 | |
---|---|---|---|
RGB | 160 | 211 | 118 |
HSL | 93° | 51.38% | 64.51% |
HSB/HSV | 93° | 44.08% | 82.75% |
CMYK | 24.17% | 0.00% | 44.08% |
17.25% |
HEX | A0 | D3 | 76 |
Decimal | 160 | 211 | 118 |
Binary | 10100000 | 11010011 | 1110110 |
Octal | 240 | 323 | 166 |
Examples of css and html codes for elements with #A0D376 color. Also use rgb(160,211,118) instead hex code.
.myTextColor { color: #A0D376; }
<p style="color:#A0D376">This sample text font color is #A0D376.</p>
This text font color is #A0D376.
.myBgColor { background-color: #A0D376; }
<div style="background-color:#A0D376">Inner text</div>
This div background color is #A0D376.
.myBorderColor { border: 1px solid #A0D376; }
<div style="border:3px solid #A0D376">Div</div>
This div border color is #A0D376.
.myOpacity80 { color: #A0D376; opacity: 0.8; }
<p style="color:#A0D376;opacity:0.8;">80%</p>
Text with #A0D376 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A0D376;}
<p style="text-shadow: 3px 3px 1px #A0D376">Text here.</p>
This text has shadow with #A0D376 color.
.textShadow {text-shadow: 3px 3px 1px #A0D376, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A0D376, 5px 5px 20px red">Text here.</p>
This text has shadow with #A0D376 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A0D376, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A0D376, Direction=45, Strength=4)">Text</p>
This text has shadow with #A0D376 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A0D376; -webkit-box-shadow: 1px 1px 3px 2px #A0D376; box-shadow: 1px 1px 3px 2px #A0D376; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A0D376; -webkit-box-shadow: 1px 1px 3px 2px #A0D376; box-shadow:1px 1px 3px 2px #A0D376;">
Div content here</div>
This text has color #A0D376 on black background.
This text has color #A0D376 on white background.
This text has black color on #A0D376 background.
This text has white color on #A0D376 background.