HEX: #ABC85C
RGB: (171,200,92)
#ABC85C contains mainly red and green colors. Web safe color of #ABC85C is #99CC66 (or #9C6).
#ABC85C color RGB value is (171,200,92).
RGB: (171,200,92) (67%,78%,36%)
R 171 of 255 = 67%
G 200 of 255 = 78%
B 92 of 255 = 36%
R + G + B ~ 60%. #ABC85C is middle color (not dark and not light).
R + G + B =
171 + 200 + 92 = 463 (100%)
R 171 of 463 ~ 36.93%
G 200 of 463 ~ 43.2%
B 92 of 463 ~ 19.87%
#ABC85C color CMYK value is (15,0,54,22).
CMYK: (15,0,54,22) C15M0Y54K22 (15%,0%,54%,22%) (0.15/0.00/0.54/0.22)
AB | C8 | 5C | |
---|---|---|---|
RGB | 171 | 200 | 92 |
HSL | 76° | 49.54% | 57.25% |
HSB/HSV | 76° | 54.00% | 78.43% |
CMYK | 14.50% | 0.00% | 54.00% |
21.57% |
HEX | AB | C8 | 5C |
Decimal | 171 | 200 | 92 |
Binary | 10101011 | 11001000 | 1011100 |
Octal | 253 | 310 | 134 |
Examples of css and html codes for elements with #ABC85C color. Also use rgb(171,200,92) instead hex code.
.myTextColor { color: #ABC85C; }
<p style="color:#ABC85C">This sample text font color is #ABC85C.</p>
This text font color is #ABC85C.
.myBgColor { background-color: #ABC85C; }
<div style="background-color:#ABC85C">Inner text</div>
This div background color is #ABC85C.
.myBorderColor { border: 1px solid #ABC85C; }
<div style="border:3px solid #ABC85C">Div</div>
This div border color is #ABC85C.
.myOpacity80 { color: #ABC85C; opacity: 0.8; }
<p style="color:#ABC85C;opacity:0.8;">80%</p>
Text with #ABC85C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABC85C;}
<p style="text-shadow: 3px 3px 1px #ABC85C">Text here.</p>
This text has shadow with #ABC85C color.
.textShadow {text-shadow: 3px 3px 1px #ABC85C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABC85C, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABC85C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABC85C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABC85C, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABC85C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABC85C; -webkit-box-shadow: 1px 1px 3px 2px #ABC85C; box-shadow: 1px 1px 3px 2px #ABC85C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABC85C; -webkit-box-shadow: 1px 1px 3px 2px #ABC85C; box-shadow:1px 1px 3px 2px #ABC85C;">
Div content here</div>
This text has color #ABC85C on black background.
This text has color #ABC85C on white background.
This text has black color on #ABC85C background.
This text has white color on #ABC85C background.