HEX: #52484D
RGB: (82,72,77)
#52484D contains red, green and blue colors in about the same proportion. Web safe color of #52484D is #663333 (or #633).
#52484D color RGB value is (82,72,77).
RGB: (82,72,77) (32%,28%,30%)
R 82 of 255 = 32%
G 72 of 255 = 28%
B 77 of 255 = 30%
R + G + B ~ 30%. #52484D is quite dark color.
R + G + B =
82 + 72 + 77 = 231 (100%)
R 82 of 231 ~ 35.5%
G 72 of 231 ~ 31.17%
B 77 of 231 ~ 33.33%
#52484D color CMYK value is (0,12,6,68).
CMYK: (0,12,6,68) C0M12Y6K68 (0%,12%,6%,68%) (0.00/0.12/0.06/0.68)
52 | 48 | 4D | |
---|---|---|---|
RGB | 82 | 72 | 77 |
HSL | 330° | 6.49% | 30.20% |
HSB/HSV | 330° | 12.20% | 32.16% |
CMYK | 0.00% | 12.20% | 6.10% |
67.84% |
HEX | 52 | 48 | 4D |
Decimal | 82 | 72 | 77 |
Binary | 1010010 | 1001000 | 1001101 |
Octal | 122 | 110 | 115 |
Examples of css and html codes for elements with #52484D color. Also use rgb(82,72,77) instead hex code.
.myTextColor { color: #52484D; }
<p style="color:#52484D">This sample text font color is #52484D.</p>
This text font color is #52484D.
.myBgColor { background-color: #52484D; }
<div style="background-color:#52484D">Inner text</div>
This div background color is #52484D.
.myBorderColor { border: 1px solid #52484D; }
<div style="border:3px solid #52484D">Div</div>
This div border color is #52484D.
.myOpacity80 { color: #52484D; opacity: 0.8; }
<p style="color:#52484D;opacity:0.8;">80%</p>
Text with #52484D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52484D;}
<p style="text-shadow: 3px 3px 1px #52484D">Text here.</p>
This text has shadow with #52484D color.
.textShadow {text-shadow: 3px 3px 1px #52484D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52484D, 5px 5px 20px red">Text here.</p>
This text has shadow with #52484D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52484D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52484D, Direction=45, Strength=4)">Text</p>
This text has shadow with #52484D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52484D; -webkit-box-shadow: 1px 1px 3px 2px #52484D; box-shadow: 1px 1px 3px 2px #52484D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52484D; -webkit-box-shadow: 1px 1px 3px 2px #52484D; box-shadow:1px 1px 3px 2px #52484D;">
Div content here</div>
This text has color #52484D on black background.
This text has color #52484D on white background.
This text has black color on #52484D background.
This text has white color on #52484D background.