HEX: #827B8A
RGB: (130,123,138)
#827B8A contains red, green and blue colors in about the same proportion. Web safe color of #827B8A is #996699 (or #969).
#827B8A color RGB value is (130,123,138).
RGB: (130,123,138) (51%,48%,54%)
R 130 of 255 = 51%
G 123 of 255 = 48%
B 138 of 255 = 54%
R + G + B ~ 51%. #827B8A is middle color (not dark and not light).
R + G + B =
130 + 123 + 138 = 391 (100%)
R 130 of 391 ~ 33.25%
G 123 of 391 ~ 31.46%
B 138 of 391 ~ 35.29%
#827B8A color CMYK value is (6,11,0,46).
CMYK: (6,11,0,46) C6M11Y0K46 (6%,11%,0%,46%) (0.06/0.11/0.00/0.46)
82 | 7B | 8A | |
---|---|---|---|
RGB | 130 | 123 | 138 |
HSL | 268° | 6.02% | 51.18% |
HSB/HSV | 268° | 10.87% | 54.12% |
CMYK | 5.80% | 10.87% | 0.00% |
45.88% |
HEX | 82 | 7B | 8A |
Decimal | 130 | 123 | 138 |
Binary | 10000010 | 1111011 | 10001010 |
Octal | 202 | 173 | 212 |
Examples of css and html codes for elements with #827B8A color. Also use rgb(130,123,138) instead hex code.
.myTextColor { color: #827B8A; }
<p style="color:#827B8A">This sample text font color is #827B8A.</p>
This text font color is #827B8A.
.myBgColor { background-color: #827B8A; }
<div style="background-color:#827B8A">Inner text</div>
This div background color is #827B8A.
.myBorderColor { border: 1px solid #827B8A; }
<div style="border:3px solid #827B8A">Div</div>
This div border color is #827B8A.
.myOpacity80 { color: #827B8A; opacity: 0.8; }
<p style="color:#827B8A;opacity:0.8;">80%</p>
Text with #827B8A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827B8A;}
<p style="text-shadow: 3px 3px 1px #827B8A">Text here.</p>
This text has shadow with #827B8A color.
.textShadow {text-shadow: 3px 3px 1px #827B8A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827B8A, 5px 5px 20px red">Text here.</p>
This text has shadow with #827B8A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827B8A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827B8A, Direction=45, Strength=4)">Text</p>
This text has shadow with #827B8A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827B8A; -webkit-box-shadow: 1px 1px 3px 2px #827B8A; box-shadow: 1px 1px 3px 2px #827B8A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827B8A; -webkit-box-shadow: 1px 1px 3px 2px #827B8A; box-shadow:1px 1px 3px 2px #827B8A;">
Div content here</div>
This text has color #827B8A on black background.
This text has color #827B8A on white background.
This text has black color on #827B8A background.
This text has white color on #827B8A background.