HEX: #827078
RGB: (130,112,120)
#827078 contains red, green and blue colors in about the same proportion. Web safe color of #827078 is #996666 (or #966).
#827078 color RGB value is (130,112,120).
RGB: (130,112,120) (51%,44%,47%)
R 130 of 255 = 51%
G 112 of 255 = 44%
B 120 of 255 = 47%
R + G + B ~ 47%. #827078 is middle color (not dark and not light).
R + G + B =
130 + 112 + 120 = 362 (100%)
R 130 of 362 ~ 35.91%
G 112 of 362 ~ 30.94%
B 120 of 362 ~ 33.15%
#827078 color CMYK value is (0,14,8,49).
CMYK: (0,14,8,49) C0M14Y8K49 (0%,14%,8%,49%) (0.00/0.14/0.08/0.49)
82 | 70 | 78 | |
---|---|---|---|
RGB | 130 | 112 | 120 |
HSL | 333° | 7.44% | 47.45% |
HSB/HSV | 333° | 13.85% | 50.98% |
CMYK | 0.00% | 13.85% | 7.69% |
49.02% |
HEX | 82 | 70 | 78 |
Decimal | 130 | 112 | 120 |
Binary | 10000010 | 1110000 | 1111000 |
Octal | 202 | 160 | 170 |
Examples of css and html codes for elements with #827078 color. Also use rgb(130,112,120) instead hex code.
.myTextColor { color: #827078; }
<p style="color:#827078">This sample text font color is #827078.</p>
This text font color is #827078.
.myBgColor { background-color: #827078; }
<div style="background-color:#827078">Inner text</div>
This div background color is #827078.
.myBorderColor { border: 1px solid #827078; }
<div style="border:3px solid #827078">Div</div>
This div border color is #827078.
.myOpacity80 { color: #827078; opacity: 0.8; }
<p style="color:#827078;opacity:0.8;">80%</p>
Text with #827078 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827078;}
<p style="text-shadow: 3px 3px 1px #827078">Text here.</p>
This text has shadow with #827078 color.
.textShadow {text-shadow: 3px 3px 1px #827078, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827078, 5px 5px 20px red">Text here.</p>
This text has shadow with #827078 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827078, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827078, Direction=45, Strength=4)">Text</p>
This text has shadow with #827078 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827078; -webkit-box-shadow: 1px 1px 3px 2px #827078; box-shadow: 1px 1px 3px 2px #827078; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827078; -webkit-box-shadow: 1px 1px 3px 2px #827078; box-shadow:1px 1px 3px 2px #827078;">
Div content here</div>
This text has color #827078 on black background.
This text has color #827078 on white background.
This text has black color on #827078 background.
This text has white color on #827078 background.