HEX: #82738B
RGB: (130,115,139)
#82738B contains red, green and blue colors in about the same proportion. Web safe color of #82738B is #996699 (or #969).
#82738B color RGB value is (130,115,139).
RGB: (130,115,139) (51%,45%,55%)
R 130 of 255 = 51%
G 115 of 255 = 45%
B 139 of 255 = 55%
R + G + B ~ 50%. #82738B is middle color (not dark and not light).
R + G + B =
130 + 115 + 139 = 384 (100%)
R 130 of 384 ~ 33.85%
G 115 of 384 ~ 29.95%
B 139 of 384 ~ 36.2%
#82738B color CMYK value is (6,17,0,45).
CMYK: (6,17,0,45) C6M17Y0K45 (6%,17%,0%,45%) (0.06/0.17/0.00/0.45)
82 | 73 | 8B | |
---|---|---|---|
RGB | 130 | 115 | 139 |
HSL | 278° | 9.45% | 49.80% |
HSB/HSV | 278° | 17.27% | 54.51% |
CMYK | 6.47% | 17.27% | 0.00% |
45.49% |
HEX | 82 | 73 | 8B |
Decimal | 130 | 115 | 139 |
Binary | 10000010 | 1110011 | 10001011 |
Octal | 202 | 163 | 213 |
Examples of css and html codes for elements with #82738B color. Also use rgb(130,115,139) instead hex code.
.myTextColor { color: #82738B; }
<p style="color:#82738B">This sample text font color is #82738B.</p>
This text font color is #82738B.
.myBgColor { background-color: #82738B; }
<div style="background-color:#82738B">Inner text</div>
This div background color is #82738B.
.myBorderColor { border: 1px solid #82738B; }
<div style="border:3px solid #82738B">Div</div>
This div border color is #82738B.
.myOpacity80 { color: #82738B; opacity: 0.8; }
<p style="color:#82738B;opacity:0.8;">80%</p>
Text with #82738B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #82738B;}
<p style="text-shadow: 3px 3px 1px #82738B">Text here.</p>
This text has shadow with #82738B color.
.textShadow {text-shadow: 3px 3px 1px #82738B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #82738B, 5px 5px 20px red">Text here.</p>
This text has shadow with #82738B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#82738B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#82738B, Direction=45, Strength=4)">Text</p>
This text has shadow with #82738B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #82738B; -webkit-box-shadow: 1px 1px 3px 2px #82738B; box-shadow: 1px 1px 3px 2px #82738B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #82738B; -webkit-box-shadow: 1px 1px 3px 2px #82738B; box-shadow:1px 1px 3px 2px #82738B;">
Div content here</div>
This text has color #82738B on black background.
This text has color #82738B on white background.
This text has black color on #82738B background.
This text has white color on #82738B background.