HEX: #74004B
RGB: (116,0,75)
#74004B contains only red and blue colors. Web safe color of #74004B is #660033 (or #603).
#74004B color RGB value is (116,0,75).
RGB: (116,0,75) (45%,0%,29%)
R 116 of 255 = 45%
G 0 of 255 = 0%
B 75 of 255 = 29%
R + G + B ~ 25%. #74004B is quite dark color.
R + G + B =
116 + 0 + 75 = 191 (100%)
R 116 of 191 ~ 60.73%
G 0 of 191 ~ 0%
B 75 of 191 ~ 39.27%
#74004B color CMYK value is (0,100,35,55).
CMYK: (0,100,35,55) C0M100Y35K55 (0%,100%,35%,55%) (0.00/1.00/0.35/0.55)
74 | 00 | 4B | |
---|---|---|---|
RGB | 116 | 0 | 75 |
HSL | 321° | 100.00% | 22.75% |
HSB/HSV | 321° | 100.00% | 45.49% |
CMYK | 0.00% | 100.00% | 35.34% |
54.51% |
HEX | 74 | 00 | 4B |
Decimal | 116 | 0 | 75 |
Binary | 1110100 | 0 | 1001011 |
Octal | 164 | 0 | 113 |
Examples of css and html codes for elements with #74004B color. Also use rgb(116,0,75) instead hex code.
.myTextColor { color: #74004B; }
<p style="color:#74004B">This sample text font color is #74004B.</p>
This text font color is #74004B.
.myBgColor { background-color: #74004B; }
<div style="background-color:#74004B">Inner text</div>
This div background color is #74004B.
.myBorderColor { border: 1px solid #74004B; }
<div style="border:3px solid #74004B">Div</div>
This div border color is #74004B.
.myOpacity80 { color: #74004B; opacity: 0.8; }
<p style="color:#74004B;opacity:0.8;">80%</p>
Text with #74004B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74004B;}
<p style="text-shadow: 3px 3px 1px #74004B">Text here.</p>
This text has shadow with #74004B color.
.textShadow {text-shadow: 3px 3px 1px #74004B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74004B, 5px 5px 20px red">Text here.</p>
This text has shadow with #74004B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74004B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74004B, Direction=45, Strength=4)">Text</p>
This text has shadow with #74004B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74004B; -webkit-box-shadow: 1px 1px 3px 2px #74004B; box-shadow: 1px 1px 3px 2px #74004B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74004B; -webkit-box-shadow: 1px 1px 3px 2px #74004B; box-shadow:1px 1px 3px 2px #74004B;">
Div content here</div>
This text has color #74004B on black background.
This text has color #74004B on white background.
This text has black color on #74004B background.
This text has white color on #74004B background.