HEX: #ABE291
RGB: (171,226,145)
#ABE291 contains mainly red and green colors. Web safe color of #ABE291 is #99CC99 (or #9C9).
#ABE291 color RGB value is (171,226,145).
RGB: (171,226,145) (67%,89%,57%)
R 171 of 255 = 67%
G 226 of 255 = 89%
B 145 of 255 = 57%
R + G + B ~ 71%. #ABE291 is quite light color.
R + G + B =
171 + 226 + 145 = 542 (100%)
R 171 of 542 ~ 31.55%
G 226 of 542 ~ 41.7%
B 145 of 542 ~ 26.75%
#ABE291 color CMYK value is (24,0,36,11).
CMYK: (24,0,36,11) C24M0Y36K11 (24%,0%,36%,11%) (0.24/0.00/0.36/0.11)
AB | E2 | 91 | |
---|---|---|---|
RGB | 171 | 226 | 145 |
HSL | 101° | 58.27% | 72.75% |
HSB/HSV | 101° | 35.84% | 88.63% |
CMYK | 24.34% | 0.00% | 35.84% |
11.37% |
HEX | AB | E2 | 91 |
Decimal | 171 | 226 | 145 |
Binary | 10101011 | 11100010 | 10010001 |
Octal | 253 | 342 | 221 |
Examples of css and html codes for elements with #ABE291 color. Also use rgb(171,226,145) instead hex code.
.myTextColor { color: #ABE291; }
<p style="color:#ABE291">This sample text font color is #ABE291.</p>
This text font color is #ABE291.
.myBgColor { background-color: #ABE291; }
<div style="background-color:#ABE291">Inner text</div>
This div background color is #ABE291.
.myBorderColor { border: 1px solid #ABE291; }
<div style="border:3px solid #ABE291">Div</div>
This div border color is #ABE291.
.myOpacity80 { color: #ABE291; opacity: 0.8; }
<p style="color:#ABE291;opacity:0.8;">80%</p>
Text with #ABE291 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABE291;}
<p style="text-shadow: 3px 3px 1px #ABE291">Text here.</p>
This text has shadow with #ABE291 color.
.textShadow {text-shadow: 3px 3px 1px #ABE291, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABE291, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABE291 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABE291, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABE291, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABE291 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABE291; -webkit-box-shadow: 1px 1px 3px 2px #ABE291; box-shadow: 1px 1px 3px 2px #ABE291; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABE291; -webkit-box-shadow: 1px 1px 3px 2px #ABE291; box-shadow:1px 1px 3px 2px #ABE291;">
Div content here</div>
This text has color #ABE291 on black background.
This text has color #ABE291 on white background.
This text has black color on #ABE291 background.
This text has white color on #ABE291 background.