HEX: #ABC741
RGB: (171,199,65)
#ABC741 contains mainly red and green colors. Web safe color of #ABC741 is #99CC33 (or #9C3).
#ABC741 color RGB value is (171,199,65).
RGB: (171,199,65) (67%,78%,25%)
R 171 of 255 = 67%
G 199 of 255 = 78%
B 65 of 255 = 25%
R + G + B ~ 57%. #ABC741 is middle color (not dark and not light).
R + G + B =
171 + 199 + 65 = 435 (100%)
R 171 of 435 ~ 39.31%
G 199 of 435 ~ 45.75%
B 65 of 435 ~ 14.94%
#ABC741 color CMYK value is (14,0,67,22).
CMYK: (14,0,67,22) C14M0Y67K22 (14%,0%,67%,22%) (0.14/0.00/0.67/0.22)
AB | C7 | 41 | |
---|---|---|---|
RGB | 171 | 199 | 65 |
HSL | 73° | 54.47% | 51.76% |
HSB/HSV | 73° | 67.34% | 78.04% |
CMYK | 14.07% | 0.00% | 67.34% |
21.96% |
HEX | AB | C7 | 41 |
Decimal | 171 | 199 | 65 |
Binary | 10101011 | 11000111 | 1000001 |
Octal | 253 | 307 | 101 |
Examples of css and html codes for elements with #ABC741 color. Also use rgb(171,199,65) instead hex code.
.myTextColor { color: #ABC741; }
<p style="color:#ABC741">This sample text font color is #ABC741.</p>
This text font color is #ABC741.
.myBgColor { background-color: #ABC741; }
<div style="background-color:#ABC741">Inner text</div>
This div background color is #ABC741.
.myBorderColor { border: 1px solid #ABC741; }
<div style="border:3px solid #ABC741">Div</div>
This div border color is #ABC741.
.myOpacity80 { color: #ABC741; opacity: 0.8; }
<p style="color:#ABC741;opacity:0.8;">80%</p>
Text with #ABC741 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABC741;}
<p style="text-shadow: 3px 3px 1px #ABC741">Text here.</p>
This text has shadow with #ABC741 color.
.textShadow {text-shadow: 3px 3px 1px #ABC741, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABC741, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABC741 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABC741, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABC741, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABC741 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABC741; -webkit-box-shadow: 1px 1px 3px 2px #ABC741; box-shadow: 1px 1px 3px 2px #ABC741; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABC741; -webkit-box-shadow: 1px 1px 3px 2px #ABC741; box-shadow:1px 1px 3px 2px #ABC741;">
Div content here</div>
This text has color #ABC741 on black background.
This text has color #ABC741 on white background.
This text has black color on #ABC741 background.
This text has white color on #ABC741 background.