HEX: #744B30
RGB: (116,75,48)
#744B30 contains mainly red and green colors. Web safe color of #744B30 is #663333 (or #633).
#744B30 color RGB value is (116,75,48).
RGB: (116,75,48) (45%,29%,19%)
R 116 of 255 = 45%
G 75 of 255 = 29%
B 48 of 255 = 19%
R + G + B ~ 31%. #744B30 is quite dark color.
R + G + B =
116 + 75 + 48 = 239 (100%)
R 116 of 239 ~ 48.54%
G 75 of 239 ~ 31.38%
B 48 of 239 ~ 20.08%
#744B30 color CMYK value is (0,35,59,55).
CMYK: (0,35,59,55) C0M35Y59K55 (0%,35%,59%,55%) (0.00/0.35/0.59/0.55)
74 | 4B | 30 | |
---|---|---|---|
RGB | 116 | 75 | 48 |
HSL | 24° | 41.46% | 32.16% |
HSB/HSV | 24° | 58.62% | 45.49% |
CMYK | 0.00% | 35.34% | 58.62% |
54.51% |
HEX | 74 | 4B | 30 |
Decimal | 116 | 75 | 48 |
Binary | 1110100 | 1001011 | 110000 |
Octal | 164 | 113 | 60 |
Examples of css and html codes for elements with #744B30 color. Also use rgb(116,75,48) instead hex code.
.myTextColor { color: #744B30; }
<p style="color:#744B30">This sample text font color is #744B30.</p>
This text font color is #744B30.
.myBgColor { background-color: #744B30; }
<div style="background-color:#744B30">Inner text</div>
This div background color is #744B30.
.myBorderColor { border: 1px solid #744B30; }
<div style="border:3px solid #744B30">Div</div>
This div border color is #744B30.
.myOpacity80 { color: #744B30; opacity: 0.8; }
<p style="color:#744B30;opacity:0.8;">80%</p>
Text with #744B30 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #744B30;}
<p style="text-shadow: 3px 3px 1px #744B30">Text here.</p>
This text has shadow with #744B30 color.
.textShadow {text-shadow: 3px 3px 1px #744B30, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #744B30, 5px 5px 20px red">Text here.</p>
This text has shadow with #744B30 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#744B30, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#744B30, Direction=45, Strength=4)">Text</p>
This text has shadow with #744B30 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #744B30; -webkit-box-shadow: 1px 1px 3px 2px #744B30; box-shadow: 1px 1px 3px 2px #744B30; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #744B30; -webkit-box-shadow: 1px 1px 3px 2px #744B30; box-shadow:1px 1px 3px 2px #744B30;">
Div content here</div>
This text has color #744B30 on black background.
This text has color #744B30 on white background.
This text has black color on #744B30 background.
This text has white color on #744B30 background.