HEX: #74705A
RGB: (116,112,90)
#74705A contains red, green and blue colors in about the same proportion. Web safe color of #74705A is #666666 (or #666).
#74705A color RGB value is (116,112,90).
RGB: (116,112,90) (45%,44%,35%)
R 116 of 255 = 45%
G 112 of 255 = 44%
B 90 of 255 = 35%
R + G + B ~ 41%. #74705A is middle color (not dark and not light).
R + G + B =
116 + 112 + 90 = 318 (100%)
R 116 of 318 ~ 36.48%
G 112 of 318 ~ 35.22%
B 90 of 318 ~ 28.3%
#74705A color CMYK value is (0,3,22,55).
CMYK: (0,3,22,55) C0M3Y22K55 (0%,3%,22%,55%) (0.00/0.03/0.22/0.55)
74 | 70 | 5A | |
---|---|---|---|
RGB | 116 | 112 | 90 |
HSL | 51° | 12.62% | 40.39% |
HSB/HSV | 51° | 22.41% | 45.49% |
CMYK | 0.00% | 3.45% | 22.41% |
54.51% |
HEX | 74 | 70 | 5A |
Decimal | 116 | 112 | 90 |
Binary | 1110100 | 1110000 | 1011010 |
Octal | 164 | 160 | 132 |
Examples of css and html codes for elements with #74705A color. Also use rgb(116,112,90) instead hex code.
.myTextColor { color: #74705A; }
<p style="color:#74705A">This sample text font color is #74705A.</p>
This text font color is #74705A.
.myBgColor { background-color: #74705A; }
<div style="background-color:#74705A">Inner text</div>
This div background color is #74705A.
.myBorderColor { border: 1px solid #74705A; }
<div style="border:3px solid #74705A">Div</div>
This div border color is #74705A.
.myOpacity80 { color: #74705A; opacity: 0.8; }
<p style="color:#74705A;opacity:0.8;">80%</p>
Text with #74705A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74705A;}
<p style="text-shadow: 3px 3px 1px #74705A">Text here.</p>
This text has shadow with #74705A color.
.textShadow {text-shadow: 3px 3px 1px #74705A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74705A, 5px 5px 20px red">Text here.</p>
This text has shadow with #74705A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74705A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74705A, Direction=45, Strength=4)">Text</p>
This text has shadow with #74705A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74705A; -webkit-box-shadow: 1px 1px 3px 2px #74705A; box-shadow: 1px 1px 3px 2px #74705A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74705A; -webkit-box-shadow: 1px 1px 3px 2px #74705A; box-shadow:1px 1px 3px 2px #74705A;">
Div content here</div>
This text has color #74705A on black background.
This text has color #74705A on white background.
This text has black color on #74705A background.
This text has white color on #74705A background.