HEX: #751801
RGB: (117,24,1)
#751801 contains mainly red color. Web safe color of #751801 is #660000 (or #600).
#751801 color RGB value is (117,24,1).
RGB: (117,24,1) (46%,9%,0%)
R 117 of 255 = 46%
G 24 of 255 = 9%
B 1 of 255 = 0%
R + G + B ~ 18%. #751801 is dark color.
R + G + B =
117 + 24 + 1 = 142 (100%)
R 117 of 142 ~ 82.39%
G 24 of 142 ~ 16.9%
B 1 of 142 ~ 0.7%
#751801 color CMYK value is (0,79,99,54).
CMYK: (0,79,99,54) C0M79Y99K54 (0%,79%,99%,54%) (0.00/0.79/0.99/0.54)
75 | 18 | 01 | |
---|---|---|---|
RGB | 117 | 24 | 1 |
HSL | 12° | 98.31% | 23.14% |
HSB/HSV | 12° | 99.15% | 45.88% |
CMYK | 0.00% | 79.49% | 99.15% |
54.12% |
HEX | 75 | 18 | 01 |
Decimal | 117 | 24 | 1 |
Binary | 1110101 | 11000 | 1 |
Octal | 165 | 30 | 1 |
Examples of css and html codes for elements with #751801 color. Also use rgb(117,24,1) instead hex code.
.myTextColor { color: #751801; }
<p style="color:#751801">This sample text font color is #751801.</p>
This text font color is #751801.
.myBgColor { background-color: #751801; }
<div style="background-color:#751801">Inner text</div>
This div background color is #751801.
.myBorderColor { border: 1px solid #751801; }
<div style="border:3px solid #751801">Div</div>
This div border color is #751801.
.myOpacity80 { color: #751801; opacity: 0.8; }
<p style="color:#751801;opacity:0.8;">80%</p>
Text with #751801 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #751801;}
<p style="text-shadow: 3px 3px 1px #751801">Text here.</p>
This text has shadow with #751801 color.
.textShadow {text-shadow: 3px 3px 1px #751801, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #751801, 5px 5px 20px red">Text here.</p>
This text has shadow with #751801 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#751801, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#751801, Direction=45, Strength=4)">Text</p>
This text has shadow with #751801 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #751801; -webkit-box-shadow: 1px 1px 3px 2px #751801; box-shadow: 1px 1px 3px 2px #751801; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #751801; -webkit-box-shadow: 1px 1px 3px 2px #751801; box-shadow:1px 1px 3px 2px #751801;">
Div content here</div>
This text has color #751801 on black background.
This text has color #751801 on white background.
This text has black color on #751801 background.
This text has white color on #751801 background.