HEX: #AB761C
RGB: (171,118,28)
#AB761C contains mainly red and green colors. Web safe color of #AB761C is #996633 (or #963).
#AB761C color RGB value is (171,118,28).
RGB: (171,118,28) (67%,46%,11%)
R 171 of 255 = 67%
G 118 of 255 = 46%
B 28 of 255 = 11%
R + G + B ~ 41%. #AB761C is middle color (not dark and not light).
R + G + B =
171 + 118 + 28 = 317 (100%)
R 171 of 317 ~ 53.94%
G 118 of 317 ~ 37.22%
B 28 of 317 ~ 8.83%
#AB761C color CMYK value is (0,31,84,33).
CMYK: (0,31,84,33) C0M31Y84K33 (0%,31%,84%,33%) (0.00/0.31/0.84/0.33)
AB | 76 | 1C | |
---|---|---|---|
RGB | 171 | 118 | 28 |
HSL | 38° | 71.86% | 39.02% |
HSB/HSV | 38° | 83.63% | 67.06% |
CMYK | 0.00% | 30.99% | 83.63% |
32.94% |
HEX | AB | 76 | 1C |
Decimal | 171 | 118 | 28 |
Binary | 10101011 | 1110110 | 11100 |
Octal | 253 | 166 | 34 |
Examples of css and html codes for elements with #AB761C color. Also use rgb(171,118,28) instead hex code.
.myTextColor { color: #AB761C; }
<p style="color:#AB761C">This sample text font color is #AB761C.</p>
This text font color is #AB761C.
.myBgColor { background-color: #AB761C; }
<div style="background-color:#AB761C">Inner text</div>
This div background color is #AB761C.
.myBorderColor { border: 1px solid #AB761C; }
<div style="border:3px solid #AB761C">Div</div>
This div border color is #AB761C.
.myOpacity80 { color: #AB761C; opacity: 0.8; }
<p style="color:#AB761C;opacity:0.8;">80%</p>
Text with #AB761C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB761C;}
<p style="text-shadow: 3px 3px 1px #AB761C">Text here.</p>
This text has shadow with #AB761C color.
.textShadow {text-shadow: 3px 3px 1px #AB761C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB761C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB761C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB761C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB761C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB761C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB761C; -webkit-box-shadow: 1px 1px 3px 2px #AB761C; box-shadow: 1px 1px 3px 2px #AB761C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB761C; -webkit-box-shadow: 1px 1px 3px 2px #AB761C; box-shadow:1px 1px 3px 2px #AB761C;">
Div content here</div>
This text has color #AB761C on black background.
This text has color #AB761C on white background.
This text has black color on #AB761C background.
This text has white color on #AB761C background.