HEX: #74B54A
RGB: (116,181,74)
#74B54A contains mainly green color. Web safe color of #74B54A is #66CC33 (or #6C3).
#74B54A color RGB value is (116,181,74).
RGB: (116,181,74) (45%,71%,29%)
R 116 of 255 = 45%
G 181 of 255 = 71%
B 74 of 255 = 29%
R + G + B ~ 48%. #74B54A is middle color (not dark and not light).
R + G + B =
116 + 181 + 74 = 371 (100%)
R 116 of 371 ~ 31.27%
G 181 of 371 ~ 48.79%
B 74 of 371 ~ 19.95%
#74B54A color CMYK value is (36,0,59,29).
CMYK: (36,0,59,29) C36M0Y59K29 (36%,0%,59%,29%) (0.36/0.00/0.59/0.29)
74 | B5 | 4A | |
---|---|---|---|
RGB | 116 | 181 | 74 |
HSL | 96° | 41.96% | 50.00% |
HSB/HSV | 96° | 59.12% | 70.98% |
CMYK | 35.91% | 0.00% | 59.12% |
29.02% |
HEX | 74 | B5 | 4A |
Decimal | 116 | 181 | 74 |
Binary | 1110100 | 10110101 | 1001010 |
Octal | 164 | 265 | 112 |
Examples of css and html codes for elements with #74B54A color. Also use rgb(116,181,74) instead hex code.
.myTextColor { color: #74B54A; }
<p style="color:#74B54A">This sample text font color is #74B54A.</p>
This text font color is #74B54A.
.myBgColor { background-color: #74B54A; }
<div style="background-color:#74B54A">Inner text</div>
This div background color is #74B54A.
.myBorderColor { border: 1px solid #74B54A; }
<div style="border:3px solid #74B54A">Div</div>
This div border color is #74B54A.
.myOpacity80 { color: #74B54A; opacity: 0.8; }
<p style="color:#74B54A;opacity:0.8;">80%</p>
Text with #74B54A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74B54A;}
<p style="text-shadow: 3px 3px 1px #74B54A">Text here.</p>
This text has shadow with #74B54A color.
.textShadow {text-shadow: 3px 3px 1px #74B54A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74B54A, 5px 5px 20px red">Text here.</p>
This text has shadow with #74B54A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74B54A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74B54A, Direction=45, Strength=4)">Text</p>
This text has shadow with #74B54A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74B54A; -webkit-box-shadow: 1px 1px 3px 2px #74B54A; box-shadow: 1px 1px 3px 2px #74B54A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74B54A; -webkit-box-shadow: 1px 1px 3px 2px #74B54A; box-shadow:1px 1px 3px 2px #74B54A;">
Div content here</div>
This text has color #74B54A on black background.
This text has color #74B54A on white background.
This text has black color on #74B54A background.
This text has white color on #74B54A background.