HEX: #ABD480
RGB: (171,212,128)
#ABD480 contains mainly red and green colors. Web safe color of #ABD480 is #99CC66 (or #9C6).
#ABD480 color RGB value is (171,212,128).
RGB: (171,212,128) (67%,83%,50%)
R 171 of 255 = 67%
G 212 of 255 = 83%
B 128 of 255 = 50%
R + G + B ~ 67%. #ABD480 is quite light color.
R + G + B =
171 + 212 + 128 = 511 (100%)
R 171 of 511 ~ 33.46%
G 212 of 511 ~ 41.49%
B 128 of 511 ~ 25.05%
#ABD480 color CMYK value is (19,0,40,17).
CMYK: (19,0,40,17) C19M0Y40K17 (19%,0%,40%,17%) (0.19/0.00/0.40/0.17)
AB | D4 | 80 | |
---|---|---|---|
RGB | 171 | 212 | 128 |
HSL | 89° | 49.41% | 66.67% |
HSB/HSV | 89° | 39.62% | 83.14% |
CMYK | 19.34% | 0.00% | 39.62% |
16.86% |
HEX | AB | D4 | 80 |
Decimal | 171 | 212 | 128 |
Binary | 10101011 | 11010100 | 10000000 |
Octal | 253 | 324 | 200 |
Examples of css and html codes for elements with #ABD480 color. Also use rgb(171,212,128) instead hex code.
.myTextColor { color: #ABD480; }
<p style="color:#ABD480">This sample text font color is #ABD480.</p>
This text font color is #ABD480.
.myBgColor { background-color: #ABD480; }
<div style="background-color:#ABD480">Inner text</div>
This div background color is #ABD480.
.myBorderColor { border: 1px solid #ABD480; }
<div style="border:3px solid #ABD480">Div</div>
This div border color is #ABD480.
.myOpacity80 { color: #ABD480; opacity: 0.8; }
<p style="color:#ABD480;opacity:0.8;">80%</p>
Text with #ABD480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABD480;}
<p style="text-shadow: 3px 3px 1px #ABD480">Text here.</p>
This text has shadow with #ABD480 color.
.textShadow {text-shadow: 3px 3px 1px #ABD480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABD480, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABD480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABD480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABD480, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABD480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABD480; -webkit-box-shadow: 1px 1px 3px 2px #ABD480; box-shadow: 1px 1px 3px 2px #ABD480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABD480; -webkit-box-shadow: 1px 1px 3px 2px #ABD480; box-shadow:1px 1px 3px 2px #ABD480;">
Div content here</div>
This text has color #ABD480 on black background.
This text has color #ABD480 on white background.
This text has black color on #ABD480 background.
This text has white color on #ABD480 background.