HEX: #AB0E1D
RGB: (171,14,29)
#AB0E1D contains mainly red color. Web safe color of #AB0E1D is #990033 (or #903).
#AB0E1D color RGB value is (171,14,29).
RGB: (171,14,29) (67%,5%,11%)
R 171 of 255 = 67%
G 14 of 255 = 5%
B 29 of 255 = 11%
R + G + B ~ 28%. #AB0E1D is quite dark color.
R + G + B =
171 + 14 + 29 = 214 (100%)
R 171 of 214 ~ 79.91%
G 14 of 214 ~ 6.54%
B 29 of 214 ~ 13.55%
#AB0E1D color CMYK value is (0,92,83,33).
CMYK: (0,92,83,33) C0M92Y83K33 (0%,92%,83%,33%) (0.00/0.92/0.83/0.33)
AB | 0E | 1D | |
---|---|---|---|
RGB | 171 | 14 | 29 |
HSL | 354° | 84.86% | 36.27% |
HSB/HSV | 354° | 91.81% | 67.06% |
CMYK | 0.00% | 91.81% | 83.04% |
32.94% |
HEX | AB | 0E | 1D |
Decimal | 171 | 14 | 29 |
Binary | 10101011 | 1110 | 11101 |
Octal | 253 | 16 | 35 |
Examples of css and html codes for elements with #AB0E1D color. Also use rgb(171,14,29) instead hex code.
.myTextColor { color: #AB0E1D; }
<p style="color:#AB0E1D">This sample text font color is #AB0E1D.</p>
This text font color is #AB0E1D.
.myBgColor { background-color: #AB0E1D; }
<div style="background-color:#AB0E1D">Inner text</div>
This div background color is #AB0E1D.
.myBorderColor { border: 1px solid #AB0E1D; }
<div style="border:3px solid #AB0E1D">Div</div>
This div border color is #AB0E1D.
.myOpacity80 { color: #AB0E1D; opacity: 0.8; }
<p style="color:#AB0E1D;opacity:0.8;">80%</p>
Text with #AB0E1D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB0E1D;}
<p style="text-shadow: 3px 3px 1px #AB0E1D">Text here.</p>
This text has shadow with #AB0E1D color.
.textShadow {text-shadow: 3px 3px 1px #AB0E1D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB0E1D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB0E1D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB0E1D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB0E1D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB0E1D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB0E1D; -webkit-box-shadow: 1px 1px 3px 2px #AB0E1D; box-shadow: 1px 1px 3px 2px #AB0E1D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB0E1D; -webkit-box-shadow: 1px 1px 3px 2px #AB0E1D; box-shadow:1px 1px 3px 2px #AB0E1D;">
Div content here</div>
This text has color #AB0E1D on black background.
This text has color #AB0E1D on white background.
This text has black color on #AB0E1D background.
This text has white color on #AB0E1D background.