HEX: #ABB88A
RGB: (171,184,138)
#ABB88A contains red, green and blue colors in about the same proportion. Web safe color of #ABB88A is #99CC99 (or #9C9).
#ABB88A color RGB value is (171,184,138).
RGB: (171,184,138) (67%,72%,54%)
R 171 of 255 = 67%
G 184 of 255 = 72%
B 138 of 255 = 54%
R + G + B ~ 64%. #ABB88A is quite light color.
R + G + B =
171 + 184 + 138 = 493 (100%)
R 171 of 493 ~ 34.69%
G 184 of 493 ~ 37.32%
B 138 of 493 ~ 27.99%
#ABB88A color CMYK value is (7,0,25,28).
CMYK: (7,0,25,28) C7M0Y25K28 (7%,0%,25%,28%) (0.07/0.00/0.25/0.28)
AB | B8 | 8A | |
---|---|---|---|
RGB | 171 | 184 | 138 |
HSL | 77° | 24.47% | 63.14% |
HSB/HSV | 77° | 25.00% | 72.16% |
CMYK | 7.07% | 0.00% | 25.00% |
27.84% |
HEX | AB | B8 | 8A |
Decimal | 171 | 184 | 138 |
Binary | 10101011 | 10111000 | 10001010 |
Octal | 253 | 270 | 212 |
Examples of css and html codes for elements with #ABB88A color. Also use rgb(171,184,138) instead hex code.
.myTextColor { color: #ABB88A; }
<p style="color:#ABB88A">This sample text font color is #ABB88A.</p>
This text font color is #ABB88A.
.myBgColor { background-color: #ABB88A; }
<div style="background-color:#ABB88A">Inner text</div>
This div background color is #ABB88A.
.myBorderColor { border: 1px solid #ABB88A; }
<div style="border:3px solid #ABB88A">Div</div>
This div border color is #ABB88A.
.myOpacity80 { color: #ABB88A; opacity: 0.8; }
<p style="color:#ABB88A;opacity:0.8;">80%</p>
Text with #ABB88A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABB88A;}
<p style="text-shadow: 3px 3px 1px #ABB88A">Text here.</p>
This text has shadow with #ABB88A color.
.textShadow {text-shadow: 3px 3px 1px #ABB88A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABB88A, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABB88A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABB88A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABB88A, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABB88A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABB88A; -webkit-box-shadow: 1px 1px 3px 2px #ABB88A; box-shadow: 1px 1px 3px 2px #ABB88A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABB88A; -webkit-box-shadow: 1px 1px 3px 2px #ABB88A; box-shadow:1px 1px 3px 2px #ABB88A;">
Div content here</div>
This text has color #ABB88A on black background.
This text has color #ABB88A on white background.
This text has black color on #ABB88A background.
This text has white color on #ABB88A background.