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