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