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