HEX: #877FAA
RGB: (135,127,170)
#877FAA contains red, green and blue colors in about the same proportion. Web safe color of #877FAA is #996699 (or #969).
#877FAA color RGB value is (135,127,170).
RGB: (135,127,170) (53%,50%,67%)
R 135 of 255 = 53%
G 127 of 255 = 50%
B 170 of 255 = 67%
R + G + B ~ 57%. #877FAA is middle color (not dark and not light).
R + G + B =
135 + 127 + 170 = 432 (100%)
R 135 of 432 ~ 31.25%
G 127 of 432 ~ 29.4%
B 170 of 432 ~ 39.35%
#877FAA color CMYK value is (21,25,0,33).
CMYK: (21,25,0,33) C21M25Y0K33 (21%,25%,0%,33%) (0.21/0.25/0.00/0.33)
87 | 7F | AA | |
---|---|---|---|
RGB | 135 | 127 | 170 |
HSL | 251° | 20.19% | 58.24% |
HSB/HSV | 251° | 25.29% | 66.67% |
CMYK | 20.59% | 25.29% | 0.00% |
33.33% |
HEX | 87 | 7F | AA |
Decimal | 135 | 127 | 170 |
Binary | 10000111 | 1111111 | 10101010 |
Octal | 207 | 177 | 252 |
Examples of css and html codes for elements with #877FAA color. Also use rgb(135,127,170) instead hex code.
.myTextColor { color: #877FAA; }
<p style="color:#877FAA">This sample text font color is #877FAA.</p>
This text font color is #877FAA.
.myBgColor { background-color: #877FAA; }
<div style="background-color:#877FAA">Inner text</div>
This div background color is #877FAA.
.myBorderColor { border: 1px solid #877FAA; }
<div style="border:3px solid #877FAA">Div</div>
This div border color is #877FAA.
.myOpacity80 { color: #877FAA; opacity: 0.8; }
<p style="color:#877FAA;opacity:0.8;">80%</p>
Text with #877FAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #877FAA;}
<p style="text-shadow: 3px 3px 1px #877FAA">Text here.</p>
This text has shadow with #877FAA color.
.textShadow {text-shadow: 3px 3px 1px #877FAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #877FAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #877FAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#877FAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#877FAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #877FAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #877FAA; -webkit-box-shadow: 1px 1px 3px 2px #877FAA; box-shadow: 1px 1px 3px 2px #877FAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #877FAA; -webkit-box-shadow: 1px 1px 3px 2px #877FAA; box-shadow:1px 1px 3px 2px #877FAA;">
Div content here</div>
This text has color #877FAA on black background.
This text has color #877FAA on white background.
This text has black color on #877FAA background.
This text has white color on #877FAA background.