HEX: #ABB57F
RGB: (171,181,127)
#ABB57F contains red, green and blue colors in about the same proportion. Web safe color of #ABB57F is #99CC66 (or #9C6).
#ABB57F color RGB value is (171,181,127).
RGB: (171,181,127) (67%,71%,50%)
R 171 of 255 = 67%
G 181 of 255 = 71%
B 127 of 255 = 50%
R + G + B ~ 63%. #ABB57F is quite light color.
R + G + B =
171 + 181 + 127 = 479 (100%)
R 171 of 479 ~ 35.7%
G 181 of 479 ~ 37.79%
B 127 of 479 ~ 26.51%
#ABB57F color CMYK value is (6,0,30,29).
CMYK: (6,0,30,29) C6M0Y30K29 (6%,0%,30%,29%) (0.06/0.00/0.30/0.29)
AB | B5 | 7F | |
---|---|---|---|
RGB | 171 | 181 | 127 |
HSL | 71° | 26.73% | 60.39% |
HSB/HSV | 71° | 29.83% | 70.98% |
CMYK | 5.52% | 0.00% | 29.83% |
29.02% |
HEX | AB | B5 | 7F |
Decimal | 171 | 181 | 127 |
Binary | 10101011 | 10110101 | 1111111 |
Octal | 253 | 265 | 177 |
Examples of css and html codes for elements with #ABB57F color. Also use rgb(171,181,127) instead hex code.
.myTextColor { color: #ABB57F; }
<p style="color:#ABB57F">This sample text font color is #ABB57F.</p>
This text font color is #ABB57F.
.myBgColor { background-color: #ABB57F; }
<div style="background-color:#ABB57F">Inner text</div>
This div background color is #ABB57F.
.myBorderColor { border: 1px solid #ABB57F; }
<div style="border:3px solid #ABB57F">Div</div>
This div border color is #ABB57F.
.myOpacity80 { color: #ABB57F; opacity: 0.8; }
<p style="color:#ABB57F;opacity:0.8;">80%</p>
Text with #ABB57F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABB57F;}
<p style="text-shadow: 3px 3px 1px #ABB57F">Text here.</p>
This text has shadow with #ABB57F color.
.textShadow {text-shadow: 3px 3px 1px #ABB57F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABB57F, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABB57F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABB57F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABB57F, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABB57F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABB57F; -webkit-box-shadow: 1px 1px 3px 2px #ABB57F; box-shadow: 1px 1px 3px 2px #ABB57F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABB57F; -webkit-box-shadow: 1px 1px 3px 2px #ABB57F; box-shadow:1px 1px 3px 2px #ABB57F;">
Div content here</div>
This text has color #ABB57F on black background.
This text has color #ABB57F on white background.
This text has black color on #ABB57F background.
This text has white color on #ABB57F background.