HEX: #828085
RGB: (130,128,133)
#828085 contains red, green and blue colors in about the same proportion. Web safe color of #828085 is #996699 (or #969).
#828085 color RGB value is (130,128,133).
RGB: (130,128,133) (51%,50%,52%)
R 130 of 255 = 51%
G 128 of 255 = 50%
B 133 of 255 = 52%
R + G + B ~ 51%. #828085 is middle color (not dark and not light).
R + G + B =
130 + 128 + 133 = 391 (100%)
R 130 of 391 ~ 33.25%
G 128 of 391 ~ 32.74%
B 133 of 391 ~ 34.02%
#828085 color CMYK value is (2,4,0,48).
CMYK: (2,4,0,48) C2M4Y0K48 (2%,4%,0%,48%) (0.02/0.04/0.00/0.48)
82 | 80 | 85 | |
---|---|---|---|
RGB | 130 | 128 | 133 |
HSL | 264° | 2.01% | 51.18% |
HSB/HSV | 264° | 3.76% | 52.16% |
CMYK | 2.26% | 3.76% | 0.00% |
47.84% |
HEX | 82 | 80 | 85 |
Decimal | 130 | 128 | 133 |
Binary | 10000010 | 10000000 | 10000101 |
Octal | 202 | 200 | 205 |
Examples of css and html codes for elements with #828085 color. Also use rgb(130,128,133) instead hex code.
.myTextColor { color: #828085; }
<p style="color:#828085">This sample text font color is #828085.</p>
This text font color is #828085.
.myBgColor { background-color: #828085; }
<div style="background-color:#828085">Inner text</div>
This div background color is #828085.
.myBorderColor { border: 1px solid #828085; }
<div style="border:3px solid #828085">Div</div>
This div border color is #828085.
.myOpacity80 { color: #828085; opacity: 0.8; }
<p style="color:#828085;opacity:0.8;">80%</p>
Text with #828085 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #828085;}
<p style="text-shadow: 3px 3px 1px #828085">Text here.</p>
This text has shadow with #828085 color.
.textShadow {text-shadow: 3px 3px 1px #828085, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #828085, 5px 5px 20px red">Text here.</p>
This text has shadow with #828085 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#828085, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#828085, Direction=45, Strength=4)">Text</p>
This text has shadow with #828085 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #828085; -webkit-box-shadow: 1px 1px 3px 2px #828085; box-shadow: 1px 1px 3px 2px #828085; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #828085; -webkit-box-shadow: 1px 1px 3px 2px #828085; box-shadow:1px 1px 3px 2px #828085;">
Div content here</div>
This text has color #828085 on black background.
This text has color #828085 on white background.
This text has black color on #828085 background.
This text has white color on #828085 background.