HEX: #74886A
RGB: (116,136,106)
#74886A contains red, green and blue colors in about the same proportion. Web safe color of #74886A is #669966 (or #696).
#74886A color RGB value is (116,136,106).
RGB: (116,136,106) (45%,53%,42%)
R 116 of 255 = 45%
G 136 of 255 = 53%
B 106 of 255 = 42%
R + G + B ~ 47%. #74886A is middle color (not dark and not light).
R + G + B =
116 + 136 + 106 = 358 (100%)
R 116 of 358 ~ 32.4%
G 136 of 358 ~ 37.99%
B 106 of 358 ~ 29.61%
#74886A color CMYK value is (15,0,22,47).
CMYK: (15,0,22,47) C15M0Y22K47 (15%,0%,22%,47%) (0.15/0.00/0.22/0.47)
74 | 88 | 6A | |
---|---|---|---|
RGB | 116 | 136 | 106 |
HSL | 100° | 12.40% | 47.45% |
HSB/HSV | 100° | 22.06% | 53.33% |
CMYK | 14.71% | 0.00% | 22.06% |
46.67% |
HEX | 74 | 88 | 6A |
Decimal | 116 | 136 | 106 |
Binary | 1110100 | 10001000 | 1101010 |
Octal | 164 | 210 | 152 |
Examples of css and html codes for elements with #74886A color. Also use rgb(116,136,106) instead hex code.
.myTextColor { color: #74886A; }
<p style="color:#74886A">This sample text font color is #74886A.</p>
This text font color is #74886A.
.myBgColor { background-color: #74886A; }
<div style="background-color:#74886A">Inner text</div>
This div background color is #74886A.
.myBorderColor { border: 1px solid #74886A; }
<div style="border:3px solid #74886A">Div</div>
This div border color is #74886A.
.myOpacity80 { color: #74886A; opacity: 0.8; }
<p style="color:#74886A;opacity:0.8;">80%</p>
Text with #74886A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74886A;}
<p style="text-shadow: 3px 3px 1px #74886A">Text here.</p>
This text has shadow with #74886A color.
.textShadow {text-shadow: 3px 3px 1px #74886A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74886A, 5px 5px 20px red">Text here.</p>
This text has shadow with #74886A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74886A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74886A, Direction=45, Strength=4)">Text</p>
This text has shadow with #74886A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74886A; -webkit-box-shadow: 1px 1px 3px 2px #74886A; box-shadow: 1px 1px 3px 2px #74886A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74886A; -webkit-box-shadow: 1px 1px 3px 2px #74886A; box-shadow:1px 1px 3px 2px #74886A;">
Div content here</div>
This text has color #74886A on black background.
This text has color #74886A on white background.
This text has black color on #74886A background.
This text has white color on #74886A background.