HEX: #74664C
RGB: (116,102,76)
#74664C contains red, green and blue colors in about the same proportion. Web safe color of #74664C is #666633 (or #663).
#74664C color RGB value is (116,102,76).
RGB: (116,102,76) (45%,40%,30%)
R 116 of 255 = 45%
G 102 of 255 = 40%
B 76 of 255 = 30%
R + G + B ~ 38%. #74664C is quite dark color.
R + G + B =
116 + 102 + 76 = 294 (100%)
R 116 of 294 ~ 39.46%
G 102 of 294 ~ 34.69%
B 76 of 294 ~ 25.85%
#74664C color CMYK value is (0,12,34,55).
CMYK: (0,12,34,55) C0M12Y34K55 (0%,12%,34%,55%) (0.00/0.12/0.34/0.55)
74 | 66 | 4C | |
---|---|---|---|
RGB | 116 | 102 | 76 |
HSL | 39° | 20.83% | 37.65% |
HSB/HSV | 39° | 34.48% | 45.49% |
CMYK | 0.00% | 12.07% | 34.48% |
54.51% |
HEX | 74 | 66 | 4C |
Decimal | 116 | 102 | 76 |
Binary | 1110100 | 1100110 | 1001100 |
Octal | 164 | 146 | 114 |
Examples of css and html codes for elements with #74664C color. Also use rgb(116,102,76) instead hex code.
.myTextColor { color: #74664C; }
<p style="color:#74664C">This sample text font color is #74664C.</p>
This text font color is #74664C.
.myBgColor { background-color: #74664C; }
<div style="background-color:#74664C">Inner text</div>
This div background color is #74664C.
.myBorderColor { border: 1px solid #74664C; }
<div style="border:3px solid #74664C">Div</div>
This div border color is #74664C.
.myOpacity80 { color: #74664C; opacity: 0.8; }
<p style="color:#74664C;opacity:0.8;">80%</p>
Text with #74664C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74664C;}
<p style="text-shadow: 3px 3px 1px #74664C">Text here.</p>
This text has shadow with #74664C color.
.textShadow {text-shadow: 3px 3px 1px #74664C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74664C, 5px 5px 20px red">Text here.</p>
This text has shadow with #74664C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74664C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74664C, Direction=45, Strength=4)">Text</p>
This text has shadow with #74664C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74664C; -webkit-box-shadow: 1px 1px 3px 2px #74664C; box-shadow: 1px 1px 3px 2px #74664C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74664C; -webkit-box-shadow: 1px 1px 3px 2px #74664C; box-shadow:1px 1px 3px 2px #74664C;">
Div content here</div>
This text has color #74664C on black background.
This text has color #74664C on white background.
This text has black color on #74664C background.
This text has white color on #74664C background.