HEX: #A87BAE
RGB: (168,123,174)
#A87BAE contains red, green and blue colors in about the same proportion. Web safe color of #A87BAE is #996699 (or #969).
#A87BAE color RGB value is (168,123,174).
RGB: (168,123,174) (66%,48%,68%)
R 168 of 255 = 66%
G 123 of 255 = 48%
B 174 of 255 = 68%
R + G + B ~ 61%. #A87BAE is quite light color.
R + G + B =
168 + 123 + 174 = 465 (100%)
R 168 of 465 ~ 36.13%
G 123 of 465 ~ 26.45%
B 174 of 465 ~ 37.42%
#A87BAE color CMYK value is (3,29,0,32).
CMYK: (3,29,0,32) C3M29Y0K32 (3%,29%,0%,32%) (0.03/0.29/0.00/0.32)
A8 | 7B | AE | |
---|---|---|---|
RGB | 168 | 123 | 174 |
HSL | 293° | 23.94% | 58.24% |
HSB/HSV | 293° | 29.31% | 68.24% |
CMYK | 3.45% | 29.31% | 0.00% |
31.76% |
HEX | A8 | 7B | AE |
Decimal | 168 | 123 | 174 |
Binary | 10101000 | 1111011 | 10101110 |
Octal | 250 | 173 | 256 |
Examples of css and html codes for elements with #A87BAE color. Also use rgb(168,123,174) instead hex code.
.myTextColor { color: #A87BAE; }
<p style="color:#A87BAE">This sample text font color is #A87BAE.</p>
This text font color is #A87BAE.
.myBgColor { background-color: #A87BAE; }
<div style="background-color:#A87BAE">Inner text</div>
This div background color is #A87BAE.
.myBorderColor { border: 1px solid #A87BAE; }
<div style="border:3px solid #A87BAE">Div</div>
This div border color is #A87BAE.
.myOpacity80 { color: #A87BAE; opacity: 0.8; }
<p style="color:#A87BAE;opacity:0.8;">80%</p>
Text with #A87BAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A87BAE;}
<p style="text-shadow: 3px 3px 1px #A87BAE">Text here.</p>
This text has shadow with #A87BAE color.
.textShadow {text-shadow: 3px 3px 1px #A87BAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A87BAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A87BAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A87BAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A87BAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A87BAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A87BAE; -webkit-box-shadow: 1px 1px 3px 2px #A87BAE; box-shadow: 1px 1px 3px 2px #A87BAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A87BAE; -webkit-box-shadow: 1px 1px 3px 2px #A87BAE; box-shadow:1px 1px 3px 2px #A87BAE;">
Div content here</div>
This text has color #A87BAE on black background.
This text has color #A87BAE on white background.
This text has black color on #A87BAE background.
This text has white color on #A87BAE background.