HEX: #74853D
RGB: (116,133,61)
#74853D contains mainly red and green colors. Web safe color of #74853D is #669933 (or #693).
#74853D color RGB value is (116,133,61).
RGB: (116,133,61) (45%,52%,24%)
R 116 of 255 = 45%
G 133 of 255 = 52%
B 61 of 255 = 24%
R + G + B ~ 40%. #74853D is middle color (not dark and not light).
R + G + B =
116 + 133 + 61 = 310 (100%)
R 116 of 310 ~ 37.42%
G 133 of 310 ~ 42.9%
B 61 of 310 ~ 19.68%
#74853D color CMYK value is (13,0,54,48).
CMYK: (13,0,54,48) C13M0Y54K48 (13%,0%,54%,48%) (0.13/0.00/0.54/0.48)
74 | 85 | 3D | |
---|---|---|---|
RGB | 116 | 133 | 61 |
HSL | 74° | 37.11% | 38.04% |
HSB/HSV | 74° | 54.14% | 52.16% |
CMYK | 12.78% | 0.00% | 54.14% |
47.84% |
HEX | 74 | 85 | 3D |
Decimal | 116 | 133 | 61 |
Binary | 1110100 | 10000101 | 111101 |
Octal | 164 | 205 | 75 |
Examples of css and html codes for elements with #74853D color. Also use rgb(116,133,61) instead hex code.
.myTextColor { color: #74853D; }
<p style="color:#74853D">This sample text font color is #74853D.</p>
This text font color is #74853D.
.myBgColor { background-color: #74853D; }
<div style="background-color:#74853D">Inner text</div>
This div background color is #74853D.
.myBorderColor { border: 1px solid #74853D; }
<div style="border:3px solid #74853D">Div</div>
This div border color is #74853D.
.myOpacity80 { color: #74853D; opacity: 0.8; }
<p style="color:#74853D;opacity:0.8;">80%</p>
Text with #74853D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74853D;}
<p style="text-shadow: 3px 3px 1px #74853D">Text here.</p>
This text has shadow with #74853D color.
.textShadow {text-shadow: 3px 3px 1px #74853D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74853D, 5px 5px 20px red">Text here.</p>
This text has shadow with #74853D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74853D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74853D, Direction=45, Strength=4)">Text</p>
This text has shadow with #74853D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74853D; -webkit-box-shadow: 1px 1px 3px 2px #74853D; box-shadow: 1px 1px 3px 2px #74853D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74853D; -webkit-box-shadow: 1px 1px 3px 2px #74853D; box-shadow:1px 1px 3px 2px #74853D;">
Div content here</div>
This text has color #74853D on black background.
This text has color #74853D on white background.
This text has black color on #74853D background.
This text has white color on #74853D background.