HEX: #74A46F
RGB: (116,164,111)
#74A46F contains red, green and blue colors in about the same proportion. Web safe color of #74A46F is #669966 (or #696).
#74A46F color RGB value is (116,164,111).
RGB: (116,164,111) (45%,64%,44%)
R 116 of 255 = 45%
G 164 of 255 = 64%
B 111 of 255 = 44%
R + G + B ~ 51%. #74A46F is middle color (not dark and not light).
R + G + B =
116 + 164 + 111 = 391 (100%)
R 116 of 391 ~ 29.67%
G 164 of 391 ~ 41.94%
B 111 of 391 ~ 28.39%
#74A46F color CMYK value is (29,0,32,36).
CMYK: (29,0,32,36) C29M0Y32K36 (29%,0%,32%,36%) (0.29/0.00/0.32/0.36)
74 | A4 | 6F | |
---|---|---|---|
RGB | 116 | 164 | 111 |
HSL | 114° | 22.55% | 53.92% |
HSB/HSV | 114° | 32.32% | 64.31% |
CMYK | 29.27% | 0.00% | 32.32% |
35.69% |
HEX | 74 | A4 | 6F |
Decimal | 116 | 164 | 111 |
Binary | 1110100 | 10100100 | 1101111 |
Octal | 164 | 244 | 157 |
Examples of css and html codes for elements with #74A46F color. Also use rgb(116,164,111) instead hex code.
.myTextColor { color: #74A46F; }
<p style="color:#74A46F">This sample text font color is #74A46F.</p>
This text font color is #74A46F.
.myBgColor { background-color: #74A46F; }
<div style="background-color:#74A46F">Inner text</div>
This div background color is #74A46F.
.myBorderColor { border: 1px solid #74A46F; }
<div style="border:3px solid #74A46F">Div</div>
This div border color is #74A46F.
.myOpacity80 { color: #74A46F; opacity: 0.8; }
<p style="color:#74A46F;opacity:0.8;">80%</p>
Text with #74A46F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74A46F;}
<p style="text-shadow: 3px 3px 1px #74A46F">Text here.</p>
This text has shadow with #74A46F color.
.textShadow {text-shadow: 3px 3px 1px #74A46F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74A46F, 5px 5px 20px red">Text here.</p>
This text has shadow with #74A46F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74A46F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74A46F, Direction=45, Strength=4)">Text</p>
This text has shadow with #74A46F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74A46F; -webkit-box-shadow: 1px 1px 3px 2px #74A46F; box-shadow: 1px 1px 3px 2px #74A46F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74A46F; -webkit-box-shadow: 1px 1px 3px 2px #74A46F; box-shadow:1px 1px 3px 2px #74A46F;">
Div content here</div>
This text has color #74A46F on black background.
This text has color #74A46F on white background.
This text has black color on #74A46F background.
This text has white color on #74A46F background.