HEX: #52493D
RGB: (82,73,61)
#52493D contains red, green and blue colors in about the same proportion. Web safe color of #52493D is #663333 (or #633).
#52493D color RGB value is (82,73,61).
RGB: (82,73,61) (32%,29%,24%)
R 82 of 255 = 32%
G 73 of 255 = 29%
B 61 of 255 = 24%
R + G + B ~ 28%. #52493D is quite dark color.
R + G + B =
82 + 73 + 61 = 216 (100%)
R 82 of 216 ~ 37.96%
G 73 of 216 ~ 33.8%
B 61 of 216 ~ 28.24%
#52493D color CMYK value is (0,11,26,68).
CMYK: (0,11,26,68) C0M11Y26K68 (0%,11%,26%,68%) (0.00/0.11/0.26/0.68)
52 | 49 | 3D | |
---|---|---|---|
RGB | 82 | 73 | 61 |
HSL | 34° | 14.69% | 28.04% |
HSB/HSV | 34° | 25.61% | 32.16% |
CMYK | 0.00% | 10.98% | 25.61% |
67.84% |
HEX | 52 | 49 | 3D |
Decimal | 82 | 73 | 61 |
Binary | 1010010 | 1001001 | 111101 |
Octal | 122 | 111 | 75 |
Examples of css and html codes for elements with #52493D color. Also use rgb(82,73,61) instead hex code.
.myTextColor { color: #52493D; }
<p style="color:#52493D">This sample text font color is #52493D.</p>
This text font color is #52493D.
.myBgColor { background-color: #52493D; }
<div style="background-color:#52493D">Inner text</div>
This div background color is #52493D.
.myBorderColor { border: 1px solid #52493D; }
<div style="border:3px solid #52493D">Div</div>
This div border color is #52493D.
.myOpacity80 { color: #52493D; opacity: 0.8; }
<p style="color:#52493D;opacity:0.8;">80%</p>
Text with #52493D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52493D;}
<p style="text-shadow: 3px 3px 1px #52493D">Text here.</p>
This text has shadow with #52493D color.
.textShadow {text-shadow: 3px 3px 1px #52493D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52493D, 5px 5px 20px red">Text here.</p>
This text has shadow with #52493D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52493D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52493D, Direction=45, Strength=4)">Text</p>
This text has shadow with #52493D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52493D; -webkit-box-shadow: 1px 1px 3px 2px #52493D; box-shadow: 1px 1px 3px 2px #52493D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52493D; -webkit-box-shadow: 1px 1px 3px 2px #52493D; box-shadow:1px 1px 3px 2px #52493D;">
Div content here</div>
This text has color #52493D on black background.
This text has color #52493D on white background.
This text has black color on #52493D background.
This text has white color on #52493D background.