HEX: #ABE9BD
RGB: (171,233,189)
#ABE9BD contains mainly green and blue colors. Web safe color of #ABE9BD is #99FFCC (or #9FC).
#ABE9BD color RGB value is (171,233,189).
RGB: (171,233,189) (67%,91%,74%)
R 171 of 255 = 67%
G 233 of 255 = 91%
B 189 of 255 = 74%
R + G + B ~ 77%. #ABE9BD is quite light color.
R + G + B =
171 + 233 + 189 = 593 (100%)
R 171 of 593 ~ 28.84%
G 233 of 593 ~ 39.29%
B 189 of 593 ~ 31.87%
#ABE9BD color CMYK value is (27,0,19,9).
CMYK: (27,0,19,9) C27M0Y19K9 (27%,0%,19%,9%) (0.27/0.00/0.19/0.09)
AB | E9 | BD | |
---|---|---|---|
RGB | 171 | 233 | 189 |
HSL | 137° | 58.49% | 79.22% |
HSB/HSV | 137° | 26.61% | 91.37% |
CMYK | 26.61% | 0.00% | 18.88% |
8.63% |
HEX | AB | E9 | BD |
Decimal | 171 | 233 | 189 |
Binary | 10101011 | 11101001 | 10111101 |
Octal | 253 | 351 | 275 |
Examples of css and html codes for elements with #ABE9BD color. Also use rgb(171,233,189) instead hex code.
.myTextColor { color: #ABE9BD; }
<p style="color:#ABE9BD">This sample text font color is #ABE9BD.</p>
This text font color is #ABE9BD.
.myBgColor { background-color: #ABE9BD; }
<div style="background-color:#ABE9BD">Inner text</div>
This div background color is #ABE9BD.
.myBorderColor { border: 1px solid #ABE9BD; }
<div style="border:3px solid #ABE9BD">Div</div>
This div border color is #ABE9BD.
.myOpacity80 { color: #ABE9BD; opacity: 0.8; }
<p style="color:#ABE9BD;opacity:0.8;">80%</p>
Text with #ABE9BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABE9BD;}
<p style="text-shadow: 3px 3px 1px #ABE9BD">Text here.</p>
This text has shadow with #ABE9BD color.
.textShadow {text-shadow: 3px 3px 1px #ABE9BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABE9BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABE9BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABE9BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABE9BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABE9BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABE9BD; -webkit-box-shadow: 1px 1px 3px 2px #ABE9BD; box-shadow: 1px 1px 3px 2px #ABE9BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABE9BD; -webkit-box-shadow: 1px 1px 3px 2px #ABE9BD; box-shadow:1px 1px 3px 2px #ABE9BD;">
Div content here</div>
This text has color #ABE9BD on black background.
This text has color #ABE9BD on white background.
This text has black color on #ABE9BD background.
This text has white color on #ABE9BD background.