HEX: #A55ABB
RGB: (165,90,187)
#A55ABB contains mainly red and blue colors. Web safe color of #A55ABB is #9966CC (or #96C).
#A55ABB color RGB value is (165,90,187).
RGB: (165,90,187) (65%,35%,73%)
R 165 of 255 = 65%
G 90 of 255 = 35%
B 187 of 255 = 73%
R + G + B ~ 58%. #A55ABB is middle color (not dark and not light).
R + G + B =
165 + 90 + 187 = 442 (100%)
R 165 of 442 ~ 37.33%
G 90 of 442 ~ 20.36%
B 187 of 442 ~ 42.31%
#A55ABB color CMYK value is (12,52,0,27).
CMYK: (12,52,0,27) C12M52Y0K27 (12%,52%,0%,27%) (0.12/0.52/0.00/0.27)
A5 | 5A | BB | |
---|---|---|---|
RGB | 165 | 90 | 187 |
HSL | 286° | 41.63% | 54.31% |
HSB/HSV | 286° | 51.87% | 73.33% |
CMYK | 11.76% | 51.87% | 0.00% |
26.67% |
HEX | A5 | 5A | BB |
Decimal | 165 | 90 | 187 |
Binary | 10100101 | 1011010 | 10111011 |
Octal | 245 | 132 | 273 |
Examples of css and html codes for elements with #A55ABB color. Also use rgb(165,90,187) instead hex code.
.myTextColor { color: #A55ABB; }
<p style="color:#A55ABB">This sample text font color is #A55ABB.</p>
This text font color is #A55ABB.
.myBgColor { background-color: #A55ABB; }
<div style="background-color:#A55ABB">Inner text</div>
This div background color is #A55ABB.
.myBorderColor { border: 1px solid #A55ABB; }
<div style="border:3px solid #A55ABB">Div</div>
This div border color is #A55ABB.
.myOpacity80 { color: #A55ABB; opacity: 0.8; }
<p style="color:#A55ABB;opacity:0.8;">80%</p>
Text with #A55ABB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A55ABB;}
<p style="text-shadow: 3px 3px 1px #A55ABB">Text here.</p>
This text has shadow with #A55ABB color.
.textShadow {text-shadow: 3px 3px 1px #A55ABB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A55ABB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A55ABB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A55ABB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A55ABB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A55ABB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A55ABB; -webkit-box-shadow: 1px 1px 3px 2px #A55ABB; box-shadow: 1px 1px 3px 2px #A55ABB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A55ABB; -webkit-box-shadow: 1px 1px 3px 2px #A55ABB; box-shadow:1px 1px 3px 2px #A55ABB;">
Div content here</div>
This text has color #A55ABB on black background.
This text has color #A55ABB on white background.
This text has black color on #A55ABB background.
This text has white color on #A55ABB background.