HEX: #848748
RGB: (132,135,72)
#848748 contains mainly red and green colors. Web safe color of #848748 is #999933 (or #993).
#848748 color RGB value is (132,135,72).
RGB: (132,135,72) (52%,53%,28%)
R 132 of 255 = 52%
G 135 of 255 = 53%
B 72 of 255 = 28%
R + G + B ~ 44%. #848748 is middle color (not dark and not light).
R + G + B =
132 + 135 + 72 = 339 (100%)
R 132 of 339 ~ 38.94%
G 135 of 339 ~ 39.82%
B 72 of 339 ~ 21.24%
#848748 color CMYK value is (2,0,47,47).
CMYK: (2,0,47,47) C2M0Y47K47 (2%,0%,47%,47%) (0.02/0.00/0.47/0.47)
84 | 87 | 48 | |
---|---|---|---|
RGB | 132 | 135 | 72 |
HSL | 63° | 30.43% | 40.59% |
HSB/HSV | 63° | 46.67% | 52.94% |
CMYK | 2.22% | 0.00% | 46.67% |
47.06% |
HEX | 84 | 87 | 48 |
Decimal | 132 | 135 | 72 |
Binary | 10000100 | 10000111 | 1001000 |
Octal | 204 | 207 | 110 |
Examples of css and html codes for elements with #848748 color. Also use rgb(132,135,72) instead hex code.
.myTextColor { color: #848748; }
<p style="color:#848748">This sample text font color is #848748.</p>
This text font color is #848748.
.myBgColor { background-color: #848748; }
<div style="background-color:#848748">Inner text</div>
This div background color is #848748.
.myBorderColor { border: 1px solid #848748; }
<div style="border:3px solid #848748">Div</div>
This div border color is #848748.
.myOpacity80 { color: #848748; opacity: 0.8; }
<p style="color:#848748;opacity:0.8;">80%</p>
Text with #848748 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #848748;}
<p style="text-shadow: 3px 3px 1px #848748">Text here.</p>
This text has shadow with #848748 color.
.textShadow {text-shadow: 3px 3px 1px #848748, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #848748, 5px 5px 20px red">Text here.</p>
This text has shadow with #848748 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#848748, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#848748, Direction=45, Strength=4)">Text</p>
This text has shadow with #848748 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #848748; -webkit-box-shadow: 1px 1px 3px 2px #848748; box-shadow: 1px 1px 3px 2px #848748; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #848748; -webkit-box-shadow: 1px 1px 3px 2px #848748; box-shadow:1px 1px 3px 2px #848748;">
Div content here</div>
This text has color #848748 on black background.
This text has color #848748 on white background.
This text has black color on #848748 background.
This text has white color on #848748 background.