HEX: #749A40
RGB: (116,154,64)
#749A40 contains mainly red and green colors. Web safe color of #749A40 is #669933 (or #693).
#749A40 color RGB value is (116,154,64).
RGB: (116,154,64) (45%,60%,25%)
R 116 of 255 = 45%
G 154 of 255 = 60%
B 64 of 255 = 25%
R + G + B ~ 43%. #749A40 is middle color (not dark and not light).
R + G + B =
116 + 154 + 64 = 334 (100%)
R 116 of 334 ~ 34.73%
G 154 of 334 ~ 46.11%
B 64 of 334 ~ 19.16%
#749A40 color CMYK value is (25,0,58,40).
CMYK: (25,0,58,40) C25M0Y58K40 (25%,0%,58%,40%) (0.25/0.00/0.58/0.40)
74 | 9A | 40 | |
---|---|---|---|
RGB | 116 | 154 | 64 |
HSL | 85° | 41.28% | 42.75% |
HSB/HSV | 85° | 58.44% | 60.39% |
CMYK | 24.68% | 0.00% | 58.44% |
39.61% |
HEX | 74 | 9A | 40 |
Decimal | 116 | 154 | 64 |
Binary | 1110100 | 10011010 | 1000000 |
Octal | 164 | 232 | 100 |
Examples of css and html codes for elements with #749A40 color. Also use rgb(116,154,64) instead hex code.
.myTextColor { color: #749A40; }
<p style="color:#749A40">This sample text font color is #749A40.</p>
This text font color is #749A40.
.myBgColor { background-color: #749A40; }
<div style="background-color:#749A40">Inner text</div>
This div background color is #749A40.
.myBorderColor { border: 1px solid #749A40; }
<div style="border:3px solid #749A40">Div</div>
This div border color is #749A40.
.myOpacity80 { color: #749A40; opacity: 0.8; }
<p style="color:#749A40;opacity:0.8;">80%</p>
Text with #749A40 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #749A40;}
<p style="text-shadow: 3px 3px 1px #749A40">Text here.</p>
This text has shadow with #749A40 color.
.textShadow {text-shadow: 3px 3px 1px #749A40, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #749A40, 5px 5px 20px red">Text here.</p>
This text has shadow with #749A40 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#749A40, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#749A40, Direction=45, Strength=4)">Text</p>
This text has shadow with #749A40 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #749A40; -webkit-box-shadow: 1px 1px 3px 2px #749A40; box-shadow: 1px 1px 3px 2px #749A40; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #749A40; -webkit-box-shadow: 1px 1px 3px 2px #749A40; box-shadow:1px 1px 3px 2px #749A40;">
Div content here</div>
This text has color #749A40 on black background.
This text has color #749A40 on white background.
This text has black color on #749A40 background.
This text has white color on #749A40 background.