HEX: #52494F
RGB: (82,73,79)
#52494F contains red, green and blue colors in about the same proportion. Web safe color of #52494F is #663366 (or #636).
#52494F color RGB value is (82,73,79).
RGB: (82,73,79) (32%,29%,31%)
R 82 of 255 = 32%
G 73 of 255 = 29%
B 79 of 255 = 31%
R + G + B ~ 31%. #52494F is quite dark color.
R + G + B =
82 + 73 + 79 = 234 (100%)
R 82 of 234 ~ 35.04%
G 73 of 234 ~ 31.2%
B 79 of 234 ~ 33.76%
#52494F color CMYK value is (0,11,4,68).
CMYK: (0,11,4,68) C0M11Y4K68 (0%,11%,4%,68%) (0.00/0.11/0.04/0.68)
52 | 49 | 4F | |
---|---|---|---|
RGB | 82 | 73 | 79 |
HSL | 320° | 5.81% | 30.39% |
HSB/HSV | 320° | 10.98% | 32.16% |
CMYK | 0.00% | 10.98% | 3.66% |
67.84% |
HEX | 52 | 49 | 4F |
Decimal | 82 | 73 | 79 |
Binary | 1010010 | 1001001 | 1001111 |
Octal | 122 | 111 | 117 |
Examples of css and html codes for elements with #52494F color. Also use rgb(82,73,79) instead hex code.
.myTextColor { color: #52494F; }
<p style="color:#52494F">This sample text font color is #52494F.</p>
This text font color is #52494F.
.myBgColor { background-color: #52494F; }
<div style="background-color:#52494F">Inner text</div>
This div background color is #52494F.
.myBorderColor { border: 1px solid #52494F; }
<div style="border:3px solid #52494F">Div</div>
This div border color is #52494F.
.myOpacity80 { color: #52494F; opacity: 0.8; }
<p style="color:#52494F;opacity:0.8;">80%</p>
Text with #52494F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52494F;}
<p style="text-shadow: 3px 3px 1px #52494F">Text here.</p>
This text has shadow with #52494F color.
.textShadow {text-shadow: 3px 3px 1px #52494F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52494F, 5px 5px 20px red">Text here.</p>
This text has shadow with #52494F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52494F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52494F, Direction=45, Strength=4)">Text</p>
This text has shadow with #52494F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52494F; -webkit-box-shadow: 1px 1px 3px 2px #52494F; box-shadow: 1px 1px 3px 2px #52494F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52494F; -webkit-box-shadow: 1px 1px 3px 2px #52494F; box-shadow:1px 1px 3px 2px #52494F;">
Div content here</div>
This text has color #52494F on black background.
This text has color #52494F on white background.
This text has black color on #52494F background.
This text has white color on #52494F background.