HEX: #AB613C
RGB: (171,97,60)
#AB613C contains mainly red color. Web safe color of #AB613C is #996633 (or #963).
#AB613C color RGB value is (171,97,60).
RGB: (171,97,60) (67%,38%,24%)
R 171 of 255 = 67%
G 97 of 255 = 38%
B 60 of 255 = 24%
R + G + B ~ 43%. #AB613C is middle color (not dark and not light).
R + G + B =
171 + 97 + 60 = 328 (100%)
R 171 of 328 ~ 52.13%
G 97 of 328 ~ 29.57%
B 60 of 328 ~ 18.29%
#AB613C color CMYK value is (0,43,65,33).
CMYK: (0,43,65,33) C0M43Y65K33 (0%,43%,65%,33%) (0.00/0.43/0.65/0.33)
AB | 61 | 3C | |
---|---|---|---|
RGB | 171 | 97 | 60 |
HSL | 20° | 48.05% | 45.29% |
HSB/HSV | 20° | 64.91% | 67.06% |
CMYK | 0.00% | 43.27% | 64.91% |
32.94% |
HEX | AB | 61 | 3C |
Decimal | 171 | 97 | 60 |
Binary | 10101011 | 1100001 | 111100 |
Octal | 253 | 141 | 74 |
Examples of css and html codes for elements with #AB613C color. Also use rgb(171,97,60) instead hex code.
.myTextColor { color: #AB613C; }
<p style="color:#AB613C">This sample text font color is #AB613C.</p>
This text font color is #AB613C.
.myBgColor { background-color: #AB613C; }
<div style="background-color:#AB613C">Inner text</div>
This div background color is #AB613C.
.myBorderColor { border: 1px solid #AB613C; }
<div style="border:3px solid #AB613C">Div</div>
This div border color is #AB613C.
.myOpacity80 { color: #AB613C; opacity: 0.8; }
<p style="color:#AB613C;opacity:0.8;">80%</p>
Text with #AB613C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB613C;}
<p style="text-shadow: 3px 3px 1px #AB613C">Text here.</p>
This text has shadow with #AB613C color.
.textShadow {text-shadow: 3px 3px 1px #AB613C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB613C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB613C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB613C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB613C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB613C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB613C; -webkit-box-shadow: 1px 1px 3px 2px #AB613C; box-shadow: 1px 1px 3px 2px #AB613C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB613C; -webkit-box-shadow: 1px 1px 3px 2px #AB613C; box-shadow:1px 1px 3px 2px #AB613C;">
Div content here</div>
This text has color #AB613C on black background.
This text has color #AB613C on white background.
This text has black color on #AB613C background.
This text has white color on #AB613C background.