HEX: #827FAF
RGB: (130,127,175)
#827FAF contains red, green and blue colors in about the same proportion. Web safe color of #827FAF is #996699 (or #969).
#827FAF color RGB value is (130,127,175).
RGB: (130,127,175) (51%,50%,69%)
R 130 of 255 = 51%
G 127 of 255 = 50%
B 175 of 255 = 69%
R + G + B ~ 57%. #827FAF is middle color (not dark and not light).
R + G + B =
130 + 127 + 175 = 432 (100%)
R 130 of 432 ~ 30.09%
G 127 of 432 ~ 29.4%
B 175 of 432 ~ 40.51%
#827FAF color CMYK value is (26,27,0,31).
CMYK: (26,27,0,31) C26M27Y0K31 (26%,27%,0%,31%) (0.26/0.27/0.00/0.31)
82 | 7F | AF | |
---|---|---|---|
RGB | 130 | 127 | 175 |
HSL | 244° | 23.08% | 59.22% |
HSB/HSV | 244° | 27.43% | 68.63% |
CMYK | 25.71% | 27.43% | 0.00% |
31.37% |
HEX | 82 | 7F | AF |
Decimal | 130 | 127 | 175 |
Binary | 10000010 | 1111111 | 10101111 |
Octal | 202 | 177 | 257 |
Examples of css and html codes for elements with #827FAF color. Also use rgb(130,127,175) instead hex code.
.myTextColor { color: #827FAF; }
<p style="color:#827FAF">This sample text font color is #827FAF.</p>
This text font color is #827FAF.
.myBgColor { background-color: #827FAF; }
<div style="background-color:#827FAF">Inner text</div>
This div background color is #827FAF.
.myBorderColor { border: 1px solid #827FAF; }
<div style="border:3px solid #827FAF">Div</div>
This div border color is #827FAF.
.myOpacity80 { color: #827FAF; opacity: 0.8; }
<p style="color:#827FAF;opacity:0.8;">80%</p>
Text with #827FAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827FAF;}
<p style="text-shadow: 3px 3px 1px #827FAF">Text here.</p>
This text has shadow with #827FAF color.
.textShadow {text-shadow: 3px 3px 1px #827FAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827FAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #827FAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827FAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827FAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #827FAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827FAF; -webkit-box-shadow: 1px 1px 3px 2px #827FAF; box-shadow: 1px 1px 3px 2px #827FAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827FAF; -webkit-box-shadow: 1px 1px 3px 2px #827FAF; box-shadow:1px 1px 3px 2px #827FAF;">
Div content here</div>
This text has color #827FAF on black background.
This text has color #827FAF on white background.
This text has black color on #827FAF background.
This text has white color on #827FAF background.