HEX: #74946F
RGB: (116,148,111)
#74946F contains red, green and blue colors in about the same proportion. Web safe color of #74946F is #669966 (or #696).
#74946F color RGB value is (116,148,111).
RGB: (116,148,111) (45%,58%,44%)
R 116 of 255 = 45%
G 148 of 255 = 58%
B 111 of 255 = 44%
R + G + B ~ 49%. #74946F is middle color (not dark and not light).
R + G + B =
116 + 148 + 111 = 375 (100%)
R 116 of 375 ~ 30.93%
G 148 of 375 ~ 39.47%
B 111 of 375 ~ 29.6%
#74946F color CMYK value is (22,0,25,42).
CMYK: (22,0,25,42) C22M0Y25K42 (22%,0%,25%,42%) (0.22/0.00/0.25/0.42)
74 | 94 | 6F | |
---|---|---|---|
RGB | 116 | 148 | 111 |
HSL | 112° | 14.74% | 50.78% |
HSB/HSV | 112° | 25.00% | 58.04% |
CMYK | 21.62% | 0.00% | 25.00% |
41.96% |
HEX | 74 | 94 | 6F |
Decimal | 116 | 148 | 111 |
Binary | 1110100 | 10010100 | 1101111 |
Octal | 164 | 224 | 157 |
Examples of css and html codes for elements with #74946F color. Also use rgb(116,148,111) instead hex code.
.myTextColor { color: #74946F; }
<p style="color:#74946F">This sample text font color is #74946F.</p>
This text font color is #74946F.
.myBgColor { background-color: #74946F; }
<div style="background-color:#74946F">Inner text</div>
This div background color is #74946F.
.myBorderColor { border: 1px solid #74946F; }
<div style="border:3px solid #74946F">Div</div>
This div border color is #74946F.
.myOpacity80 { color: #74946F; opacity: 0.8; }
<p style="color:#74946F;opacity:0.8;">80%</p>
Text with #74946F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74946F;}
<p style="text-shadow: 3px 3px 1px #74946F">Text here.</p>
This text has shadow with #74946F color.
.textShadow {text-shadow: 3px 3px 1px #74946F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74946F, 5px 5px 20px red">Text here.</p>
This text has shadow with #74946F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74946F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74946F, Direction=45, Strength=4)">Text</p>
This text has shadow with #74946F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74946F; -webkit-box-shadow: 1px 1px 3px 2px #74946F; box-shadow: 1px 1px 3px 2px #74946F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74946F; -webkit-box-shadow: 1px 1px 3px 2px #74946F; box-shadow:1px 1px 3px 2px #74946F;">
Div content here</div>
This text has color #74946F on black background.
This text has color #74946F on white background.
This text has black color on #74946F background.
This text has white color on #74946F background.