HEX: #AA5CBB
RGB: (170,92,187)
#AA5CBB contains mainly red and blue colors. Web safe color of #AA5CBB is #9966CC (or #96C).
#AA5CBB color RGB value is (170,92,187).
RGB: (170,92,187) (67%,36%,73%)
R 170 of 255 = 67%
G 92 of 255 = 36%
B 187 of 255 = 73%
R + G + B ~ 59%. #AA5CBB is middle color (not dark and not light).
R + G + B =
170 + 92 + 187 = 449 (100%)
R 170 of 449 ~ 37.86%
G 92 of 449 ~ 20.49%
B 187 of 449 ~ 41.65%
#AA5CBB color CMYK value is (9,51,0,27).
CMYK: (9,51,0,27) C9M51Y0K27 (9%,51%,0%,27%) (0.09/0.51/0.00/0.27)
AA | 5C | BB | |
---|---|---|---|
RGB | 170 | 92 | 187 |
HSL | 289° | 41.13% | 54.71% |
HSB/HSV | 289° | 50.80% | 73.33% |
CMYK | 9.09% | 50.80% | 0.00% |
26.67% |
HEX | AA | 5C | BB |
Decimal | 170 | 92 | 187 |
Binary | 10101010 | 1011100 | 10111011 |
Octal | 252 | 134 | 273 |
Examples of css and html codes for elements with #AA5CBB color. Also use rgb(170,92,187) instead hex code.
.myTextColor { color: #AA5CBB; }
<p style="color:#AA5CBB">This sample text font color is #AA5CBB.</p>
This text font color is #AA5CBB.
.myBgColor { background-color: #AA5CBB; }
<div style="background-color:#AA5CBB">Inner text</div>
This div background color is #AA5CBB.
.myBorderColor { border: 1px solid #AA5CBB; }
<div style="border:3px solid #AA5CBB">Div</div>
This div border color is #AA5CBB.
.myOpacity80 { color: #AA5CBB; opacity: 0.8; }
<p style="color:#AA5CBB;opacity:0.8;">80%</p>
Text with #AA5CBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA5CBB;}
<p style="text-shadow: 3px 3px 1px #AA5CBB">Text here.</p>
This text has shadow with #AA5CBB color.
.textShadow {text-shadow: 3px 3px 1px #AA5CBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA5CBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA5CBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA5CBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA5CBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA5CBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA5CBB; -webkit-box-shadow: 1px 1px 3px 2px #AA5CBB; box-shadow: 1px 1px 3px 2px #AA5CBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA5CBB; -webkit-box-shadow: 1px 1px 3px 2px #AA5CBB; box-shadow:1px 1px 3px 2px #AA5CBB;">
Div content here</div>
This text has color #AA5CBB on black background.
This text has color #AA5CBB on white background.
This text has black color on #AA5CBB background.
This text has white color on #AA5CBB background.