HEX: #52423B
RGB: (82,66,59)
#52423B contains red, green and blue colors in about the same proportion. Web safe color of #52423B is #663333 (or #633).
#52423B color RGB value is (82,66,59).
RGB: (82,66,59) (32%,26%,23%)
R 82 of 255 = 32%
G 66 of 255 = 26%
B 59 of 255 = 23%
R + G + B ~ 27%. #52423B is quite dark color.
R + G + B =
82 + 66 + 59 = 207 (100%)
R 82 of 207 ~ 39.61%
G 66 of 207 ~ 31.88%
B 59 of 207 ~ 28.5%
#52423B color CMYK value is (0,20,28,68).
CMYK: (0,20,28,68) C0M20Y28K68 (0%,20%,28%,68%) (0.00/0.20/0.28/0.68)
52 | 42 | 3B | |
---|---|---|---|
RGB | 82 | 66 | 59 |
HSL | 18° | 16.31% | 27.65% |
HSB/HSV | 18° | 28.05% | 32.16% |
CMYK | 0.00% | 19.51% | 28.05% |
67.84% |
HEX | 52 | 42 | 3B |
Decimal | 82 | 66 | 59 |
Binary | 1010010 | 1000010 | 111011 |
Octal | 122 | 102 | 73 |
Examples of css and html codes for elements with #52423B color. Also use rgb(82,66,59) instead hex code.
.myTextColor { color: #52423B; }
<p style="color:#52423B">This sample text font color is #52423B.</p>
This text font color is #52423B.
.myBgColor { background-color: #52423B; }
<div style="background-color:#52423B">Inner text</div>
This div background color is #52423B.
.myBorderColor { border: 1px solid #52423B; }
<div style="border:3px solid #52423B">Div</div>
This div border color is #52423B.
.myOpacity80 { color: #52423B; opacity: 0.8; }
<p style="color:#52423B;opacity:0.8;">80%</p>
Text with #52423B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52423B;}
<p style="text-shadow: 3px 3px 1px #52423B">Text here.</p>
This text has shadow with #52423B color.
.textShadow {text-shadow: 3px 3px 1px #52423B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52423B, 5px 5px 20px red">Text here.</p>
This text has shadow with #52423B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52423B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52423B, Direction=45, Strength=4)">Text</p>
This text has shadow with #52423B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52423B; -webkit-box-shadow: 1px 1px 3px 2px #52423B; box-shadow: 1px 1px 3px 2px #52423B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52423B; -webkit-box-shadow: 1px 1px 3px 2px #52423B; box-shadow:1px 1px 3px 2px #52423B;">
Div content here</div>
This text has color #52423B on black background.
This text has color #52423B on white background.
This text has black color on #52423B background.
This text has white color on #52423B background.