HEX: #74366D
RGB: (116,54,109)
#74366D contains mainly red and blue colors. Web safe color of #74366D is #663366 (or #636).
#74366D color RGB value is (116,54,109).
RGB: (116,54,109) (45%,21%,43%)
R 116 of 255 = 45%
G 54 of 255 = 21%
B 109 of 255 = 43%
R + G + B ~ 36%. #74366D is quite dark color.
R + G + B =
116 + 54 + 109 = 279 (100%)
R 116 of 279 ~ 41.58%
G 54 of 279 ~ 19.35%
B 109 of 279 ~ 39.07%
#74366D color CMYK value is (0,53,6,55).
CMYK: (0,53,6,55) C0M53Y6K55 (0%,53%,6%,55%) (0.00/0.53/0.06/0.55)
74 | 36 | 6D | |
---|---|---|---|
RGB | 116 | 54 | 109 |
HSL | 307° | 36.47% | 33.33% |
HSB/HSV | 307° | 53.45% | 45.49% |
CMYK | 0.00% | 53.45% | 6.03% |
54.51% |
HEX | 74 | 36 | 6D |
Decimal | 116 | 54 | 109 |
Binary | 1110100 | 110110 | 1101101 |
Octal | 164 | 66 | 155 |
Examples of css and html codes for elements with #74366D color. Also use rgb(116,54,109) instead hex code.
.myTextColor { color: #74366D; }
<p style="color:#74366D">This sample text font color is #74366D.</p>
This text font color is #74366D.
.myBgColor { background-color: #74366D; }
<div style="background-color:#74366D">Inner text</div>
This div background color is #74366D.
.myBorderColor { border: 1px solid #74366D; }
<div style="border:3px solid #74366D">Div</div>
This div border color is #74366D.
.myOpacity80 { color: #74366D; opacity: 0.8; }
<p style="color:#74366D;opacity:0.8;">80%</p>
Text with #74366D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74366D;}
<p style="text-shadow: 3px 3px 1px #74366D">Text here.</p>
This text has shadow with #74366D color.
.textShadow {text-shadow: 3px 3px 1px #74366D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74366D, 5px 5px 20px red">Text here.</p>
This text has shadow with #74366D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74366D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74366D, Direction=45, Strength=4)">Text</p>
This text has shadow with #74366D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74366D; -webkit-box-shadow: 1px 1px 3px 2px #74366D; box-shadow: 1px 1px 3px 2px #74366D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74366D; -webkit-box-shadow: 1px 1px 3px 2px #74366D; box-shadow:1px 1px 3px 2px #74366D;">
Div content here</div>
This text has color #74366D on black background.
This text has color #74366D on white background.
This text has black color on #74366D background.
This text has white color on #74366D background.