HEX: #52753F
RGB: (82,117,63)
#52753F contains red, green and blue colors in about the same proportion. Web safe color of #52753F is #666633 (or #663).
#52753F color RGB value is (82,117,63).
RGB: (82,117,63) (32%,46%,25%)
R 82 of 255 = 32%
G 117 of 255 = 46%
B 63 of 255 = 25%
R + G + B ~ 34%. #52753F is quite dark color.
R + G + B =
82 + 117 + 63 = 262 (100%)
R 82 of 262 ~ 31.3%
G 117 of 262 ~ 44.66%
B 63 of 262 ~ 24.05%
#52753F color CMYK value is (30,0,46,54).
CMYK: (30,0,46,54) C30M0Y46K54 (30%,0%,46%,54%) (0.30/0.00/0.46/0.54)
52 | 75 | 3F | |
---|---|---|---|
RGB | 82 | 117 | 63 |
HSL | 99° | 30.00% | 35.29% |
HSB/HSV | 99° | 46.15% | 45.88% |
CMYK | 29.91% | 0.00% | 46.15% |
54.12% |
HEX | 52 | 75 | 3F |
Decimal | 82 | 117 | 63 |
Binary | 1010010 | 1110101 | 111111 |
Octal | 122 | 165 | 77 |
Examples of css and html codes for elements with #52753F color. Also use rgb(82,117,63) instead hex code.
.myTextColor { color: #52753F; }
<p style="color:#52753F">This sample text font color is #52753F.</p>
This text font color is #52753F.
.myBgColor { background-color: #52753F; }
<div style="background-color:#52753F">Inner text</div>
This div background color is #52753F.
.myBorderColor { border: 1px solid #52753F; }
<div style="border:3px solid #52753F">Div</div>
This div border color is #52753F.
.myOpacity80 { color: #52753F; opacity: 0.8; }
<p style="color:#52753F;opacity:0.8;">80%</p>
Text with #52753F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52753F;}
<p style="text-shadow: 3px 3px 1px #52753F">Text here.</p>
This text has shadow with #52753F color.
.textShadow {text-shadow: 3px 3px 1px #52753F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52753F, 5px 5px 20px red">Text here.</p>
This text has shadow with #52753F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52753F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52753F, Direction=45, Strength=4)">Text</p>
This text has shadow with #52753F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52753F; -webkit-box-shadow: 1px 1px 3px 2px #52753F; box-shadow: 1px 1px 3px 2px #52753F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52753F; -webkit-box-shadow: 1px 1px 3px 2px #52753F; box-shadow:1px 1px 3px 2px #52753F;">
Div content here</div>
This text has color #52753F on black background.
This text has color #52753F on white background.
This text has black color on #52753F background.
This text has white color on #52753F background.