HEX: #74524D
RGB: (116,82,77)
#74524D contains red, green and blue colors in about the same proportion. Web safe color of #74524D is #666633 (or #663).
#74524D color RGB value is (116,82,77).
RGB: (116,82,77) (45%,32%,30%)
R 116 of 255 = 45%
G 82 of 255 = 32%
B 77 of 255 = 30%
R + G + B ~ 36%. #74524D is quite dark color.
R + G + B =
116 + 82 + 77 = 275 (100%)
R 116 of 275 ~ 42.18%
G 82 of 275 ~ 29.82%
B 77 of 275 ~ 28%
#74524D color CMYK value is (0,29,34,55).
CMYK: (0,29,34,55) C0M29Y34K55 (0%,29%,34%,55%) (0.00/0.29/0.34/0.55)
74 | 52 | 4D | |
---|---|---|---|
RGB | 116 | 82 | 77 |
HSL | 8° | 20.21% | 37.84% |
HSB/HSV | 8° | 33.62% | 45.49% |
CMYK | 0.00% | 29.31% | 33.62% |
54.51% |
HEX | 74 | 52 | 4D |
Decimal | 116 | 82 | 77 |
Binary | 1110100 | 1010010 | 1001101 |
Octal | 164 | 122 | 115 |
Examples of css and html codes for elements with #74524D color. Also use rgb(116,82,77) instead hex code.
.myTextColor { color: #74524D; }
<p style="color:#74524D">This sample text font color is #74524D.</p>
This text font color is #74524D.
.myBgColor { background-color: #74524D; }
<div style="background-color:#74524D">Inner text</div>
This div background color is #74524D.
.myBorderColor { border: 1px solid #74524D; }
<div style="border:3px solid #74524D">Div</div>
This div border color is #74524D.
.myOpacity80 { color: #74524D; opacity: 0.8; }
<p style="color:#74524D;opacity:0.8;">80%</p>
Text with #74524D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74524D;}
<p style="text-shadow: 3px 3px 1px #74524D">Text here.</p>
This text has shadow with #74524D color.
.textShadow {text-shadow: 3px 3px 1px #74524D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74524D, 5px 5px 20px red">Text here.</p>
This text has shadow with #74524D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74524D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74524D, Direction=45, Strength=4)">Text</p>
This text has shadow with #74524D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74524D; -webkit-box-shadow: 1px 1px 3px 2px #74524D; box-shadow: 1px 1px 3px 2px #74524D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74524D; -webkit-box-shadow: 1px 1px 3px 2px #74524D; box-shadow:1px 1px 3px 2px #74524D;">
Div content here</div>
This text has color #74524D on black background.
This text has color #74524D on white background.
This text has black color on #74524D background.
This text has white color on #74524D background.