HEX: #ABEA31
RGB: (171,234,49)
#ABEA31 contains mainly green color. Web safe color of #ABEA31 is #99FF33 (or #9F3).
#ABEA31 color RGB value is (171,234,49).
RGB: (171,234,49) (67%,92%,19%)
R 171 of 255 = 67%
G 234 of 255 = 92%
B 49 of 255 = 19%
R + G + B ~ 59%. #ABEA31 is middle color (not dark and not light).
R + G + B =
171 + 234 + 49 = 454 (100%)
R 171 of 454 ~ 37.67%
G 234 of 454 ~ 51.54%
B 49 of 454 ~ 10.79%
#ABEA31 color CMYK value is (27,0,79,8).
CMYK: (27,0,79,8) C27M0Y79K8 (27%,0%,79%,8%) (0.27/0.00/0.79/0.08)
AB | EA | 31 | |
---|---|---|---|
RGB | 171 | 234 | 49 |
HSL | 80° | 81.50% | 55.49% |
HSB/HSV | 80° | 79.06% | 91.76% |
CMYK | 26.92% | 0.00% | 79.06% |
8.24% |
HEX | AB | EA | 31 |
Decimal | 171 | 234 | 49 |
Binary | 10101011 | 11101010 | 110001 |
Octal | 253 | 352 | 61 |
Examples of css and html codes for elements with #ABEA31 color. Also use rgb(171,234,49) instead hex code.
.myTextColor { color: #ABEA31; }
<p style="color:#ABEA31">This sample text font color is #ABEA31.</p>
This text font color is #ABEA31.
.myBgColor { background-color: #ABEA31; }
<div style="background-color:#ABEA31">Inner text</div>
This div background color is #ABEA31.
.myBorderColor { border: 1px solid #ABEA31; }
<div style="border:3px solid #ABEA31">Div</div>
This div border color is #ABEA31.
.myOpacity80 { color: #ABEA31; opacity: 0.8; }
<p style="color:#ABEA31;opacity:0.8;">80%</p>
Text with #ABEA31 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABEA31;}
<p style="text-shadow: 3px 3px 1px #ABEA31">Text here.</p>
This text has shadow with #ABEA31 color.
.textShadow {text-shadow: 3px 3px 1px #ABEA31, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABEA31, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABEA31 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABEA31, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABEA31, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABEA31 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABEA31; -webkit-box-shadow: 1px 1px 3px 2px #ABEA31; box-shadow: 1px 1px 3px 2px #ABEA31; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABEA31; -webkit-box-shadow: 1px 1px 3px 2px #ABEA31; box-shadow:1px 1px 3px 2px #ABEA31;">
Div content here</div>
This text has color #ABEA31 on black background.
This text has color #ABEA31 on white background.
This text has black color on #ABEA31 background.
This text has white color on #ABEA31 background.