HEX: #746667
RGB: (116,102,103)
#746667 contains red, green and blue colors in about the same proportion. Web safe color of #746667 is #666666 (or #666).
#746667 color RGB value is (116,102,103).
RGB: (116,102,103) (45%,40%,40%)
R 116 of 255 = 45%
G 102 of 255 = 40%
B 103 of 255 = 40%
R + G + B ~ 42%. #746667 is middle color (not dark and not light).
R + G + B =
116 + 102 + 103 = 321 (100%)
R 116 of 321 ~ 36.14%
G 102 of 321 ~ 31.78%
B 103 of 321 ~ 32.09%
#746667 color CMYK value is (0,12,11,55).
CMYK: (0,12,11,55) C0M12Y11K55 (0%,12%,11%,55%) (0.00/0.12/0.11/0.55)
74 | 66 | 67 | |
---|---|---|---|
RGB | 116 | 102 | 103 |
HSL | 356° | 6.42% | 42.75% |
HSB/HSV | 356° | 12.07% | 45.49% |
CMYK | 0.00% | 12.07% | 11.21% |
54.51% |
HEX | 74 | 66 | 67 |
Decimal | 116 | 102 | 103 |
Binary | 1110100 | 1100110 | 1100111 |
Octal | 164 | 146 | 147 |
Examples of css and html codes for elements with #746667 color. Also use rgb(116,102,103) instead hex code.
.myTextColor { color: #746667; }
<p style="color:#746667">This sample text font color is #746667.</p>
This text font color is #746667.
.myBgColor { background-color: #746667; }
<div style="background-color:#746667">Inner text</div>
This div background color is #746667.
.myBorderColor { border: 1px solid #746667; }
<div style="border:3px solid #746667">Div</div>
This div border color is #746667.
.myOpacity80 { color: #746667; opacity: 0.8; }
<p style="color:#746667;opacity:0.8;">80%</p>
Text with #746667 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #746667;}
<p style="text-shadow: 3px 3px 1px #746667">Text here.</p>
This text has shadow with #746667 color.
.textShadow {text-shadow: 3px 3px 1px #746667, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #746667, 5px 5px 20px red">Text here.</p>
This text has shadow with #746667 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#746667, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#746667, Direction=45, Strength=4)">Text</p>
This text has shadow with #746667 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #746667; -webkit-box-shadow: 1px 1px 3px 2px #746667; box-shadow: 1px 1px 3px 2px #746667; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #746667; -webkit-box-shadow: 1px 1px 3px 2px #746667; box-shadow:1px 1px 3px 2px #746667;">
Div content here</div>
This text has color #746667 on black background.
This text has color #746667 on white background.
This text has black color on #746667 background.
This text has white color on #746667 background.