HEX: #AB482B
RGB: (171,72,43)
#AB482B contains mainly red color. Web safe color of #AB482B is #993333 (or #933).
#AB482B color RGB value is (171,72,43).
RGB: (171,72,43) (67%,28%,17%)
R 171 of 255 = 67%
G 72 of 255 = 28%
B 43 of 255 = 17%
R + G + B ~ 37%. #AB482B is quite dark color.
R + G + B =
171 + 72 + 43 = 286 (100%)
R 171 of 286 ~ 59.79%
G 72 of 286 ~ 25.17%
B 43 of 286 ~ 15.03%
#AB482B color CMYK value is (0,58,75,33).
CMYK: (0,58,75,33) C0M58Y75K33 (0%,58%,75%,33%) (0.00/0.58/0.75/0.33)
AB | 48 | 2B | |
---|---|---|---|
RGB | 171 | 72 | 43 |
HSL | 14° | 59.81% | 41.96% |
HSB/HSV | 14° | 74.85% | 67.06% |
CMYK | 0.00% | 57.89% | 74.85% |
32.94% |
HEX | AB | 48 | 2B |
Decimal | 171 | 72 | 43 |
Binary | 10101011 | 1001000 | 101011 |
Octal | 253 | 110 | 53 |
Examples of css and html codes for elements with #AB482B color. Also use rgb(171,72,43) instead hex code.
.myTextColor { color: #AB482B; }
<p style="color:#AB482B">This sample text font color is #AB482B.</p>
This text font color is #AB482B.
.myBgColor { background-color: #AB482B; }
<div style="background-color:#AB482B">Inner text</div>
This div background color is #AB482B.
.myBorderColor { border: 1px solid #AB482B; }
<div style="border:3px solid #AB482B">Div</div>
This div border color is #AB482B.
.myOpacity80 { color: #AB482B; opacity: 0.8; }
<p style="color:#AB482B;opacity:0.8;">80%</p>
Text with #AB482B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB482B;}
<p style="text-shadow: 3px 3px 1px #AB482B">Text here.</p>
This text has shadow with #AB482B color.
.textShadow {text-shadow: 3px 3px 1px #AB482B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB482B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB482B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB482B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB482B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB482B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB482B; -webkit-box-shadow: 1px 1px 3px 2px #AB482B; box-shadow: 1px 1px 3px 2px #AB482B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB482B; -webkit-box-shadow: 1px 1px 3px 2px #AB482B; box-shadow:1px 1px 3px 2px #AB482B;">
Div content here</div>
This text has color #AB482B on black background.
This text has color #AB482B on white background.
This text has black color on #AB482B background.
This text has white color on #AB482B background.