#52682d hex color information.
RGB value of #52682d is (82,104,45)
Change page background color to #52682d
| Reset
| RGB | 82 | 104 | 45 |
|---|---|---|---|
| HSL | 0.23 | 0.40 | 0.29 |
| HSV | 82° | 57° | 41° |
| CMYK | 0.21 | 0.00 | 0.57 0.59 |
| XYZ | 8.9036 | 11.8839 | 4.3072 |
| Yxy | 11.8839 | 0.3548 | 0.4736 |
| Hunter Lab | 34.4730 | -14.2253 | 16.7232 |
| CIE-Lab | 41.0310 | -18.7432 | 30.1831 |
#52682d hex color red value is 82, green value is 104 and the blue value of its RGB is 104. Cylindrical-coordinate representations (also known as HSL) of color #52682d hue: 0.23 , saturation: 0.40 and the lightness value of 52682d is 0.29.
The process color (four color CMYK) of #52682d hex color is 0.21, 0.00, 0.57, 0.59. Web safe color of #52682d is #666633
Color #52682d contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01010010 | 01101000 | 00101101 |
| Octal | 122 | 150 | 55 |
| Decimal | 82 | 104 | 45 |
| Hexadecimal | 52 | 68 | 2D |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#52682d; }
.myforecolor {color:#52682d; }
.mybordercolor {border:3px solid #52682d; }
This sample text font color is #52682d
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#52682d">Text here</p>
This div background color is #52682d
<div style="background-color:#52682d">
Div content here</div>
This div border color is #52682d
<div style="border:3px solid #52682d">
Div here</div>
| #52682d | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(82,104,45, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #52682d;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #52682d;
-webkit-box-shadow: 1px 1px 3px 2px #52682d;
box-shadow: 1px 1px 3px 2px #52682d;
}
<p style="text-shadow: 4px 4px 2px rgba(82,104,45, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #52682d">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #52682d
<div style="-moz-box-shadow: 1px 1px 3px 2px #52682d; -webkit-box-shadow: 1px 1px 3px 2px #52682d; box-shadow: 1px 1px 3px 2px #52682d;">
Div content here</div>