HEX: #74615F
RGB: (116,97,95)
#74615F contains red, green and blue colors in about the same proportion. Web safe color of #74615F is #666666 (or #666).
#74615F color RGB value is (116,97,95).
RGB: (116,97,95) (45%,38%,37%)
R 116 of 255 = 45%
G 97 of 255 = 38%
B 95 of 255 = 37%
R + G + B ~ 40%. #74615F is middle color (not dark and not light).
R + G + B =
116 + 97 + 95 = 308 (100%)
R 116 of 308 ~ 37.66%
G 97 of 308 ~ 31.49%
B 95 of 308 ~ 30.84%
#74615F color CMYK value is (0,16,18,55).
CMYK: (0,16,18,55) C0M16Y18K55 (0%,16%,18%,55%) (0.00/0.16/0.18/0.55)
74 | 61 | 5F | |
---|---|---|---|
RGB | 116 | 97 | 95 |
HSL | 6° | 9.95% | 41.37% |
HSB/HSV | 6° | 18.10% | 45.49% |
CMYK | 0.00% | 16.38% | 18.10% |
54.51% |
HEX | 74 | 61 | 5F |
Decimal | 116 | 97 | 95 |
Binary | 1110100 | 1100001 | 1011111 |
Octal | 164 | 141 | 137 |
Examples of css and html codes for elements with #74615F color. Also use rgb(116,97,95) instead hex code.
.myTextColor { color: #74615F; }
<p style="color:#74615F">This sample text font color is #74615F.</p>
This text font color is #74615F.
.myBgColor { background-color: #74615F; }
<div style="background-color:#74615F">Inner text</div>
This div background color is #74615F.
.myBorderColor { border: 1px solid #74615F; }
<div style="border:3px solid #74615F">Div</div>
This div border color is #74615F.
.myOpacity80 { color: #74615F; opacity: 0.8; }
<p style="color:#74615F;opacity:0.8;">80%</p>
Text with #74615F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74615F;}
<p style="text-shadow: 3px 3px 1px #74615F">Text here.</p>
This text has shadow with #74615F color.
.textShadow {text-shadow: 3px 3px 1px #74615F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74615F, 5px 5px 20px red">Text here.</p>
This text has shadow with #74615F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74615F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74615F, Direction=45, Strength=4)">Text</p>
This text has shadow with #74615F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74615F; -webkit-box-shadow: 1px 1px 3px 2px #74615F; box-shadow: 1px 1px 3px 2px #74615F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74615F; -webkit-box-shadow: 1px 1px 3px 2px #74615F; box-shadow:1px 1px 3px 2px #74615F;">
Div content here</div>
This text has color #74615F on black background.
This text has color #74615F on white background.
This text has black color on #74615F background.
This text has white color on #74615F background.