HEX: #800C13
RGB: (128,12,19)
#800C13 contains mainly red color. Web safe color of #800C13 is #660000 (or #600).
#800C13 color RGB value is (128,12,19).
RGB: (128,12,19) (50%,5%,7%)
R 128 of 255 = 50%
G 12 of 255 = 5%
B 19 of 255 = 7%
R + G + B ~ 21%. #800C13 is dark color.
R + G + B =
128 + 12 + 19 = 159 (100%)
R 128 of 159 ~ 80.5%
G 12 of 159 ~ 7.55%
B 19 of 159 ~ 11.95%
#800C13 color CMYK value is (0,91,85,50).
CMYK: (0,91,85,50) C0M91Y85K50 (0%,91%,85%,50%) (0.00/0.91/0.85/0.50)
80 | 0C | 13 | |
---|---|---|---|
RGB | 128 | 12 | 19 |
HSL | 356° | 82.86% | 27.45% |
HSB/HSV | 356° | 90.63% | 50.20% |
CMYK | 0.00% | 90.63% | 85.16% |
49.80% |
HEX | 80 | 0C | 13 |
Decimal | 128 | 12 | 19 |
Binary | 10000000 | 1100 | 10011 |
Octal | 200 | 14 | 23 |
Examples of css and html codes for elements with #800C13 color. Also use rgb(128,12,19) instead hex code.
.myTextColor { color: #800C13; }
<p style="color:#800C13">This sample text font color is #800C13.</p>
This text font color is #800C13.
.myBgColor { background-color: #800C13; }
<div style="background-color:#800C13">Inner text</div>
This div background color is #800C13.
.myBorderColor { border: 1px solid #800C13; }
<div style="border:3px solid #800C13">Div</div>
This div border color is #800C13.
.myOpacity80 { color: #800C13; opacity: 0.8; }
<p style="color:#800C13;opacity:0.8;">80%</p>
Text with #800C13 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #800C13;}
<p style="text-shadow: 3px 3px 1px #800C13">Text here.</p>
This text has shadow with #800C13 color.
.textShadow {text-shadow: 3px 3px 1px #800C13, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #800C13, 5px 5px 20px red">Text here.</p>
This text has shadow with #800C13 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#800C13, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#800C13, Direction=45, Strength=4)">Text</p>
This text has shadow with #800C13 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #800C13; -webkit-box-shadow: 1px 1px 3px 2px #800C13; box-shadow: 1px 1px 3px 2px #800C13; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #800C13; -webkit-box-shadow: 1px 1px 3px 2px #800C13; box-shadow:1px 1px 3px 2px #800C13;">
Div content here</div>
This text has color #800C13 on black background.
This text has color #800C13 on white background.
This text has black color on #800C13 background.
This text has white color on #800C13 background.