HEX: #525833
RGB: (82,88,51)
#525833 contains red, green and blue colors in about the same proportion. Web safe color of #525833 is #666633 (or #663).
#525833 color RGB value is (82,88,51).
RGB: (82,88,51) (32%,35%,20%)
R 82 of 255 = 32%
G 88 of 255 = 35%
B 51 of 255 = 20%
R + G + B ~ 29%. #525833 is quite dark color.
R + G + B =
82 + 88 + 51 = 221 (100%)
R 82 of 221 ~ 37.1%
G 88 of 221 ~ 39.82%
B 51 of 221 ~ 23.08%
#525833 color CMYK value is (7,0,42,65).
CMYK: (7,0,42,65) C7M0Y42K65 (7%,0%,42%,65%) (0.07/0.00/0.42/0.65)
52 | 58 | 33 | |
---|---|---|---|
RGB | 82 | 88 | 51 |
HSL | 70° | 26.62% | 27.25% |
HSB/HSV | 70° | 42.05% | 34.51% |
CMYK | 6.82% | 0.00% | 42.05% |
65.49% |
HEX | 52 | 58 | 33 |
Decimal | 82 | 88 | 51 |
Binary | 1010010 | 1011000 | 110011 |
Octal | 122 | 130 | 63 |
Examples of css and html codes for elements with #525833 color. Also use rgb(82,88,51) instead hex code.
.myTextColor { color: #525833; }
<p style="color:#525833">This sample text font color is #525833.</p>
This text font color is #525833.
.myBgColor { background-color: #525833; }
<div style="background-color:#525833">Inner text</div>
This div background color is #525833.
.myBorderColor { border: 1px solid #525833; }
<div style="border:3px solid #525833">Div</div>
This div border color is #525833.
.myOpacity80 { color: #525833; opacity: 0.8; }
<p style="color:#525833;opacity:0.8;">80%</p>
Text with #525833 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #525833;}
<p style="text-shadow: 3px 3px 1px #525833">Text here.</p>
This text has shadow with #525833 color.
.textShadow {text-shadow: 3px 3px 1px #525833, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #525833, 5px 5px 20px red">Text here.</p>
This text has shadow with #525833 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#525833, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#525833, Direction=45, Strength=4)">Text</p>
This text has shadow with #525833 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #525833; -webkit-box-shadow: 1px 1px 3px 2px #525833; box-shadow: 1px 1px 3px 2px #525833; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #525833; -webkit-box-shadow: 1px 1px 3px 2px #525833; box-shadow:1px 1px 3px 2px #525833;">
Div content here</div>
This text has color #525833 on black background.
This text has color #525833 on white background.
This text has black color on #525833 background.
This text has white color on #525833 background.