HEX: #531000
RGB: (83,16,0)
#531000 contains mainly red color. Web safe color of #531000 is #660000 (or #600).
#531000 color RGB value is (83,16,0).
RGB: (83,16,0) (33%,6%,0%)
R 83 of 255 = 33%
G 16 of 255 = 6%
B 0 of 255 = 0%
R + G + B ~ 13%. #531000 is dark color.
R + G + B =
83 + 16 + 0 = 99 (100%)
R 83 of 99 ~ 83.84%
G 16 of 99 ~ 16.16%
B 0 of 99 ~ 0%
#531000 color CMYK value is (0,81,100,67).
CMYK: (0,81,100,67) C0M81Y100K67 (0%,81%,100%,67%) (0.00/0.81/1.00/0.67)
53 | 10 | 00 | |
---|---|---|---|
RGB | 83 | 16 | 0 |
HSL | 12° | 100.00% | 16.27% |
HSB/HSV | 12° | 100.00% | 32.55% |
CMYK | 0.00% | 80.72% | 100.00% |
67.45% |
HEX | 53 | 10 | 00 |
Decimal | 83 | 16 | 0 |
Binary | 1010011 | 10000 | 0 |
Octal | 123 | 20 | 0 |
Examples of css and html codes for elements with #531000 color. Also use rgb(83,16,0) instead hex code.
.myTextColor { color: #531000; }
<p style="color:#531000">This sample text font color is #531000.</p>
This text font color is #531000.
.myBgColor { background-color: #531000; }
<div style="background-color:#531000">Inner text</div>
This div background color is #531000.
.myBorderColor { border: 1px solid #531000; }
<div style="border:3px solid #531000">Div</div>
This div border color is #531000.
.myOpacity80 { color: #531000; opacity: 0.8; }
<p style="color:#531000;opacity:0.8;">80%</p>
Text with #531000 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #531000;}
<p style="text-shadow: 3px 3px 1px #531000">Text here.</p>
This text has shadow with #531000 color.
.textShadow {text-shadow: 3px 3px 1px #531000, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #531000, 5px 5px 20px red">Text here.</p>
This text has shadow with #531000 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#531000, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#531000, Direction=45, Strength=4)">Text</p>
This text has shadow with #531000 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #531000; -webkit-box-shadow: 1px 1px 3px 2px #531000; box-shadow: 1px 1px 3px 2px #531000; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #531000; -webkit-box-shadow: 1px 1px 3px 2px #531000; box-shadow:1px 1px 3px 2px #531000;">
Div content here</div>
This text has color #531000 on black background.
This text has color #531000 on white background.
This text has black color on #531000 background.
This text has white color on #531000 background.