HEX: #AB64BD
RGB: (171,100,189)
#AB64BD contains mainly red and blue colors. Web safe color of #AB64BD is #9966CC (or #96C).
#AB64BD color RGB value is (171,100,189).
RGB: (171,100,189) (67%,39%,74%)
R 171 of 255 = 67%
G 100 of 255 = 39%
B 189 of 255 = 74%
R + G + B ~ 60%. #AB64BD is middle color (not dark and not light).
R + G + B =
171 + 100 + 189 = 460 (100%)
R 171 of 460 ~ 37.17%
G 100 of 460 ~ 21.74%
B 189 of 460 ~ 41.09%
#AB64BD color CMYK value is (10,47,0,26).
CMYK: (10,47,0,26) C10M47Y0K26 (10%,47%,0%,26%) (0.10/0.47/0.00/0.26)
AB | 64 | BD | |
---|---|---|---|
RGB | 171 | 100 | 189 |
HSL | 288° | 40.27% | 56.67% |
HSB/HSV | 288° | 47.09% | 74.12% |
CMYK | 9.52% | 47.09% | 0.00% |
25.88% |
HEX | AB | 64 | BD |
Decimal | 171 | 100 | 189 |
Binary | 10101011 | 1100100 | 10111101 |
Octal | 253 | 144 | 275 |
Examples of css and html codes for elements with #AB64BD color. Also use rgb(171,100,189) instead hex code.
.myTextColor { color: #AB64BD; }
<p style="color:#AB64BD">This sample text font color is #AB64BD.</p>
This text font color is #AB64BD.
.myBgColor { background-color: #AB64BD; }
<div style="background-color:#AB64BD">Inner text</div>
This div background color is #AB64BD.
.myBorderColor { border: 1px solid #AB64BD; }
<div style="border:3px solid #AB64BD">Div</div>
This div border color is #AB64BD.
.myOpacity80 { color: #AB64BD; opacity: 0.8; }
<p style="color:#AB64BD;opacity:0.8;">80%</p>
Text with #AB64BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB64BD;}
<p style="text-shadow: 3px 3px 1px #AB64BD">Text here.</p>
This text has shadow with #AB64BD color.
.textShadow {text-shadow: 3px 3px 1px #AB64BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB64BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB64BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB64BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB64BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB64BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB64BD; -webkit-box-shadow: 1px 1px 3px 2px #AB64BD; box-shadow: 1px 1px 3px 2px #AB64BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB64BD; -webkit-box-shadow: 1px 1px 3px 2px #AB64BD; box-shadow:1px 1px 3px 2px #AB64BD;">
Div content here</div>
This text has color #AB64BD on black background.
This text has color #AB64BD on white background.
This text has black color on #AB64BD background.
This text has white color on #AB64BD background.