HEX: #ABDEB3
RGB: (171,222,179)
#ABDEB3 contains red, green and blue colors in about the same proportion. Web safe color of #ABDEB3 is #99CC99 (or #9C9).
#ABDEB3 color RGB value is (171,222,179).
RGB: (171,222,179) (67%,87%,70%)
R 171 of 255 = 67%
G 222 of 255 = 87%
B 179 of 255 = 70%
R + G + B ~ 75%. #ABDEB3 is quite light color.
R + G + B =
171 + 222 + 179 = 572 (100%)
R 171 of 572 ~ 29.9%
G 222 of 572 ~ 38.81%
B 179 of 572 ~ 31.29%
#ABDEB3 color CMYK value is (23,0,19,13).
CMYK: (23,0,19,13) C23M0Y19K13 (23%,0%,19%,13%) (0.23/0.00/0.19/0.13)
AB | DE | B3 | |
---|---|---|---|
RGB | 171 | 222 | 179 |
HSL | 129° | 43.59% | 77.06% |
HSB/HSV | 129° | 22.97% | 87.06% |
CMYK | 22.97% | 0.00% | 19.37% |
12.94% |
HEX | AB | DE | B3 |
Decimal | 171 | 222 | 179 |
Binary | 10101011 | 11011110 | 10110011 |
Octal | 253 | 336 | 263 |
Examples of css and html codes for elements with #ABDEB3 color. Also use rgb(171,222,179) instead hex code.
.myTextColor { color: #ABDEB3; }
<p style="color:#ABDEB3">This sample text font color is #ABDEB3.</p>
This text font color is #ABDEB3.
.myBgColor { background-color: #ABDEB3; }
<div style="background-color:#ABDEB3">Inner text</div>
This div background color is #ABDEB3.
.myBorderColor { border: 1px solid #ABDEB3; }
<div style="border:3px solid #ABDEB3">Div</div>
This div border color is #ABDEB3.
.myOpacity80 { color: #ABDEB3; opacity: 0.8; }
<p style="color:#ABDEB3;opacity:0.8;">80%</p>
Text with #ABDEB3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABDEB3;}
<p style="text-shadow: 3px 3px 1px #ABDEB3">Text here.</p>
This text has shadow with #ABDEB3 color.
.textShadow {text-shadow: 3px 3px 1px #ABDEB3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABDEB3, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABDEB3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABDEB3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABDEB3, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABDEB3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABDEB3; -webkit-box-shadow: 1px 1px 3px 2px #ABDEB3; box-shadow: 1px 1px 3px 2px #ABDEB3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABDEB3; -webkit-box-shadow: 1px 1px 3px 2px #ABDEB3; box-shadow:1px 1px 3px 2px #ABDEB3;">
Div content here</div>
This text has color #ABDEB3 on black background.
This text has color #ABDEB3 on white background.
This text has black color on #ABDEB3 background.
This text has white color on #ABDEB3 background.