HEX: #AB65DC
RGB: (171,101,220)
#AB65DC contains mainly red and blue colors. Web safe color of #AB65DC is #9966CC (or #96C).
#AB65DC color RGB value is (171,101,220).
RGB: (171,101,220) (67%,40%,86%)
R 171 of 255 = 67%
G 101 of 255 = 40%
B 220 of 255 = 86%
R + G + B ~ 64%. #AB65DC is quite light color.
R + G + B =
171 + 101 + 220 = 492 (100%)
R 171 of 492 ~ 34.76%
G 101 of 492 ~ 20.53%
B 220 of 492 ~ 44.72%
#AB65DC color CMYK value is (22,54,0,14).
CMYK: (22,54,0,14) C22M54Y0K14 (22%,54%,0%,14%) (0.22/0.54/0.00/0.14)
AB | 65 | DC | |
---|---|---|---|
RGB | 171 | 101 | 220 |
HSL | 275° | 62.96% | 62.94% |
HSB/HSV | 275° | 54.09% | 86.27% |
CMYK | 22.27% | 54.09% | 0.00% |
13.73% |
HEX | AB | 65 | DC |
Decimal | 171 | 101 | 220 |
Binary | 10101011 | 1100101 | 11011100 |
Octal | 253 | 145 | 334 |
Examples of css and html codes for elements with #AB65DC color. Also use rgb(171,101,220) instead hex code.
.myTextColor { color: #AB65DC; }
<p style="color:#AB65DC">This sample text font color is #AB65DC.</p>
This text font color is #AB65DC.
.myBgColor { background-color: #AB65DC; }
<div style="background-color:#AB65DC">Inner text</div>
This div background color is #AB65DC.
.myBorderColor { border: 1px solid #AB65DC; }
<div style="border:3px solid #AB65DC">Div</div>
This div border color is #AB65DC.
.myOpacity80 { color: #AB65DC; opacity: 0.8; }
<p style="color:#AB65DC;opacity:0.8;">80%</p>
Text with #AB65DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB65DC;}
<p style="text-shadow: 3px 3px 1px #AB65DC">Text here.</p>
This text has shadow with #AB65DC color.
.textShadow {text-shadow: 3px 3px 1px #AB65DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB65DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB65DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB65DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB65DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB65DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB65DC; -webkit-box-shadow: 1px 1px 3px 2px #AB65DC; box-shadow: 1px 1px 3px 2px #AB65DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB65DC; -webkit-box-shadow: 1px 1px 3px 2px #AB65DC; box-shadow:1px 1px 3px 2px #AB65DC;">
Div content here</div>
This text has color #AB65DC on black background.
This text has color #AB65DC on white background.
This text has black color on #AB65DC background.
This text has white color on #AB65DC background.