HEX: #83001D
RGB: (131,0,29)
#83001D contains mainly red color. Web safe color of #83001D is #990033 (or #903).
#83001D color RGB value is (131,0,29).
RGB: (131,0,29) (51%,0%,11%)
R 131 of 255 = 51%
G 0 of 255 = 0%
B 29 of 255 = 11%
R + G + B ~ 21%. #83001D is dark color.
R + G + B =
131 + 0 + 29 = 160 (100%)
R 131 of 160 ~ 81.88%
G 0 of 160 ~ 0%
B 29 of 160 ~ 18.13%
#83001D color CMYK value is (0,100,78,49).
CMYK: (0,100,78,49) C0M100Y78K49 (0%,100%,78%,49%) (0.00/1.00/0.78/0.49)
83 | 00 | 1D | |
---|---|---|---|
RGB | 131 | 0 | 29 |
HSL | 347° | 100.00% | 25.69% |
HSB/HSV | 347° | 100.00% | 51.37% |
CMYK | 0.00% | 100.00% | 77.86% |
48.63% |
HEX | 83 | 00 | 1D |
Decimal | 131 | 0 | 29 |
Binary | 10000011 | 0 | 11101 |
Octal | 203 | 0 | 35 |
Examples of css and html codes for elements with #83001D color. Also use rgb(131,0,29) instead hex code.
.myTextColor { color: #83001D; }
<p style="color:#83001D">This sample text font color is #83001D.</p>
This text font color is #83001D.
.myBgColor { background-color: #83001D; }
<div style="background-color:#83001D">Inner text</div>
This div background color is #83001D.
.myBorderColor { border: 1px solid #83001D; }
<div style="border:3px solid #83001D">Div</div>
This div border color is #83001D.
.myOpacity80 { color: #83001D; opacity: 0.8; }
<p style="color:#83001D;opacity:0.8;">80%</p>
Text with #83001D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83001D;}
<p style="text-shadow: 3px 3px 1px #83001D">Text here.</p>
This text has shadow with #83001D color.
.textShadow {text-shadow: 3px 3px 1px #83001D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83001D, 5px 5px 20px red">Text here.</p>
This text has shadow with #83001D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83001D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83001D, Direction=45, Strength=4)">Text</p>
This text has shadow with #83001D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83001D; -webkit-box-shadow: 1px 1px 3px 2px #83001D; box-shadow: 1px 1px 3px 2px #83001D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83001D; -webkit-box-shadow: 1px 1px 3px 2px #83001D; box-shadow:1px 1px 3px 2px #83001D;">
Div content here</div>
This text has color #83001D on black background.
This text has color #83001D on white background.
This text has black color on #83001D background.
This text has white color on #83001D background.