HEX: #74893B
RGB: (116,137,59)
#74893B contains mainly red and green colors. Web safe color of #74893B is #669933 (or #693).
#74893B color RGB value is (116,137,59).
RGB: (116,137,59) (45%,54%,23%)
R 116 of 255 = 45%
G 137 of 255 = 54%
B 59 of 255 = 23%
R + G + B ~ 41%. #74893B is middle color (not dark and not light).
R + G + B =
116 + 137 + 59 = 312 (100%)
R 116 of 312 ~ 37.18%
G 137 of 312 ~ 43.91%
B 59 of 312 ~ 18.91%
#74893B color CMYK value is (15,0,57,46).
CMYK: (15,0,57,46) C15M0Y57K46 (15%,0%,57%,46%) (0.15/0.00/0.57/0.46)
74 | 89 | 3B | |
---|---|---|---|
RGB | 116 | 137 | 59 |
HSL | 76° | 39.80% | 38.43% |
HSB/HSV | 76° | 56.93% | 53.73% |
CMYK | 15.33% | 0.00% | 56.93% |
46.27% |
HEX | 74 | 89 | 3B |
Decimal | 116 | 137 | 59 |
Binary | 1110100 | 10001001 | 111011 |
Octal | 164 | 211 | 73 |
Examples of css and html codes for elements with #74893B color. Also use rgb(116,137,59) instead hex code.
.myTextColor { color: #74893B; }
<p style="color:#74893B">This sample text font color is #74893B.</p>
This text font color is #74893B.
.myBgColor { background-color: #74893B; }
<div style="background-color:#74893B">Inner text</div>
This div background color is #74893B.
.myBorderColor { border: 1px solid #74893B; }
<div style="border:3px solid #74893B">Div</div>
This div border color is #74893B.
.myOpacity80 { color: #74893B; opacity: 0.8; }
<p style="color:#74893B;opacity:0.8;">80%</p>
Text with #74893B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74893B;}
<p style="text-shadow: 3px 3px 1px #74893B">Text here.</p>
This text has shadow with #74893B color.
.textShadow {text-shadow: 3px 3px 1px #74893B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74893B, 5px 5px 20px red">Text here.</p>
This text has shadow with #74893B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74893B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74893B, Direction=45, Strength=4)">Text</p>
This text has shadow with #74893B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74893B; -webkit-box-shadow: 1px 1px 3px 2px #74893B; box-shadow: 1px 1px 3px 2px #74893B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74893B; -webkit-box-shadow: 1px 1px 3px 2px #74893B; box-shadow:1px 1px 3px 2px #74893B;">
Div content here</div>
This text has color #74893B on black background.
This text has color #74893B on white background.
This text has black color on #74893B background.
This text has white color on #74893B background.