HEX: #82494D
RGB: (130,73,77)
#82494D contains red, green and blue colors in about the same proportion. Web safe color of #82494D is #993333 (or #933).
#82494D color RGB value is (130,73,77).
RGB: (130,73,77) (51%,29%,30%)
R 130 of 255 = 51%
G 73 of 255 = 29%
B 77 of 255 = 30%
R + G + B ~ 37%. #82494D is quite dark color.
R + G + B =
130 + 73 + 77 = 280 (100%)
R 130 of 280 ~ 46.43%
G 73 of 280 ~ 26.07%
B 77 of 280 ~ 27.5%
#82494D color CMYK value is (0,44,41,49).
CMYK: (0,44,41,49) C0M44Y41K49 (0%,44%,41%,49%) (0.00/0.44/0.41/0.49)
82 | 49 | 4D | |
---|---|---|---|
RGB | 130 | 73 | 77 |
HSL | 356° | 28.08% | 39.80% |
HSB/HSV | 356° | 43.85% | 50.98% |
CMYK | 0.00% | 43.85% | 40.77% |
49.02% |
HEX | 82 | 49 | 4D |
Decimal | 130 | 73 | 77 |
Binary | 10000010 | 1001001 | 1001101 |
Octal | 202 | 111 | 115 |
Examples of css and html codes for elements with #82494D color. Also use rgb(130,73,77) instead hex code.
.myTextColor { color: #82494D; }
<p style="color:#82494D">This sample text font color is #82494D.</p>
This text font color is #82494D.
.myBgColor { background-color: #82494D; }
<div style="background-color:#82494D">Inner text</div>
This div background color is #82494D.
.myBorderColor { border: 1px solid #82494D; }
<div style="border:3px solid #82494D">Div</div>
This div border color is #82494D.
.myOpacity80 { color: #82494D; opacity: 0.8; }
<p style="color:#82494D;opacity:0.8;">80%</p>
Text with #82494D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #82494D;}
<p style="text-shadow: 3px 3px 1px #82494D">Text here.</p>
This text has shadow with #82494D color.
.textShadow {text-shadow: 3px 3px 1px #82494D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #82494D, 5px 5px 20px red">Text here.</p>
This text has shadow with #82494D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#82494D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#82494D, Direction=45, Strength=4)">Text</p>
This text has shadow with #82494D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #82494D; -webkit-box-shadow: 1px 1px 3px 2px #82494D; box-shadow: 1px 1px 3px 2px #82494D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #82494D; -webkit-box-shadow: 1px 1px 3px 2px #82494D; box-shadow:1px 1px 3px 2px #82494D;">
Div content here</div>
This text has color #82494D on black background.
This text has color #82494D on white background.
This text has black color on #82494D background.
This text has white color on #82494D background.