HEX: #74956E
RGB: (116,149,110)
#74956E contains red, green and blue colors in about the same proportion. Web safe color of #74956E is #669966 (or #696).
#74956E color RGB value is (116,149,110).
RGB: (116,149,110) (45%,58%,43%)
R 116 of 255 = 45%
G 149 of 255 = 58%
B 110 of 255 = 43%
R + G + B ~ 49%. #74956E is middle color (not dark and not light).
R + G + B =
116 + 149 + 110 = 375 (100%)
R 116 of 375 ~ 30.93%
G 149 of 375 ~ 39.73%
B 110 of 375 ~ 29.33%
#74956E color CMYK value is (22,0,26,42).
CMYK: (22,0,26,42) C22M0Y26K42 (22%,0%,26%,42%) (0.22/0.00/0.26/0.42)
74 | 95 | 6E | |
---|---|---|---|
RGB | 116 | 149 | 110 |
HSL | 111° | 15.54% | 50.78% |
HSB/HSV | 111° | 26.17% | 58.43% |
CMYK | 22.15% | 0.00% | 26.17% |
41.57% |
HEX | 74 | 95 | 6E |
Decimal | 116 | 149 | 110 |
Binary | 1110100 | 10010101 | 1101110 |
Octal | 164 | 225 | 156 |
Examples of css and html codes for elements with #74956E color. Also use rgb(116,149,110) instead hex code.
.myTextColor { color: #74956E; }
<p style="color:#74956E">This sample text font color is #74956E.</p>
This text font color is #74956E.
.myBgColor { background-color: #74956E; }
<div style="background-color:#74956E">Inner text</div>
This div background color is #74956E.
.myBorderColor { border: 1px solid #74956E; }
<div style="border:3px solid #74956E">Div</div>
This div border color is #74956E.
.myOpacity80 { color: #74956E; opacity: 0.8; }
<p style="color:#74956E;opacity:0.8;">80%</p>
Text with #74956E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74956E;}
<p style="text-shadow: 3px 3px 1px #74956E">Text here.</p>
This text has shadow with #74956E color.
.textShadow {text-shadow: 3px 3px 1px #74956E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74956E, 5px 5px 20px red">Text here.</p>
This text has shadow with #74956E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74956E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74956E, Direction=45, Strength=4)">Text</p>
This text has shadow with #74956E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74956E; -webkit-box-shadow: 1px 1px 3px 2px #74956E; box-shadow: 1px 1px 3px 2px #74956E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74956E; -webkit-box-shadow: 1px 1px 3px 2px #74956E; box-shadow:1px 1px 3px 2px #74956E;">
Div content here</div>
This text has color #74956E on black background.
This text has color #74956E on white background.
This text has black color on #74956E background.
This text has white color on #74956E background.