HEX: #52825E
RGB: (82,130,94)
#52825E contains red, green and blue colors in about the same proportion. Web safe color of #52825E is #669966 (or #696).
#52825E color RGB value is (82,130,94).
RGB: (82,130,94) (32%,51%,37%)
R 82 of 255 = 32%
G 130 of 255 = 51%
B 94 of 255 = 37%
R + G + B ~ 40%. #52825E is middle color (not dark and not light).
R + G + B =
82 + 130 + 94 = 306 (100%)
R 82 of 306 ~ 26.8%
G 130 of 306 ~ 42.48%
B 94 of 306 ~ 30.72%
#52825E color CMYK value is (37,0,28,49).
CMYK: (37,0,28,49) C37M0Y28K49 (37%,0%,28%,49%) (0.37/0.00/0.28/0.49)
52 | 82 | 5E | |
---|---|---|---|
RGB | 82 | 130 | 94 |
HSL | 135° | 22.64% | 41.57% |
HSB/HSV | 135° | 36.92% | 50.98% |
CMYK | 36.92% | 0.00% | 27.69% |
49.02% |
HEX | 52 | 82 | 5E |
Decimal | 82 | 130 | 94 |
Binary | 1010010 | 10000010 | 1011110 |
Octal | 122 | 202 | 136 |
Examples of css and html codes for elements with #52825E color. Also use rgb(82,130,94) instead hex code.
.myTextColor { color: #52825E; }
<p style="color:#52825E">This sample text font color is #52825E.</p>
This text font color is #52825E.
.myBgColor { background-color: #52825E; }
<div style="background-color:#52825E">Inner text</div>
This div background color is #52825E.
.myBorderColor { border: 1px solid #52825E; }
<div style="border:3px solid #52825E">Div</div>
This div border color is #52825E.
.myOpacity80 { color: #52825E; opacity: 0.8; }
<p style="color:#52825E;opacity:0.8;">80%</p>
Text with #52825E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52825E;}
<p style="text-shadow: 3px 3px 1px #52825E">Text here.</p>
This text has shadow with #52825E color.
.textShadow {text-shadow: 3px 3px 1px #52825E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52825E, 5px 5px 20px red">Text here.</p>
This text has shadow with #52825E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52825E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52825E, Direction=45, Strength=4)">Text</p>
This text has shadow with #52825E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52825E; -webkit-box-shadow: 1px 1px 3px 2px #52825E; box-shadow: 1px 1px 3px 2px #52825E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52825E; -webkit-box-shadow: 1px 1px 3px 2px #52825E; box-shadow:1px 1px 3px 2px #52825E;">
Div content here</div>
This text has color #52825E on black background.
This text has color #52825E on white background.
This text has black color on #52825E background.
This text has white color on #52825E background.