HEX: #74AD3D
RGB: (116,173,61)
#74AD3D contains mainly red and green colors. Web safe color of #74AD3D is #669933 (or #693).
#74AD3D color RGB value is (116,173,61).
RGB: (116,173,61) (45%,68%,24%)
R 116 of 255 = 45%
G 173 of 255 = 68%
B 61 of 255 = 24%
R + G + B ~ 46%. #74AD3D is middle color (not dark and not light).
R + G + B =
116 + 173 + 61 = 350 (100%)
R 116 of 350 ~ 33.14%
G 173 of 350 ~ 49.43%
B 61 of 350 ~ 17.43%
#74AD3D color CMYK value is (33,0,65,32).
CMYK: (33,0,65,32) C33M0Y65K32 (33%,0%,65%,32%) (0.33/0.00/0.65/0.32)
74 | AD | 3D | |
---|---|---|---|
RGB | 116 | 173 | 61 |
HSL | 91° | 47.86% | 45.88% |
HSB/HSV | 91° | 64.74% | 67.84% |
CMYK | 32.95% | 0.00% | 64.74% |
32.16% |
HEX | 74 | AD | 3D |
Decimal | 116 | 173 | 61 |
Binary | 1110100 | 10101101 | 111101 |
Octal | 164 | 255 | 75 |
Examples of css and html codes for elements with #74AD3D color. Also use rgb(116,173,61) instead hex code.
.myTextColor { color: #74AD3D; }
<p style="color:#74AD3D">This sample text font color is #74AD3D.</p>
This text font color is #74AD3D.
.myBgColor { background-color: #74AD3D; }
<div style="background-color:#74AD3D">Inner text</div>
This div background color is #74AD3D.
.myBorderColor { border: 1px solid #74AD3D; }
<div style="border:3px solid #74AD3D">Div</div>
This div border color is #74AD3D.
.myOpacity80 { color: #74AD3D; opacity: 0.8; }
<p style="color:#74AD3D;opacity:0.8;">80%</p>
Text with #74AD3D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74AD3D;}
<p style="text-shadow: 3px 3px 1px #74AD3D">Text here.</p>
This text has shadow with #74AD3D color.
.textShadow {text-shadow: 3px 3px 1px #74AD3D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74AD3D, 5px 5px 20px red">Text here.</p>
This text has shadow with #74AD3D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74AD3D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74AD3D, Direction=45, Strength=4)">Text</p>
This text has shadow with #74AD3D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74AD3D; -webkit-box-shadow: 1px 1px 3px 2px #74AD3D; box-shadow: 1px 1px 3px 2px #74AD3D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74AD3D; -webkit-box-shadow: 1px 1px 3px 2px #74AD3D; box-shadow:1px 1px 3px 2px #74AD3D;">
Div content here</div>
This text has color #74AD3D on black background.
This text has color #74AD3D on white background.
This text has black color on #74AD3D background.
This text has white color on #74AD3D background.