HEX: #500C29
RGB: (80,12,41)
#500C29 contains mainly red and blue colors. Web safe color of #500C29 is #660033 (or #603).
#500C29 color RGB value is (80,12,41).
RGB: (80,12,41) (31%,5%,16%)
R 80 of 255 = 31%
G 12 of 255 = 5%
B 41 of 255 = 16%
R + G + B ~ 17%. #500C29 is dark color.
R + G + B =
80 + 12 + 41 = 133 (100%)
R 80 of 133 ~ 60.15%
G 12 of 133 ~ 9.02%
B 41 of 133 ~ 30.83%
#500C29 color CMYK value is (0,85,49,69).
CMYK: (0,85,49,69) C0M85Y49K69 (0%,85%,49%,69%) (0.00/0.85/0.49/0.69)
50 | 0C | 29 | |
---|---|---|---|
RGB | 80 | 12 | 41 |
HSL | 334° | 73.91% | 18.04% |
HSB/HSV | 334° | 85.00% | 31.37% |
CMYK | 0.00% | 85.00% | 48.75% |
68.63% |
HEX | 50 | 0C | 29 |
Decimal | 80 | 12 | 41 |
Binary | 1010000 | 1100 | 101001 |
Octal | 120 | 14 | 51 |
Examples of css and html codes for elements with #500C29 color. Also use rgb(80,12,41) instead hex code.
.myTextColor { color: #500C29; }
<p style="color:#500C29">This sample text font color is #500C29.</p>
This text font color is #500C29.
.myBgColor { background-color: #500C29; }
<div style="background-color:#500C29">Inner text</div>
This div background color is #500C29.
.myBorderColor { border: 1px solid #500C29; }
<div style="border:3px solid #500C29">Div</div>
This div border color is #500C29.
.myOpacity80 { color: #500C29; opacity: 0.8; }
<p style="color:#500C29;opacity:0.8;">80%</p>
Text with #500C29 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #500C29;}
<p style="text-shadow: 3px 3px 1px #500C29">Text here.</p>
This text has shadow with #500C29 color.
.textShadow {text-shadow: 3px 3px 1px #500C29, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #500C29, 5px 5px 20px red">Text here.</p>
This text has shadow with #500C29 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#500C29, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#500C29, Direction=45, Strength=4)">Text</p>
This text has shadow with #500C29 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #500C29; -webkit-box-shadow: 1px 1px 3px 2px #500C29; box-shadow: 1px 1px 3px 2px #500C29; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #500C29; -webkit-box-shadow: 1px 1px 3px 2px #500C29; box-shadow:1px 1px 3px 2px #500C29;">
Div content here</div>
This text has color #500C29 on black background.
This text has color #500C29 on white background.
This text has black color on #500C29 background.
This text has white color on #500C29 background.